@newview/permission-service 1.2.28 → 1.2.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/permission-service.js +702 -255
- package/dist/permission-service.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -7,14 +7,43 @@ var __publicField = (obj, key, value) => {
|
|
|
7
7
|
import { BaseInstance } from "@newview/base-vue";
|
|
8
8
|
import { defineComponent, ref, reactive, onMounted, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createTextVNode, nextTick, toDisplayString, createElementBlock, Fragment, renderList, withDirectives, vShow, pushScopeId, popScopeId, onUnmounted, createCommentVNode, computed, withModifiers } from "vue";
|
|
9
9
|
import { PlatformApi, PlatformGroupApi, ModuleApi, RoleApi, RoleModuleApi, InstitutionRoleApi, InstitutionTypeApi, InstitutioninforApi, InstitutionPlatformApi, InstitutionTreeApi, EnterpriseApi, LoginLogApi, UserinforApi, InstitutionUserApi, UserRoleApi, OAuthApi, UserSignApi, InstitutionLinePointApi, InstitutionPointApi, ProjectSummaryApi, DataBoardModuleApi, DataInistitutionRelationApi, DataInstitutionBoardRelationApi } from "@newview/permission-api";
|
|
10
|
-
import {
|
|
10
|
+
import { BaseApi, QueryWrapper } from "@newview/infrastructure";
|
|
11
11
|
import { Icon, Tag, Checkbox, Divider, CheckboxGroup, Space } from "view-ui-plus";
|
|
12
|
-
import { SelectPlatform, BaseLogin } from "@newview/permission-ui";
|
|
12
|
+
import { SelectPlatform, BaseLogin, PersonSel } from "@newview/permission-ui";
|
|
13
13
|
import { SignTaskInfoApi } from "@newview/casign-api";
|
|
14
14
|
import { ProvinceApi, CityApi, AreaApi, DictionaryDetailApi, DictionaryTypeApi } from "@newview/basics-api";
|
|
15
15
|
import { NvComFormUp } from "@newview/file-ui";
|
|
16
16
|
import { NvMap } from "@newview/map";
|
|
17
|
-
|
|
17
|
+
class DBCenterBaseApi extends BaseApi {
|
|
18
|
+
get ProxyName() {
|
|
19
|
+
return "CalcPythonApi";
|
|
20
|
+
}
|
|
21
|
+
constructor() {
|
|
22
|
+
super();
|
|
23
|
+
this.addHeader("projectid", 0);
|
|
24
|
+
this.addHeader("devprod", "prod");
|
|
25
|
+
this.addHeader("dbSkey", "08fb72ad2cf661088849ef17fdaab21a");
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
class CorePartnerApi extends DBCenterBaseApi {
|
|
29
|
+
get ControllerName() {
|
|
30
|
+
return "currency";
|
|
31
|
+
}
|
|
32
|
+
constructor() {
|
|
33
|
+
super();
|
|
34
|
+
this.addHeader("tableName", "core_partner");
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
class CorePlatformConfigApi extends DBCenterBaseApi {
|
|
38
|
+
get ControllerName() {
|
|
39
|
+
return "currency";
|
|
40
|
+
}
|
|
41
|
+
constructor() {
|
|
42
|
+
super();
|
|
43
|
+
this.addHeader("tableName", "core_platform_config");
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
const propDefine$m = {
|
|
18
47
|
linkParam: {
|
|
19
48
|
// 带入的参数
|
|
20
49
|
type: String,
|
|
@@ -26,12 +55,12 @@ const propDefine$l = {
|
|
|
26
55
|
default: "-"
|
|
27
56
|
}
|
|
28
57
|
};
|
|
29
|
-
const _sfc_main$
|
|
58
|
+
const _sfc_main$m = defineComponent({
|
|
30
59
|
name: "Platform",
|
|
31
60
|
components: {},
|
|
32
61
|
emits: [""],
|
|
33
62
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
34
|
-
props: propDefine$
|
|
63
|
+
props: propDefine$m,
|
|
35
64
|
setup(props, ctx) {
|
|
36
65
|
return new PlatformInstance$1(props, ctx);
|
|
37
66
|
}
|
|
@@ -45,6 +74,7 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
45
74
|
// API 实例化
|
|
46
75
|
__publicField(this, "platformApi", new PlatformApi());
|
|
47
76
|
__publicField(this, "platformGroupApi", new PlatformGroupApi());
|
|
77
|
+
__publicField(this, "corePlatformConfigApi", new CorePlatformConfigApi());
|
|
48
78
|
//#region 平台组
|
|
49
79
|
// 私有属性 | private
|
|
50
80
|
__publicField(this, "currentGroupRow", ref({}));
|
|
@@ -174,12 +204,12 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
174
204
|
},
|
|
175
205
|
{ colType: "ro", field: "SKey", title: "唯一KEY", width: 240 },
|
|
176
206
|
{ colType: "ed", field: "PlatformName", title: "系统名称", minWidth: 250 },
|
|
177
|
-
{ colType: "ed", field: "PlatformAbbreviation", title: "系统简称", width:
|
|
207
|
+
{ colType: "ed", field: "PlatformAbbreviation", title: "系统简称", width: 140 },
|
|
178
208
|
{
|
|
179
209
|
colType: "select",
|
|
180
210
|
field: "PId",
|
|
181
211
|
title: "上级平台",
|
|
182
|
-
width:
|
|
212
|
+
width: 180,
|
|
183
213
|
select: {
|
|
184
214
|
data: this.upList,
|
|
185
215
|
clearable: true,
|
|
@@ -191,12 +221,19 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
191
221
|
}
|
|
192
222
|
},
|
|
193
223
|
{ colType: "ed", field: "PlatformNo", title: "系统代号", width: 100 },
|
|
194
|
-
{ colType: "ed", field: "PlatformUrl", title: "系统URL", width:
|
|
224
|
+
{ colType: "ed", field: "PlatformUrl", title: "系统URL", width: 200 },
|
|
195
225
|
{ colType: "num", field: "OrderNo", title: "排序号", width: 90, align: "center" },
|
|
196
226
|
{
|
|
197
227
|
title: "操作",
|
|
198
|
-
width:
|
|
228
|
+
width: 200,
|
|
199
229
|
rowButtons: [
|
|
230
|
+
{
|
|
231
|
+
name: "edit",
|
|
232
|
+
text: "扩展信息",
|
|
233
|
+
onclick: (row) => {
|
|
234
|
+
this.doEditPlatConfig(row);
|
|
235
|
+
}
|
|
236
|
+
},
|
|
200
237
|
{
|
|
201
238
|
name: "edit",
|
|
202
239
|
text: "编辑",
|
|
@@ -247,8 +284,7 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
247
284
|
LastUpdateUserId: 0,
|
|
248
285
|
LastUpdateUserName: "",
|
|
249
286
|
LastUpdateDate: "",
|
|
250
|
-
DefaultPwd: ""
|
|
251
|
-
PlatformType: 1
|
|
287
|
+
DefaultPwd: ""
|
|
252
288
|
}));
|
|
253
289
|
__publicField(this, "platformFormItems", reactive([
|
|
254
290
|
{ model: "PlatformName", label: "系统名称", prop: "PlatformName", type: "Input", span: 24, rules: [{ required: true, message: "系统名称不能为空", trigger: "blur" }] },
|
|
@@ -268,6 +304,51 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
268
304
|
multiple: false
|
|
269
305
|
}
|
|
270
306
|
},
|
|
307
|
+
{ model: "PlatformUrl", label: "系统URL", prop: "PlatformUrl", type: "Input", span: 24 },
|
|
308
|
+
{ model: "CABusinessKey", label: "CAKey", prop: "CABusinessKey", type: "Input", span: 24 },
|
|
309
|
+
{ model: "DefaultPwd", label: "用户默认密码", prop: "DefaultPwd", type: "Input", span: 24 },
|
|
310
|
+
{ model: "OrderNo", label: "排序号", prop: "OrderNo", type: "InputNumber", span: 24 }
|
|
311
|
+
]));
|
|
312
|
+
// 响应式方法 | xxx = () => {}
|
|
313
|
+
/**
|
|
314
|
+
* 保存系统平台数据
|
|
315
|
+
*/
|
|
316
|
+
__publicField(this, "doSavePlatform", async () => {
|
|
317
|
+
const validate = await this.refPlatformForm.value.validate();
|
|
318
|
+
if (!validate) {
|
|
319
|
+
return;
|
|
320
|
+
}
|
|
321
|
+
this.saveingPlatform.value = true;
|
|
322
|
+
let apiResult = await this.platformApi.save(this.platformFormModel);
|
|
323
|
+
let result = this.utilities.parseApiResult(apiResult);
|
|
324
|
+
if (result <= 0) {
|
|
325
|
+
this.message.warning("保存失败,请稍后重试!");
|
|
326
|
+
this.saveingPlatform.value = false;
|
|
327
|
+
return;
|
|
328
|
+
}
|
|
329
|
+
this.message.success("保存成功!");
|
|
330
|
+
this.platformGrid.value.refreshData();
|
|
331
|
+
this.saveingPlatform.value = false;
|
|
332
|
+
this.showEditPlatform.value = false;
|
|
333
|
+
});
|
|
334
|
+
//#endregion 系统平台编辑 END
|
|
335
|
+
//#region 扩展信息
|
|
336
|
+
// 私有属性 | private
|
|
337
|
+
// 响应属性 | ref、reactive、computed、watch
|
|
338
|
+
__publicField(this, "isShowPlatConfig", ref(false));
|
|
339
|
+
__publicField(this, "saveingPlatConfig", ref(false));
|
|
340
|
+
__publicField(this, "configTitle", ref(""));
|
|
341
|
+
__publicField(this, "platConfigFormModel", ref({
|
|
342
|
+
Id: 0,
|
|
343
|
+
PlatformId: 0,
|
|
344
|
+
PlatformType: 1,
|
|
345
|
+
AppId: "",
|
|
346
|
+
AppSecret: "",
|
|
347
|
+
LastUpdateUserId: this.storageInfo.getUser().Id,
|
|
348
|
+
LastUpdateUserName: this.storageInfo.getUser().UserName,
|
|
349
|
+
LastUpdateDate: this.utilities.getCurrentDate()
|
|
350
|
+
}));
|
|
351
|
+
__publicField(this, "platConfigFormItems", reactive([
|
|
271
352
|
{
|
|
272
353
|
model: "PlatformType",
|
|
273
354
|
label: "线路状态",
|
|
@@ -298,32 +379,19 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
298
379
|
multiple: false
|
|
299
380
|
}
|
|
300
381
|
},
|
|
301
|
-
{ model: "
|
|
302
|
-
{ model: "
|
|
303
|
-
{ model: "DefaultPwd", label: "用户默认密码", prop: "DefaultPwd", type: "Input", span: 24 },
|
|
304
|
-
{ model: "OrderNo", label: "排序号", prop: "OrderNo", type: "InputNumber", span: 24 }
|
|
382
|
+
{ model: "AppId", label: "小程序AppId", prop: "AppId", type: "Input", span: 24 },
|
|
383
|
+
{ model: "AppSecret", label: "小程序秘钥", prop: "AppSecret", type: "Input", span: 24 }
|
|
305
384
|
]));
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
}
|
|
315
|
-
this.saveingPlatform.value = true;
|
|
316
|
-
let apiResult = await this.platformApi.save(this.platformFormModel);
|
|
317
|
-
let result = this.utilities.parseApiResult(apiResult);
|
|
318
|
-
if (result <= 0) {
|
|
319
|
-
this.message.warning("保存失败,请稍后重试!");
|
|
320
|
-
this.saveingPlatform.value = false;
|
|
321
|
-
return;
|
|
385
|
+
__publicField(this, "doSavePlatConfig", async () => {
|
|
386
|
+
this.saveingPlatConfig.value = true;
|
|
387
|
+
const res = this.utilities.parseApiResult(await this.corePlatformConfigApi.save(this.platConfigFormModel.value));
|
|
388
|
+
if (res > 0) {
|
|
389
|
+
this.message.success("保存成功");
|
|
390
|
+
this.isShowPlatConfig.value = false;
|
|
391
|
+
} else {
|
|
392
|
+
this.message.error("保存失败");
|
|
322
393
|
}
|
|
323
|
-
this.
|
|
324
|
-
this.platformGrid.value.refreshData();
|
|
325
|
-
this.saveingPlatform.value = false;
|
|
326
|
-
this.showEditPlatform.value = false;
|
|
394
|
+
this.saveingPlatConfig.value = false;
|
|
327
395
|
});
|
|
328
396
|
this.props = props;
|
|
329
397
|
this.ctx = ctx;
|
|
@@ -390,7 +458,6 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
390
458
|
this.platformFormModel.PId = data.PId;
|
|
391
459
|
this.platformFormModel.LastUpdateDate = this.utilities.getCurrentDate();
|
|
392
460
|
this.platformFormModel.DefaultPwd = data.DefaultPwd;
|
|
393
|
-
this.platformFormModel.PlatformType = data.PlatformType;
|
|
394
461
|
this.editPlatformModalTitle.value = `编辑 - ${data.PlatformName}`;
|
|
395
462
|
const tableData = (_a = this.platformGrid.value) == null ? void 0 : _a.getDatas();
|
|
396
463
|
this.platformFormItems[4].selectProp.datas = tableData.length > 0 ? tableData == null ? void 0 : tableData.map((item) => {
|
|
@@ -420,7 +487,6 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
420
487
|
this.platformFormModel.LastUpdateUserId = user.Id;
|
|
421
488
|
this.platformFormModel.LastUpdateUserName = user.UserName;
|
|
422
489
|
this.platformFormModel.LastUpdateDate = this.utilities.getCurrentDate();
|
|
423
|
-
this.platformFormModel.PlatformType = 1;
|
|
424
490
|
this.editPlatformModalTitle.value = `新增 - 系统平台`;
|
|
425
491
|
const data = (_a = this.platformGrid.value) == null ? void 0 : _a.getDatas();
|
|
426
492
|
this.platformFormItems[4].selectProp.datas = data.length > 0 ? data == null ? void 0 : data.map((item) => {
|
|
@@ -431,9 +497,34 @@ let PlatformInstance$1 = class PlatformInstance extends BaseInstance {
|
|
|
431
497
|
}) : [];
|
|
432
498
|
this.showEditPlatform.value = true;
|
|
433
499
|
}
|
|
434
|
-
|
|
500
|
+
// 私有方法 | private 方法名() {}
|
|
501
|
+
// 响应式方法 | xxx = () => {}
|
|
502
|
+
/**扩展信息 */
|
|
503
|
+
async doEditPlatConfig(data) {
|
|
504
|
+
this.configTitle.value = `编辑扩展信息-${data.PlatformName}`;
|
|
505
|
+
const res = this.utilities.parseApiResult(await this.corePlatformConfigApi.getEntityByFilter(QueryWrapper.create().eq("PlatformId", data.Id)));
|
|
506
|
+
if (this.utilities.isNull(res)) {
|
|
507
|
+
this.platConfigFormModel.value = {
|
|
508
|
+
Id: 0,
|
|
509
|
+
PlatformId: data.Id,
|
|
510
|
+
PlatformType: 1,
|
|
511
|
+
AppId: "",
|
|
512
|
+
AppSecret: "",
|
|
513
|
+
LastUpdateUserId: this.storageInfo.getUser().Id,
|
|
514
|
+
LastUpdateUserName: this.storageInfo.getUser().UserName,
|
|
515
|
+
LastUpdateDate: this.utilities.getCurrentDate()
|
|
516
|
+
};
|
|
517
|
+
} else {
|
|
518
|
+
this.platConfigFormModel.value = res;
|
|
519
|
+
this.platConfigFormModel.valueLastUpdateUserId = this.storageInfo.getUser().Id;
|
|
520
|
+
this.platConfigFormModel.valueLastUpdateUserNamed = this.storageInfo.getUser().UserName;
|
|
521
|
+
this.platConfigFormModel.valueLastUpdateDated = this.utilities.getCurrentDate();
|
|
522
|
+
}
|
|
523
|
+
this.isShowPlatConfig.value = true;
|
|
524
|
+
}
|
|
525
|
+
//#endregion 扩展信息 END
|
|
435
526
|
};
|
|
436
|
-
const
|
|
527
|
+
const Platform_vue_vue_type_style_index_0_scoped_7e8dbe7a_lang = "";
|
|
437
528
|
const _export_sfc = (sfc, props) => {
|
|
438
529
|
const target = sfc.__vccOpts || sfc;
|
|
439
530
|
for (const [key, val] of props) {
|
|
@@ -441,13 +532,13 @@ const _export_sfc = (sfc, props) => {
|
|
|
441
532
|
}
|
|
442
533
|
return target;
|
|
443
534
|
};
|
|
444
|
-
const _hoisted_1$
|
|
535
|
+
const _hoisted_1$l = {
|
|
445
536
|
class: "nv-flex",
|
|
446
537
|
style: { "justify-content": "space-between" }
|
|
447
538
|
};
|
|
448
539
|
const _hoisted_2$a = { style: { "height": "600px", "overflow-y": "auto" } };
|
|
449
540
|
const _hoisted_3$a = { style: { "height": "400px", "overflow-y": "auto" } };
|
|
450
|
-
function _sfc_render$
|
|
541
|
+
function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
451
542
|
const _component_NvList = resolveComponent("NvList");
|
|
452
543
|
const _component_Icon = resolveComponent("Icon");
|
|
453
544
|
const _component_Space = resolveComponent("Space");
|
|
@@ -469,7 +560,7 @@ function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
469
560
|
"show-arrow": true
|
|
470
561
|
}, {
|
|
471
562
|
footer: withCtx(() => [
|
|
472
|
-
createElementVNode("div", _hoisted_1$
|
|
563
|
+
createElementVNode("div", _hoisted_1$l, [
|
|
473
564
|
createVNode(_component_Space, null, {
|
|
474
565
|
default: withCtx(() => [
|
|
475
566
|
createVNode(_component_Icon, {
|
|
@@ -617,13 +708,56 @@ function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
617
708
|
])
|
|
618
709
|
]),
|
|
619
710
|
_: 1
|
|
711
|
+
}, 8, ["modelValue", "title"]),
|
|
712
|
+
createVNode(_component_Modal, {
|
|
713
|
+
modelValue: _ctx.isShowPlatConfig,
|
|
714
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.isShowPlatConfig = $event),
|
|
715
|
+
title: _ctx.configTitle
|
|
716
|
+
}, {
|
|
717
|
+
footer: withCtx(() => [
|
|
718
|
+
createVNode(_component_Button, {
|
|
719
|
+
type: "text",
|
|
720
|
+
onClick: _cache[4] || (_cache[4] = ($event) => _ctx.isShowPlatConfig = false)
|
|
721
|
+
}, {
|
|
722
|
+
default: withCtx(() => [
|
|
723
|
+
createTextVNode("关闭")
|
|
724
|
+
]),
|
|
725
|
+
_: 1
|
|
726
|
+
}),
|
|
727
|
+
createVNode(_component_Button, {
|
|
728
|
+
type: "primary",
|
|
729
|
+
loading: _ctx.saveingPlatConfig,
|
|
730
|
+
onClick: _ctx.doSavePlatConfig
|
|
731
|
+
}, {
|
|
732
|
+
default: withCtx(() => [
|
|
733
|
+
createTextVNode("保存")
|
|
734
|
+
]),
|
|
735
|
+
_: 1
|
|
736
|
+
}, 8, ["loading", "onClick"])
|
|
737
|
+
]),
|
|
738
|
+
default: withCtx(() => [
|
|
739
|
+
createVNode(_component_Form, {
|
|
740
|
+
ref: "refPlatformForm",
|
|
741
|
+
model: _ctx.platConfigFormModel,
|
|
742
|
+
"label-width": 120
|
|
743
|
+
}, {
|
|
744
|
+
default: withCtx(() => [
|
|
745
|
+
createVNode(_component_NvComForm, {
|
|
746
|
+
formModel: _ctx.platConfigFormModel,
|
|
747
|
+
formItems: _ctx.platConfigFormItems
|
|
748
|
+
}, null, 8, ["formModel", "formItems"])
|
|
749
|
+
]),
|
|
750
|
+
_: 1
|
|
751
|
+
}, 8, ["model"])
|
|
752
|
+
]),
|
|
753
|
+
_: 1
|
|
620
754
|
}, 8, ["modelValue", "title"])
|
|
621
755
|
]),
|
|
622
756
|
_: 1
|
|
623
757
|
});
|
|
624
758
|
}
|
|
625
|
-
const Platform = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
626
|
-
const propDefine$
|
|
759
|
+
const Platform = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$m], ["__scopeId", "data-v-7e8dbe7a"]]);
|
|
760
|
+
const propDefine$l = {
|
|
627
761
|
linkParam: {
|
|
628
762
|
// 带入的参数
|
|
629
763
|
type: String,
|
|
@@ -635,12 +769,12 @@ const propDefine$k = {
|
|
|
635
769
|
default: "-"
|
|
636
770
|
}
|
|
637
771
|
};
|
|
638
|
-
const _sfc_main$
|
|
772
|
+
const _sfc_main$l = defineComponent({
|
|
639
773
|
name: "Module",
|
|
640
774
|
components: { SelectPlatform },
|
|
641
775
|
emits: ["change"],
|
|
642
776
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
643
|
-
props: propDefine$
|
|
777
|
+
props: propDefine$l,
|
|
644
778
|
setup(props, ctx) {
|
|
645
779
|
return new ModuleInstance$1(props, ctx);
|
|
646
780
|
}
|
|
@@ -1466,7 +1600,7 @@ let ModuleInstance$1 = class ModuleInstance extends BaseInstance {
|
|
|
1466
1600
|
};
|
|
1467
1601
|
const Module_vue_vue_type_style_index_0_scoped_e41c07fc_lang = "";
|
|
1468
1602
|
const _withScopeId$4 = (n) => (pushScopeId("data-v-e41c07fc"), n = n(), popScopeId(), n);
|
|
1469
|
-
const _hoisted_1$
|
|
1603
|
+
const _hoisted_1$k = { style: { "height": "650px", "overflow-y": "auto" } };
|
|
1470
1604
|
const _hoisted_2$9 = {
|
|
1471
1605
|
class: "import-module",
|
|
1472
1606
|
style: { "height": "650px", "position": "relative" }
|
|
@@ -1477,7 +1611,7 @@ const _hoisted_5$7 = { style: { "height": "calc(100% - 0px)" } };
|
|
|
1477
1611
|
const _hoisted_6$7 = { style: { "width": "calc(100% - 570px)", "height": "100%", "margin-left": "10px", "display": "inline-block" } };
|
|
1478
1612
|
const _hoisted_7$5 = { style: { "height": "calc(100% - 0px)" } };
|
|
1479
1613
|
const _hoisted_8$5 = /* @__PURE__ */ _withScopeId$4(() => /* @__PURE__ */ createElementVNode("div", { class: "primary-color gird-tip" }, "点击选择要放置的位置!", -1));
|
|
1480
|
-
function _sfc_render$
|
|
1614
|
+
function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1481
1615
|
const _component_SelectPlatform = resolveComponent("SelectPlatform");
|
|
1482
1616
|
const _component_Radio = resolveComponent("Radio");
|
|
1483
1617
|
const _component_RadioGroup = resolveComponent("RadioGroup");
|
|
@@ -1565,7 +1699,7 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1565
1699
|
}, 8, ["loading", "onClick"])
|
|
1566
1700
|
]),
|
|
1567
1701
|
default: withCtx(() => [
|
|
1568
|
-
createElementVNode("div", _hoisted_1$
|
|
1702
|
+
createElementVNode("div", _hoisted_1$k, [
|
|
1569
1703
|
createVNode(_component_Form, {
|
|
1570
1704
|
model: _ctx.moduleFormModel,
|
|
1571
1705
|
"label-width": 90
|
|
@@ -1700,8 +1834,8 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1700
1834
|
_: 1
|
|
1701
1835
|
});
|
|
1702
1836
|
}
|
|
1703
|
-
const Module = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1704
|
-
const propDefine$
|
|
1837
|
+
const Module = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$l], ["__scopeId", "data-v-e41c07fc"]]);
|
|
1838
|
+
const propDefine$k = {
|
|
1705
1839
|
linkParam: {
|
|
1706
1840
|
// 带入的参数
|
|
1707
1841
|
type: String,
|
|
@@ -1713,12 +1847,12 @@ const propDefine$j = {
|
|
|
1713
1847
|
default: "-"
|
|
1714
1848
|
}
|
|
1715
1849
|
};
|
|
1716
|
-
const _sfc_main$
|
|
1850
|
+
const _sfc_main$k = defineComponent({
|
|
1717
1851
|
name: "Role",
|
|
1718
1852
|
components: { SelectPlatform },
|
|
1719
1853
|
emits: [""],
|
|
1720
1854
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
1721
|
-
props: propDefine$
|
|
1855
|
+
props: propDefine$k,
|
|
1722
1856
|
setup(props, ctx) {
|
|
1723
1857
|
return new RoleInstance$1(props, ctx);
|
|
1724
1858
|
}
|
|
@@ -2509,14 +2643,14 @@ let RoleInstance$1 = class RoleInstance extends BaseInstance {
|
|
|
2509
2643
|
//#endregion 导入角色 END
|
|
2510
2644
|
};
|
|
2511
2645
|
const Role_vue_vue_type_style_index_0_scoped_a12a6a42_lang = "";
|
|
2512
|
-
const _hoisted_1$
|
|
2646
|
+
const _hoisted_1$j = { style: { "height": "650px", "overflow-y": "auto", "position": "relative" } };
|
|
2513
2647
|
const _hoisted_2$8 = {
|
|
2514
2648
|
class: "import-role",
|
|
2515
2649
|
style: { "height": "610px", "position": "relative" }
|
|
2516
2650
|
};
|
|
2517
2651
|
const _hoisted_3$8 = { style: { "width": "100%", "height": "100%" } };
|
|
2518
2652
|
const _hoisted_4$8 = { style: { "height": "530px", "overflow-y": "auto" } };
|
|
2519
|
-
function _sfc_render$
|
|
2653
|
+
function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2520
2654
|
const _component_SelectPlatform = resolveComponent("SelectPlatform");
|
|
2521
2655
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
2522
2656
|
const _component_NvBox = resolveComponent("NvBox");
|
|
@@ -2582,7 +2716,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2582
2716
|
}, 8, ["loading", "onClick"])
|
|
2583
2717
|
]),
|
|
2584
2718
|
default: withCtx(() => [
|
|
2585
|
-
createElementVNode("div", _hoisted_1$
|
|
2719
|
+
createElementVNode("div", _hoisted_1$j, [
|
|
2586
2720
|
createVNode(_component_NvGrid, {
|
|
2587
2721
|
ref: "moduleGrid",
|
|
2588
2722
|
option: _ctx.moduleGridOption
|
|
@@ -2716,8 +2850,8 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2716
2850
|
_: 1
|
|
2717
2851
|
});
|
|
2718
2852
|
}
|
|
2719
|
-
const Role = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
2720
|
-
const propDefine$
|
|
2853
|
+
const Role = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["render", _sfc_render$k], ["__scopeId", "data-v-a12a6a42"]]);
|
|
2854
|
+
const propDefine$j = {
|
|
2721
2855
|
linkParam: {
|
|
2722
2856
|
// 带入的参数
|
|
2723
2857
|
type: String,
|
|
@@ -2729,12 +2863,12 @@ const propDefine$i = {
|
|
|
2729
2863
|
default: "-"
|
|
2730
2864
|
}
|
|
2731
2865
|
};
|
|
2732
|
-
const _sfc_main$
|
|
2866
|
+
const _sfc_main$j = defineComponent({
|
|
2733
2867
|
name: "InstitutionType",
|
|
2734
2868
|
components: {},
|
|
2735
2869
|
emits: [""],
|
|
2736
2870
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
2737
|
-
props: propDefine$
|
|
2871
|
+
props: propDefine$j,
|
|
2738
2872
|
setup(props, ctx) {
|
|
2739
2873
|
return new InstitutionTypeInstance(props, ctx);
|
|
2740
2874
|
}
|
|
@@ -2936,8 +3070,8 @@ class InstitutionTypeInstance extends BaseInstance {
|
|
|
2936
3070
|
//#endregion 编辑机构类型 END
|
|
2937
3071
|
}
|
|
2938
3072
|
const InstitutionType_vue_vue_type_style_index_0_scoped_947fe129_lang = "";
|
|
2939
|
-
const _hoisted_1$
|
|
2940
|
-
function _sfc_render$
|
|
3073
|
+
const _hoisted_1$i = { style: { "height": "350px", "overflow-y": "auto" } };
|
|
3074
|
+
function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2941
3075
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
2942
3076
|
const _component_NvBox = resolveComponent("NvBox");
|
|
2943
3077
|
const _component_NvComForm = resolveComponent("NvComForm");
|
|
@@ -2990,7 +3124,7 @@ function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2990
3124
|
}, 8, ["loading", "onClick"])
|
|
2991
3125
|
]),
|
|
2992
3126
|
default: withCtx(() => [
|
|
2993
|
-
createElementVNode("div", _hoisted_1$
|
|
3127
|
+
createElementVNode("div", _hoisted_1$i, [
|
|
2994
3128
|
createVNode(_component_Form, {
|
|
2995
3129
|
ref: "refInstitutionTypeForm",
|
|
2996
3130
|
model: _ctx.institutionTypeFormModel,
|
|
@@ -3012,8 +3146,8 @@ function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3012
3146
|
_: 1
|
|
3013
3147
|
});
|
|
3014
3148
|
}
|
|
3015
|
-
const InstitutionType = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3016
|
-
const propDefine$
|
|
3149
|
+
const InstitutionType = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$j], ["__scopeId", "data-v-947fe129"]]);
|
|
3150
|
+
const propDefine$i = {
|
|
3017
3151
|
linkParam: {
|
|
3018
3152
|
// 带入的参数
|
|
3019
3153
|
type: String,
|
|
@@ -3025,12 +3159,12 @@ const propDefine$h = {
|
|
|
3025
3159
|
default: "-"
|
|
3026
3160
|
}
|
|
3027
3161
|
};
|
|
3028
|
-
const _sfc_main$
|
|
3162
|
+
const _sfc_main$i = defineComponent({
|
|
3029
3163
|
name: "Institution",
|
|
3030
3164
|
components: { SelectPlatform },
|
|
3031
3165
|
emits: [""],
|
|
3032
3166
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
3033
|
-
props: propDefine$
|
|
3167
|
+
props: propDefine$i,
|
|
3034
3168
|
setup(props, ctx) {
|
|
3035
3169
|
return new InstitutionInstance$1(props, ctx);
|
|
3036
3170
|
}
|
|
@@ -3935,7 +4069,7 @@ let InstitutionInstance$1 = class InstitutionInstance extends BaseInstance {
|
|
|
3935
4069
|
//#endregion 绑定角色 END
|
|
3936
4070
|
};
|
|
3937
4071
|
const Institution_vue_vue_type_style_index_0_scoped_7165dadd_lang = "";
|
|
3938
|
-
const _hoisted_1$
|
|
4072
|
+
const _hoisted_1$h = { style: { "width": "100%", "height": "100%", "position": "relative" } };
|
|
3939
4073
|
const _hoisted_2$7 = { style: { "height": "500px", "overflow-y": "auto" } };
|
|
3940
4074
|
const _hoisted_3$7 = {
|
|
3941
4075
|
class: "import-institution",
|
|
@@ -3944,7 +4078,7 @@ const _hoisted_3$7 = {
|
|
|
3944
4078
|
const _hoisted_4$7 = { style: { "width": "100%", "height": "100%" } };
|
|
3945
4079
|
const _hoisted_5$6 = { style: { "height": "calc(100%)" } };
|
|
3946
4080
|
const _hoisted_6$6 = { style: { "height": "610px", "overflow-y": "auto", "position": "relative" } };
|
|
3947
|
-
function _sfc_render$
|
|
4081
|
+
function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3948
4082
|
const _component_SelectPlatform = resolveComponent("SelectPlatform");
|
|
3949
4083
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
3950
4084
|
const _component_NvBox = resolveComponent("NvBox");
|
|
@@ -4014,7 +4148,7 @@ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4014
4148
|
})
|
|
4015
4149
|
]),
|
|
4016
4150
|
default: withCtx(() => [
|
|
4017
|
-
createElementVNode("div", _hoisted_1$
|
|
4151
|
+
createElementVNode("div", _hoisted_1$h, [
|
|
4018
4152
|
createVNode(_component_Tree, {
|
|
4019
4153
|
data: _ctx.institutionTree,
|
|
4020
4154
|
render: _ctx.renderContent,
|
|
@@ -4212,14 +4346,14 @@ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4212
4346
|
_: 1
|
|
4213
4347
|
});
|
|
4214
4348
|
}
|
|
4215
|
-
const Institution = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
4216
|
-
const propDefine$
|
|
4217
|
-
const _sfc_main$
|
|
4349
|
+
const Institution = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["render", _sfc_render$i], ["__scopeId", "data-v-7165dadd"]]);
|
|
4350
|
+
const propDefine$h = {};
|
|
4351
|
+
const _sfc_main$h = defineComponent({
|
|
4218
4352
|
name: "LoginLog",
|
|
4219
4353
|
components: {},
|
|
4220
4354
|
emits: [""],
|
|
4221
4355
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
4222
|
-
props: propDefine$
|
|
4356
|
+
props: propDefine$h,
|
|
4223
4357
|
setup(props, ctx) {
|
|
4224
4358
|
return new LoginLogInstance$1(props, ctx);
|
|
4225
4359
|
}
|
|
@@ -4324,18 +4458,18 @@ let LoginLogInstance$1 = class LoginLogInstance extends BaseInstance {
|
|
|
4324
4458
|
//#endregion 登录日志 END
|
|
4325
4459
|
};
|
|
4326
4460
|
const LoginLog_vue_vue_type_style_index_0_scoped_4e2e0184_lang = "";
|
|
4327
|
-
const _hoisted_1$
|
|
4328
|
-
function _sfc_render$
|
|
4461
|
+
const _hoisted_1$g = { class: "loginLog" };
|
|
4462
|
+
function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4329
4463
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
4330
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4464
|
+
return openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
4331
4465
|
createVNode(_component_NvGrid, {
|
|
4332
4466
|
ref: "loginLogGrid",
|
|
4333
4467
|
option: _ctx.loginLogGridOption
|
|
4334
4468
|
}, null, 8, ["option"])
|
|
4335
4469
|
]);
|
|
4336
4470
|
}
|
|
4337
|
-
const LoginLog$1 = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
4338
|
-
const propDefine$
|
|
4471
|
+
const LoginLog$1 = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$h], ["__scopeId", "data-v-4e2e0184"]]);
|
|
4472
|
+
const propDefine$g = {
|
|
4339
4473
|
linkParam: {
|
|
4340
4474
|
// 带入的参数
|
|
4341
4475
|
type: String,
|
|
@@ -4347,12 +4481,12 @@ const propDefine$f = {
|
|
|
4347
4481
|
default: "-"
|
|
4348
4482
|
}
|
|
4349
4483
|
};
|
|
4350
|
-
const _sfc_main$
|
|
4484
|
+
const _sfc_main$g = defineComponent({
|
|
4351
4485
|
name: "Userinfor",
|
|
4352
4486
|
components: { SelectPlatform, LoginLog: LoginLog$1, BaseLogin },
|
|
4353
4487
|
emits: [""],
|
|
4354
4488
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
4355
|
-
props: propDefine$
|
|
4489
|
+
props: propDefine$g,
|
|
4356
4490
|
setup(props, ctx) {
|
|
4357
4491
|
return new UserinforInstance$1(props, ctx);
|
|
4358
4492
|
}
|
|
@@ -5386,7 +5520,7 @@ let UserinforInstance$1 = class UserinforInstance extends BaseInstance {
|
|
|
5386
5520
|
};
|
|
5387
5521
|
const Userinfor_vue_vue_type_style_index_0_scoped_3969fae6_lang = "";
|
|
5388
5522
|
const _withScopeId$3 = (n) => (pushScopeId("data-v-3969fae6"), n = n(), popScopeId(), n);
|
|
5389
|
-
const _hoisted_1$
|
|
5523
|
+
const _hoisted_1$f = { class: "instree-search" };
|
|
5390
5524
|
const _hoisted_2$6 = { class: "instree-list" };
|
|
5391
5525
|
const _hoisted_3$6 = { style: { "height": "600px", "overflow-y": "auto" } };
|
|
5392
5526
|
const _hoisted_4$6 = /* @__PURE__ */ _withScopeId$3(() => /* @__PURE__ */ createElementVNode("div", { style: { "margin-left": "16px", "color": "#ff9900" } }, [
|
|
@@ -5402,7 +5536,7 @@ const _hoisted_10$2 = { style: { "display": "none" } };
|
|
|
5402
5536
|
const _hoisted_11$2 = { style: { "height": "400px", "overflow-y": "auto" } };
|
|
5403
5537
|
const _hoisted_12$1 = ["src"];
|
|
5404
5538
|
const _hoisted_13$1 = ["src"];
|
|
5405
|
-
function _sfc_render$
|
|
5539
|
+
function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5406
5540
|
const _component_SelectPlatform = resolveComponent("SelectPlatform");
|
|
5407
5541
|
const _component_Tree = resolveComponent("Tree");
|
|
5408
5542
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -5445,7 +5579,7 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5445
5579
|
})
|
|
5446
5580
|
]),
|
|
5447
5581
|
default: withCtx(() => [
|
|
5448
|
-
createElementVNode("div", _hoisted_1$
|
|
5582
|
+
createElementVNode("div", _hoisted_1$f, [
|
|
5449
5583
|
createVNode(_component_SelectPlatform, {
|
|
5450
5584
|
onSelect: _ctx.doChangePlatform,
|
|
5451
5585
|
width: "100%",
|
|
@@ -5764,8 +5898,8 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5764
5898
|
_: 1
|
|
5765
5899
|
});
|
|
5766
5900
|
}
|
|
5767
|
-
const Userinfor = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5768
|
-
const propDefine$
|
|
5901
|
+
const Userinfor = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$g], ["__scopeId", "data-v-3969fae6"]]);
|
|
5902
|
+
const propDefine$f = {
|
|
5769
5903
|
linkParam: {
|
|
5770
5904
|
// 带入的参数
|
|
5771
5905
|
type: String,
|
|
@@ -5777,12 +5911,12 @@ const propDefine$e = {
|
|
|
5777
5911
|
default: "-"
|
|
5778
5912
|
}
|
|
5779
5913
|
};
|
|
5780
|
-
const _sfc_main$
|
|
5914
|
+
const _sfc_main$f = defineComponent({
|
|
5781
5915
|
name: "Enterprise",
|
|
5782
5916
|
components: { SelectPlatform },
|
|
5783
5917
|
emits: [""],
|
|
5784
5918
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
5785
|
-
props: propDefine$
|
|
5919
|
+
props: propDefine$f,
|
|
5786
5920
|
setup(props, ctx) {
|
|
5787
5921
|
return new EnterpriseInstance$1(props, ctx);
|
|
5788
5922
|
}
|
|
@@ -6169,8 +6303,8 @@ let EnterpriseInstance$1 = class EnterpriseInstance extends BaseInstance {
|
|
|
6169
6303
|
//#endregion 业务逻辑 编辑企业信息 END
|
|
6170
6304
|
};
|
|
6171
6305
|
const Enterprise_vue_vue_type_style_index_0_scoped_58aa3e77_lang = "";
|
|
6172
|
-
const _hoisted_1$
|
|
6173
|
-
function _sfc_render$
|
|
6306
|
+
const _hoisted_1$e = { style: { "height": "650px", "overflow-y": "auto" } };
|
|
6307
|
+
function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6174
6308
|
const _component_SelectPlatform = resolveComponent("SelectPlatform");
|
|
6175
6309
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
6176
6310
|
const _component_NvBox = resolveComponent("NvBox");
|
|
@@ -6238,7 +6372,7 @@ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6238
6372
|
}, 8, ["loading", "onClick"])) : createCommentVNode("", true)
|
|
6239
6373
|
]),
|
|
6240
6374
|
default: withCtx(() => [
|
|
6241
|
-
createElementVNode("div", _hoisted_1$
|
|
6375
|
+
createElementVNode("div", _hoisted_1$e, [
|
|
6242
6376
|
createVNode(_component_Form, {
|
|
6243
6377
|
model: _ctx.enterpriseFormModel,
|
|
6244
6378
|
"label-width": 90
|
|
@@ -6261,37 +6395,8 @@ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6261
6395
|
_: 1
|
|
6262
6396
|
});
|
|
6263
6397
|
}
|
|
6264
|
-
const Enterprise = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6265
|
-
|
|
6266
|
-
get ProxyName() {
|
|
6267
|
-
return "CalcPythonApi";
|
|
6268
|
-
}
|
|
6269
|
-
constructor() {
|
|
6270
|
-
super();
|
|
6271
|
-
this.addHeader("projectid", 0);
|
|
6272
|
-
this.addHeader("devprod", "prod");
|
|
6273
|
-
this.addHeader("dbSkey", "08fb72ad2cf661088849ef17fdaab21a");
|
|
6274
|
-
}
|
|
6275
|
-
}
|
|
6276
|
-
class CorePartnerApi extends DBCenterBaseApi {
|
|
6277
|
-
get ControllerName() {
|
|
6278
|
-
return "currency";
|
|
6279
|
-
}
|
|
6280
|
-
constructor() {
|
|
6281
|
-
super();
|
|
6282
|
-
this.addHeader("tableName", "core_partner");
|
|
6283
|
-
}
|
|
6284
|
-
}
|
|
6285
|
-
class CorePlatformConfigApi extends DBCenterBaseApi {
|
|
6286
|
-
get ControllerName() {
|
|
6287
|
-
return "currency";
|
|
6288
|
-
}
|
|
6289
|
-
constructor() {
|
|
6290
|
-
super();
|
|
6291
|
-
this.addHeader("tableName", "core_platform_config");
|
|
6292
|
-
}
|
|
6293
|
-
}
|
|
6294
|
-
const propDefine$d = {
|
|
6398
|
+
const Enterprise = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-58aa3e77"]]);
|
|
6399
|
+
const propDefine$e = {
|
|
6295
6400
|
linkParam: {
|
|
6296
6401
|
// 带入的参数
|
|
6297
6402
|
type: String,
|
|
@@ -6303,14 +6408,14 @@ const propDefine$d = {
|
|
|
6303
6408
|
default: "-"
|
|
6304
6409
|
}
|
|
6305
6410
|
};
|
|
6306
|
-
const _sfc_main$
|
|
6411
|
+
const _sfc_main$e = defineComponent({
|
|
6307
6412
|
name: "Information",
|
|
6308
6413
|
components: {
|
|
6309
6414
|
NvComFormUp
|
|
6310
6415
|
},
|
|
6311
6416
|
emits: [""],
|
|
6312
6417
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
6313
|
-
props: propDefine$
|
|
6418
|
+
props: propDefine$e,
|
|
6314
6419
|
setup(props, ctx) {
|
|
6315
6420
|
return new InformationInstance(props, ctx);
|
|
6316
6421
|
}
|
|
@@ -6675,8 +6780,8 @@ class InformationInstance extends BaseInstance {
|
|
|
6675
6780
|
}
|
|
6676
6781
|
//#endregion 编辑信息 END
|
|
6677
6782
|
}
|
|
6678
|
-
const _hoisted_1$
|
|
6679
|
-
function _sfc_render$
|
|
6783
|
+
const _hoisted_1$d = { style: { "overflow-y": "auto" } };
|
|
6784
|
+
function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6680
6785
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
6681
6786
|
const _component_NvBox = resolveComponent("NvBox");
|
|
6682
6787
|
const _component_NvComFormUp = resolveComponent("NvComFormUp");
|
|
@@ -6733,7 +6838,7 @@ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6733
6838
|
}, 8, ["loading", "onClick"])
|
|
6734
6839
|
]),
|
|
6735
6840
|
default: withCtx(() => [
|
|
6736
|
-
createElementVNode("div", _hoisted_1$
|
|
6841
|
+
createElementVNode("div", _hoisted_1$d, [
|
|
6737
6842
|
createVNode(_component_Form, {
|
|
6738
6843
|
ref: "refRoleForm",
|
|
6739
6844
|
model: _ctx.roleFormModel,
|
|
@@ -6755,8 +6860,8 @@ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6755
6860
|
_: 1
|
|
6756
6861
|
});
|
|
6757
6862
|
}
|
|
6758
|
-
const Information = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6759
|
-
const propDefine$
|
|
6863
|
+
const Information = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$e]]);
|
|
6864
|
+
const propDefine$d = {
|
|
6760
6865
|
linkParam: {
|
|
6761
6866
|
// 带入的参数
|
|
6762
6867
|
type: String,
|
|
@@ -6778,12 +6883,12 @@ const propDefine$c = {
|
|
|
6778
6883
|
default: "BD"
|
|
6779
6884
|
}
|
|
6780
6885
|
};
|
|
6781
|
-
const _sfc_main$
|
|
6886
|
+
const _sfc_main$d = defineComponent({
|
|
6782
6887
|
name: "GeneralConfiguration",
|
|
6783
6888
|
components: {},
|
|
6784
6889
|
emits: [""],
|
|
6785
6890
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
6786
|
-
props: propDefine$
|
|
6891
|
+
props: propDefine$d,
|
|
6787
6892
|
setup(props, ctx) {
|
|
6788
6893
|
return new GeneralConfigurationInstance(props, ctx);
|
|
6789
6894
|
}
|
|
@@ -7310,8 +7415,8 @@ class GeneralConfigurationInstance extends BaseInstance {
|
|
|
7310
7415
|
//#endregion 概况选择modal END
|
|
7311
7416
|
}
|
|
7312
7417
|
const GeneralConfiguration_vue_vue_type_style_index_0_scoped_a01b6a2e_lang = "";
|
|
7313
|
-
const _hoisted_1$
|
|
7314
|
-
function _sfc_render$
|
|
7418
|
+
const _hoisted_1$c = { style: { "height": "600px", "overflow-y": "auto" } };
|
|
7419
|
+
function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7315
7420
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
7316
7421
|
const _component_NvBox = resolveComponent("NvBox");
|
|
7317
7422
|
const _component_Button = resolveComponent("Button");
|
|
@@ -7363,7 +7468,7 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7363
7468
|
}, 8, ["loading", "onClick"])
|
|
7364
7469
|
]),
|
|
7365
7470
|
default: withCtx(() => [
|
|
7366
|
-
createElementVNode("div", _hoisted_1$
|
|
7471
|
+
createElementVNode("div", _hoisted_1$c, [
|
|
7367
7472
|
createVNode(_component_NvGrid, {
|
|
7368
7473
|
ref: "dicModalGrid",
|
|
7369
7474
|
option: _ctx.dicModalGridOption
|
|
@@ -7376,8 +7481,8 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7376
7481
|
_: 1
|
|
7377
7482
|
});
|
|
7378
7483
|
}
|
|
7379
|
-
const GeneralConfiguration = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7380
|
-
const propDefine$
|
|
7484
|
+
const GeneralConfiguration = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$d], ["__scopeId", "data-v-a01b6a2e"]]);
|
|
7485
|
+
const propDefine$c = {
|
|
7381
7486
|
linkParam: {
|
|
7382
7487
|
// 带入的参数
|
|
7383
7488
|
type: String,
|
|
@@ -7389,14 +7494,15 @@ const propDefine$b = {
|
|
|
7389
7494
|
default: "-"
|
|
7390
7495
|
}
|
|
7391
7496
|
};
|
|
7392
|
-
const _sfc_main$
|
|
7497
|
+
const _sfc_main$c = defineComponent({
|
|
7393
7498
|
name: "Platform",
|
|
7394
7499
|
components: {
|
|
7395
|
-
GeneralConfiguration
|
|
7500
|
+
GeneralConfiguration,
|
|
7501
|
+
PersonSel
|
|
7396
7502
|
},
|
|
7397
7503
|
emits: [""],
|
|
7398
7504
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
7399
|
-
props: propDefine$
|
|
7505
|
+
props: propDefine$c,
|
|
7400
7506
|
setup(props, ctx) {
|
|
7401
7507
|
return new PlatformInstance2(props, ctx);
|
|
7402
7508
|
}
|
|
@@ -7409,6 +7515,7 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7409
7515
|
__publicField(this, "ctx");
|
|
7410
7516
|
// API 实例化
|
|
7411
7517
|
__publicField(this, "platformApi", new PlatformApi());
|
|
7518
|
+
__publicField(this, "corePlatformConfigApi", new CorePlatformConfigApi());
|
|
7412
7519
|
//#region 系统平台
|
|
7413
7520
|
__publicField(this, "isShowGeneralConfig", ref(false));
|
|
7414
7521
|
__publicField(this, "generalConfigTitle", ref("概况配置"));
|
|
@@ -7525,9 +7632,16 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7525
7632
|
},
|
|
7526
7633
|
{
|
|
7527
7634
|
title: "操作",
|
|
7528
|
-
width:
|
|
7635
|
+
width: 200,
|
|
7529
7636
|
fixed: "right",
|
|
7530
7637
|
rowButtons: [
|
|
7638
|
+
{
|
|
7639
|
+
name: "edit",
|
|
7640
|
+
text: "扩展信息",
|
|
7641
|
+
onclick: (row) => {
|
|
7642
|
+
this.doEditPlatConfig(row);
|
|
7643
|
+
}
|
|
7644
|
+
},
|
|
7531
7645
|
{
|
|
7532
7646
|
name: "edit",
|
|
7533
7647
|
text: "编辑",
|
|
@@ -7578,8 +7692,7 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7578
7692
|
LastUpdateUserId: 0,
|
|
7579
7693
|
LastUpdateUserName: "",
|
|
7580
7694
|
LastUpdateDate: "",
|
|
7581
|
-
DefaultPwd: ""
|
|
7582
|
-
PlatformType: 1
|
|
7695
|
+
DefaultPwd: ""
|
|
7583
7696
|
}));
|
|
7584
7697
|
__publicField(this, "platformFormItems", reactive([
|
|
7585
7698
|
{ model: "PlatformName", label: "系统名称", prop: "PlatformName", type: "Input", span: 24, rules: [{ required: true, message: "系统名称不能为空", trigger: "blur" }] },
|
|
@@ -7603,6 +7716,51 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7603
7716
|
}
|
|
7604
7717
|
}
|
|
7605
7718
|
},
|
|
7719
|
+
{ model: "PlatformUrl", label: "系统URL", prop: "PlatformUrl", type: "Input", span: 24 },
|
|
7720
|
+
{ model: "CABusinessKey", label: "CAKey", prop: "CABusinessKey", type: "Input", span: 24 },
|
|
7721
|
+
{ model: "DefaultPwd", label: "用户默认密码", prop: "DefaultPwd", type: "Input", span: 24 },
|
|
7722
|
+
{ model: "OrderNo", label: "排序号", prop: "OrderNo", type: "InputNumber", span: 24 }
|
|
7723
|
+
]));
|
|
7724
|
+
// 响应式方法 | xxx = () => {}
|
|
7725
|
+
/**
|
|
7726
|
+
* 保存系统平台数据
|
|
7727
|
+
*/
|
|
7728
|
+
__publicField(this, "doSavePlatform", async () => {
|
|
7729
|
+
const validate = await this.refPlatformForm.value.validate();
|
|
7730
|
+
if (!validate) {
|
|
7731
|
+
return;
|
|
7732
|
+
}
|
|
7733
|
+
this.saveingPlatform.value = true;
|
|
7734
|
+
let apiResult = await this.platformApi.save(this.platformFormModel);
|
|
7735
|
+
let result = this.utilities.parseApiResult(apiResult);
|
|
7736
|
+
if (result <= 0) {
|
|
7737
|
+
this.message.warning("保存失败,请稍后重试!");
|
|
7738
|
+
this.saveingPlatform.value = false;
|
|
7739
|
+
return;
|
|
7740
|
+
}
|
|
7741
|
+
this.message.success("保存成功!");
|
|
7742
|
+
this.platformGrid.value.refreshData();
|
|
7743
|
+
this.saveingPlatform.value = false;
|
|
7744
|
+
this.showEditPlatform.value = false;
|
|
7745
|
+
});
|
|
7746
|
+
//#endregion 系统平台编辑 END
|
|
7747
|
+
//#region 扩展信息
|
|
7748
|
+
// 私有属性 | private
|
|
7749
|
+
// 响应属性 | ref、reactive、computed、watch
|
|
7750
|
+
__publicField(this, "isShowPlatConfig", ref(false));
|
|
7751
|
+
__publicField(this, "saveingPlatConfig", ref(false));
|
|
7752
|
+
__publicField(this, "configTitle", ref(""));
|
|
7753
|
+
__publicField(this, "platConfigFormModel", ref({
|
|
7754
|
+
Id: 0,
|
|
7755
|
+
PlatformId: 0,
|
|
7756
|
+
PlatformType: 1,
|
|
7757
|
+
AppId: "",
|
|
7758
|
+
AppSecret: "",
|
|
7759
|
+
LastUpdateUserId: this.storageInfo.getUser().Id,
|
|
7760
|
+
LastUpdateUserName: this.storageInfo.getUser().UserName,
|
|
7761
|
+
LastUpdateDate: this.utilities.getCurrentDate()
|
|
7762
|
+
}));
|
|
7763
|
+
__publicField(this, "platConfigFormItems", reactive([
|
|
7606
7764
|
{
|
|
7607
7765
|
model: "PlatformType",
|
|
7608
7766
|
label: "线路状态",
|
|
@@ -7630,35 +7788,22 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7630
7788
|
],
|
|
7631
7789
|
transfer: true,
|
|
7632
7790
|
clearable: true,
|
|
7633
|
-
multiple: false
|
|
7634
|
-
}
|
|
7635
|
-
},
|
|
7636
|
-
{ model: "
|
|
7637
|
-
{ model: "
|
|
7638
|
-
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
if (!validate) {
|
|
7648
|
-
return;
|
|
7649
|
-
}
|
|
7650
|
-
this.saveingPlatform.value = true;
|
|
7651
|
-
let apiResult = await this.platformApi.save(this.platformFormModel);
|
|
7652
|
-
let result = this.utilities.parseApiResult(apiResult);
|
|
7653
|
-
if (result <= 0) {
|
|
7654
|
-
this.message.warning("保存失败,请稍后重试!");
|
|
7655
|
-
this.saveingPlatform.value = false;
|
|
7656
|
-
return;
|
|
7791
|
+
multiple: false
|
|
7792
|
+
}
|
|
7793
|
+
},
|
|
7794
|
+
{ model: "AppId", label: "小程序AppId", prop: "AppId", type: "Input", span: 24 },
|
|
7795
|
+
{ model: "AppSecret", label: "小程序秘钥", prop: "AppSecret", type: "Input", span: 24 }
|
|
7796
|
+
]));
|
|
7797
|
+
__publicField(this, "doSavePlatConfig", async () => {
|
|
7798
|
+
this.saveingPlatConfig.value = true;
|
|
7799
|
+
const res = this.utilities.parseApiResult(await this.corePlatformConfigApi.save(this.platConfigFormModel.value));
|
|
7800
|
+
if (res > 0) {
|
|
7801
|
+
this.message.success("保存成功");
|
|
7802
|
+
this.isShowPlatConfig.value = false;
|
|
7803
|
+
} else {
|
|
7804
|
+
this.message.error("保存失败");
|
|
7657
7805
|
}
|
|
7658
|
-
this.
|
|
7659
|
-
this.platformGrid.value.refreshData();
|
|
7660
|
-
this.saveingPlatform.value = false;
|
|
7661
|
-
this.showEditPlatform.value = false;
|
|
7806
|
+
this.saveingPlatConfig.value = false;
|
|
7662
7807
|
});
|
|
7663
7808
|
this.props = props;
|
|
7664
7809
|
this.ctx = ctx;
|
|
@@ -7720,7 +7865,6 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7720
7865
|
this.platformFormModel.LastUpdateUserId = user.Id;
|
|
7721
7866
|
this.platformFormModel.LastUpdateUserName = user.UserName;
|
|
7722
7867
|
this.platformFormModel.LastUpdateDate = this.utilities.getCurrentDate();
|
|
7723
|
-
this.platformFormModel.PlatformType = data.PlatformType;
|
|
7724
7868
|
this.platformFormModel.DefaultPwd = data.DefaultPwd;
|
|
7725
7869
|
const tableData = (_a = this.platformGrid.value) == null ? void 0 : _a.getDatas();
|
|
7726
7870
|
this.platformFormItems[4].selectProp.datas = tableData.length > 0 ? tableData == null ? void 0 : tableData.map((item) => {
|
|
@@ -7753,7 +7897,6 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7753
7897
|
this.platformFormModel.LastUpdateUserName = user.UserName;
|
|
7754
7898
|
this.platformFormModel.LastUpdateDate = this.utilities.getCurrentDate();
|
|
7755
7899
|
this.platformFormModel.DefaultPwd = "";
|
|
7756
|
-
this.platformFormModel.PlatformType = 1;
|
|
7757
7900
|
this.editPlatformModalTitle.value = `新增 - 系统平台`;
|
|
7758
7901
|
const data = (_a = this.platformGrid.value) == null ? void 0 : _a.getDatas();
|
|
7759
7902
|
this.platformFormItems[4].selectProp.datas = data.length > 0 ? data == null ? void 0 : data.map((item) => {
|
|
@@ -7767,11 +7910,36 @@ class PlatformInstance2 extends BaseInstance {
|
|
|
7767
7910
|
this.platformFormModel.PlatformGroup = data.length > 0 ? data[0].PlatformGroup : 0;
|
|
7768
7911
|
this.showEditPlatform.value = true;
|
|
7769
7912
|
}
|
|
7770
|
-
|
|
7913
|
+
// 私有方法 | private 方法名() {}
|
|
7914
|
+
// 响应式方法 | xxx = () => {}
|
|
7915
|
+
/**扩展信息 */
|
|
7916
|
+
async doEditPlatConfig(data) {
|
|
7917
|
+
this.configTitle.value = `编辑扩展信息-${data.PlatformName}`;
|
|
7918
|
+
const res = this.utilities.parseApiResult(await this.corePlatformConfigApi.getEntityByFilter(QueryWrapper.create().eq("PlatformId", data.Id)));
|
|
7919
|
+
if (this.utilities.isNull(res)) {
|
|
7920
|
+
this.platConfigFormModel.value = {
|
|
7921
|
+
Id: 0,
|
|
7922
|
+
PlatformId: data.Id,
|
|
7923
|
+
PlatformType: 1,
|
|
7924
|
+
AppId: "",
|
|
7925
|
+
AppSecret: "",
|
|
7926
|
+
LastUpdateUserId: this.storageInfo.getUser().Id,
|
|
7927
|
+
LastUpdateUserName: this.storageInfo.getUser().UserName,
|
|
7928
|
+
LastUpdateDate: this.utilities.getCurrentDate()
|
|
7929
|
+
};
|
|
7930
|
+
} else {
|
|
7931
|
+
this.platConfigFormModel.value = res;
|
|
7932
|
+
this.platConfigFormModel.valueLastUpdateUserId = this.storageInfo.getUser().Id;
|
|
7933
|
+
this.platConfigFormModel.valueLastUpdateUserNamed = this.storageInfo.getUser().UserName;
|
|
7934
|
+
this.platConfigFormModel.valueLastUpdateDated = this.utilities.getCurrentDate();
|
|
7935
|
+
}
|
|
7936
|
+
this.isShowPlatConfig.value = true;
|
|
7937
|
+
}
|
|
7938
|
+
//#endregion 扩展信息 END
|
|
7771
7939
|
}
|
|
7772
|
-
const
|
|
7773
|
-
const _hoisted_1$
|
|
7774
|
-
function _sfc_render$
|
|
7940
|
+
const Platform_vue_vue_type_style_index_0_scoped_d318c7ed_lang = "";
|
|
7941
|
+
const _hoisted_1$b = { style: { "height": "600px", "overflow-y": "auto" } };
|
|
7942
|
+
function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7775
7943
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
7776
7944
|
const _component_NvBox = resolveComponent("NvBox");
|
|
7777
7945
|
const _component_NvComForm = resolveComponent("NvComForm");
|
|
@@ -7826,7 +7994,7 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7826
7994
|
}, 8, ["loading", "onClick"])
|
|
7827
7995
|
]),
|
|
7828
7996
|
default: withCtx(() => [
|
|
7829
|
-
createElementVNode("div", _hoisted_1$
|
|
7997
|
+
createElementVNode("div", _hoisted_1$b, [
|
|
7830
7998
|
createVNode(_component_Form, {
|
|
7831
7999
|
ref: "refPlatformForm",
|
|
7832
8000
|
model: _ctx.platformFormModel,
|
|
@@ -7869,13 +8037,56 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7869
8037
|
}, null, 8, ["platformInfo", "configType"])) : createCommentVNode("", true)
|
|
7870
8038
|
]),
|
|
7871
8039
|
_: 1
|
|
8040
|
+
}, 8, ["modelValue", "title"]),
|
|
8041
|
+
createVNode(_component_Modal, {
|
|
8042
|
+
modelValue: _ctx.isShowPlatConfig,
|
|
8043
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.isShowPlatConfig = $event),
|
|
8044
|
+
title: _ctx.configTitle
|
|
8045
|
+
}, {
|
|
8046
|
+
footer: withCtx(() => [
|
|
8047
|
+
createVNode(_component_Button, {
|
|
8048
|
+
type: "text",
|
|
8049
|
+
onClick: _cache[4] || (_cache[4] = ($event) => _ctx.isShowPlatConfig = false)
|
|
8050
|
+
}, {
|
|
8051
|
+
default: withCtx(() => [
|
|
8052
|
+
createTextVNode("关闭")
|
|
8053
|
+
]),
|
|
8054
|
+
_: 1
|
|
8055
|
+
}),
|
|
8056
|
+
createVNode(_component_Button, {
|
|
8057
|
+
type: "primary",
|
|
8058
|
+
loading: _ctx.saveingPlatConfig,
|
|
8059
|
+
onClick: _ctx.doSavePlatConfig
|
|
8060
|
+
}, {
|
|
8061
|
+
default: withCtx(() => [
|
|
8062
|
+
createTextVNode("保存")
|
|
8063
|
+
]),
|
|
8064
|
+
_: 1
|
|
8065
|
+
}, 8, ["loading", "onClick"])
|
|
8066
|
+
]),
|
|
8067
|
+
default: withCtx(() => [
|
|
8068
|
+
createVNode(_component_Form, {
|
|
8069
|
+
ref: "refPlatformForm",
|
|
8070
|
+
model: _ctx.platConfigFormModel,
|
|
8071
|
+
"label-width": 120
|
|
8072
|
+
}, {
|
|
8073
|
+
default: withCtx(() => [
|
|
8074
|
+
createVNode(_component_NvComForm, {
|
|
8075
|
+
formModel: _ctx.platConfigFormModel,
|
|
8076
|
+
formItems: _ctx.platConfigFormItems
|
|
8077
|
+
}, null, 8, ["formModel", "formItems"])
|
|
8078
|
+
]),
|
|
8079
|
+
_: 1
|
|
8080
|
+
}, 8, ["model"])
|
|
8081
|
+
]),
|
|
8082
|
+
_: 1
|
|
7872
8083
|
}, 8, ["modelValue", "title"])
|
|
7873
8084
|
]),
|
|
7874
8085
|
_: 1
|
|
7875
8086
|
});
|
|
7876
8087
|
}
|
|
7877
|
-
const subplatform = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7878
|
-
const propDefine$
|
|
8088
|
+
const subplatform = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$c], ["__scopeId", "data-v-d318c7ed"]]);
|
|
8089
|
+
const propDefine$b = {
|
|
7879
8090
|
linkParam: {
|
|
7880
8091
|
// 带入的参数
|
|
7881
8092
|
type: String,
|
|
@@ -7887,12 +8098,12 @@ const propDefine$a = {
|
|
|
7887
8098
|
default: "-"
|
|
7888
8099
|
}
|
|
7889
8100
|
};
|
|
7890
|
-
const _sfc_main$
|
|
8101
|
+
const _sfc_main$b = defineComponent({
|
|
7891
8102
|
name: "Role",
|
|
7892
8103
|
components: { SelectPlatform },
|
|
7893
8104
|
emits: [""],
|
|
7894
8105
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
7895
|
-
props: propDefine$
|
|
8106
|
+
props: propDefine$b,
|
|
7896
8107
|
setup(props, ctx) {
|
|
7897
8108
|
return new RoleInstance2(props, ctx);
|
|
7898
8109
|
}
|
|
@@ -8717,14 +8928,14 @@ class RoleInstance2 extends BaseInstance {
|
|
|
8717
8928
|
//#endregion 导入角色 END
|
|
8718
8929
|
}
|
|
8719
8930
|
const Role_vue_vue_type_style_index_0_scoped_bbf1cb02_lang = "";
|
|
8720
|
-
const _hoisted_1$
|
|
8931
|
+
const _hoisted_1$a = { style: { "height": "650px", "overflow-y": "auto", "position": "relative" } };
|
|
8721
8932
|
const _hoisted_2$5 = {
|
|
8722
8933
|
class: "import-role",
|
|
8723
8934
|
style: { "height": "610px", "position": "relative" }
|
|
8724
8935
|
};
|
|
8725
8936
|
const _hoisted_3$5 = { style: { "width": "100%", "height": "100%" } };
|
|
8726
8937
|
const _hoisted_4$5 = { style: { "height": "530px", "overflow-y": "auto" } };
|
|
8727
|
-
function _sfc_render$
|
|
8938
|
+
function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
8728
8939
|
const _component_Option = resolveComponent("Option");
|
|
8729
8940
|
const _component_Select = resolveComponent("Select");
|
|
8730
8941
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -8827,7 +9038,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8827
9038
|
}, 8, ["loading", "onClick"])
|
|
8828
9039
|
]),
|
|
8829
9040
|
default: withCtx(() => [
|
|
8830
|
-
createElementVNode("div", _hoisted_1$
|
|
9041
|
+
createElementVNode("div", _hoisted_1$a, [
|
|
8831
9042
|
createVNode(_component_NvGrid, {
|
|
8832
9043
|
ref: "moduleGrid",
|
|
8833
9044
|
option: _ctx.moduleGridOption
|
|
@@ -8987,8 +9198,8 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
8987
9198
|
_: 1
|
|
8988
9199
|
});
|
|
8989
9200
|
}
|
|
8990
|
-
const subrole = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
8991
|
-
const propDefine$
|
|
9201
|
+
const subrole = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-bbf1cb02"]]);
|
|
9202
|
+
const propDefine$a = {
|
|
8992
9203
|
linkParam: {
|
|
8993
9204
|
// 带入的参数
|
|
8994
9205
|
type: String,
|
|
@@ -9000,12 +9211,12 @@ const propDefine$9 = {
|
|
|
9000
9211
|
default: "-"
|
|
9001
9212
|
}
|
|
9002
9213
|
};
|
|
9003
|
-
const _sfc_main$
|
|
9214
|
+
const _sfc_main$a = defineComponent({
|
|
9004
9215
|
name: "Enterprise",
|
|
9005
9216
|
components: { SelectPlatform },
|
|
9006
9217
|
emits: [""],
|
|
9007
9218
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
9008
|
-
props: propDefine$
|
|
9219
|
+
props: propDefine$a,
|
|
9009
9220
|
setup(props, ctx) {
|
|
9010
9221
|
return new EnterpriseInstance2(props, ctx);
|
|
9011
9222
|
}
|
|
@@ -9416,8 +9627,8 @@ class EnterpriseInstance2 extends BaseInstance {
|
|
|
9416
9627
|
//#endregion 业务逻辑 编辑企业信息 END
|
|
9417
9628
|
}
|
|
9418
9629
|
const Enterprise_vue_vue_type_style_index_0_scoped_57711b94_lang = "";
|
|
9419
|
-
const _hoisted_1$
|
|
9420
|
-
function _sfc_render$
|
|
9630
|
+
const _hoisted_1$9 = { style: { "height": "650px", "overflow-y": "auto" } };
|
|
9631
|
+
function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
9421
9632
|
const _component_Option = resolveComponent("Option");
|
|
9422
9633
|
const _component_Select = resolveComponent("Select");
|
|
9423
9634
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -9519,7 +9730,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9519
9730
|
}, 8, ["loading", "onClick"])) : createCommentVNode("", true)
|
|
9520
9731
|
]),
|
|
9521
9732
|
default: withCtx(() => [
|
|
9522
|
-
createElementVNode("div", _hoisted_1$
|
|
9733
|
+
createElementVNode("div", _hoisted_1$9, [
|
|
9523
9734
|
createVNode(_component_Form, {
|
|
9524
9735
|
model: _ctx.enterpriseFormModel,
|
|
9525
9736
|
"label-width": 90
|
|
@@ -9542,8 +9753,8 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9542
9753
|
_: 1
|
|
9543
9754
|
});
|
|
9544
9755
|
}
|
|
9545
|
-
const subenterprise = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9546
|
-
const propDefine$
|
|
9756
|
+
const subenterprise = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-57711b94"]]);
|
|
9757
|
+
const propDefine$9 = {
|
|
9547
9758
|
linkParam: {
|
|
9548
9759
|
// 带入的参数
|
|
9549
9760
|
type: String,
|
|
@@ -9555,12 +9766,12 @@ const propDefine$8 = {
|
|
|
9555
9766
|
default: "-"
|
|
9556
9767
|
}
|
|
9557
9768
|
};
|
|
9558
|
-
const _sfc_main$
|
|
9769
|
+
const _sfc_main$9 = defineComponent({
|
|
9559
9770
|
name: "Institution",
|
|
9560
9771
|
components: { SelectPlatform },
|
|
9561
9772
|
emits: [""],
|
|
9562
9773
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
9563
|
-
props: propDefine$
|
|
9774
|
+
props: propDefine$9,
|
|
9564
9775
|
setup(props, ctx) {
|
|
9565
9776
|
return new InstitutionInstance2(props, ctx);
|
|
9566
9777
|
}
|
|
@@ -10506,7 +10717,7 @@ class InstitutionInstance2 extends BaseInstance {
|
|
|
10506
10717
|
//#endregion 绑定角色 END
|
|
10507
10718
|
}
|
|
10508
10719
|
const Institution_vue_vue_type_style_index_0_scoped_ba4186ba_lang = "";
|
|
10509
|
-
const _hoisted_1$
|
|
10720
|
+
const _hoisted_1$8 = { style: { "width": "100%", "height": "100%", "position": "relative" } };
|
|
10510
10721
|
const _hoisted_2$4 = { style: { "height": "500px", "overflow-y": "auto" } };
|
|
10511
10722
|
const _hoisted_3$4 = {
|
|
10512
10723
|
class: "import-institution",
|
|
@@ -10515,7 +10726,7 @@ const _hoisted_3$4 = {
|
|
|
10515
10726
|
const _hoisted_4$4 = { style: { "width": "100%", "height": "100%" } };
|
|
10516
10727
|
const _hoisted_5$4 = { style: { "height": "calc(100%)" } };
|
|
10517
10728
|
const _hoisted_6$4 = { style: { "height": "610px", "overflow-y": "auto", "position": "relative" } };
|
|
10518
|
-
function _sfc_render$
|
|
10729
|
+
function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10519
10730
|
const _component_Option = resolveComponent("Option");
|
|
10520
10731
|
const _component_Select = resolveComponent("Select");
|
|
10521
10732
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -10620,7 +10831,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10620
10831
|
})
|
|
10621
10832
|
]),
|
|
10622
10833
|
default: withCtx(() => [
|
|
10623
|
-
createElementVNode("div", _hoisted_1$
|
|
10834
|
+
createElementVNode("div", _hoisted_1$8, [
|
|
10624
10835
|
createVNode(_component_Tree, {
|
|
10625
10836
|
data: _ctx.institutionTree,
|
|
10626
10837
|
render: _ctx.renderContent,
|
|
@@ -10818,14 +11029,14 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10818
11029
|
_: 1
|
|
10819
11030
|
});
|
|
10820
11031
|
}
|
|
10821
|
-
const subinstitution = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
10822
|
-
const propDefine$
|
|
10823
|
-
const _sfc_main$
|
|
11032
|
+
const subinstitution = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-ba4186ba"]]);
|
|
11033
|
+
const propDefine$8 = {};
|
|
11034
|
+
const _sfc_main$8 = defineComponent({
|
|
10824
11035
|
name: "LoginLog",
|
|
10825
11036
|
components: {},
|
|
10826
11037
|
emits: [""],
|
|
10827
11038
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
10828
|
-
props: propDefine$
|
|
11039
|
+
props: propDefine$8,
|
|
10829
11040
|
setup(props, ctx) {
|
|
10830
11041
|
return new LoginLogInstance2(props, ctx);
|
|
10831
11042
|
}
|
|
@@ -10930,18 +11141,18 @@ class LoginLogInstance2 extends BaseInstance {
|
|
|
10930
11141
|
//#endregion 登录日志 END
|
|
10931
11142
|
}
|
|
10932
11143
|
const LoginLog_vue_vue_type_style_index_0_scoped_a0d5af5b_lang = "";
|
|
10933
|
-
const _hoisted_1$
|
|
10934
|
-
function _sfc_render$
|
|
11144
|
+
const _hoisted_1$7 = { class: "loginLog" };
|
|
11145
|
+
function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10935
11146
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
10936
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
11147
|
+
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
10937
11148
|
createVNode(_component_NvGrid, {
|
|
10938
11149
|
ref: "loginLogGrid",
|
|
10939
11150
|
option: _ctx.loginLogGridOption
|
|
10940
11151
|
}, null, 8, ["option"])
|
|
10941
11152
|
]);
|
|
10942
11153
|
}
|
|
10943
|
-
const LoginLog = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
10944
|
-
const propDefine$
|
|
11154
|
+
const LoginLog = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-a0d5af5b"]]);
|
|
11155
|
+
const propDefine$7 = {
|
|
10945
11156
|
linkParam: {
|
|
10946
11157
|
// 带入的参数
|
|
10947
11158
|
type: String,
|
|
@@ -10953,12 +11164,12 @@ const propDefine$6 = {
|
|
|
10953
11164
|
default: "-"
|
|
10954
11165
|
}
|
|
10955
11166
|
};
|
|
10956
|
-
const _sfc_main$
|
|
11167
|
+
const _sfc_main$7 = defineComponent({
|
|
10957
11168
|
name: "Userinfor",
|
|
10958
11169
|
components: { SelectPlatform, LoginLog, BaseLogin },
|
|
10959
11170
|
emits: [""],
|
|
10960
11171
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
10961
|
-
props: propDefine$
|
|
11172
|
+
props: propDefine$7,
|
|
10962
11173
|
setup(props, ctx) {
|
|
10963
11174
|
return new UserinforInstance2(props, ctx);
|
|
10964
11175
|
}
|
|
@@ -12050,7 +12261,7 @@ class UserinforInstance2 extends BaseInstance {
|
|
|
12050
12261
|
}
|
|
12051
12262
|
const Userinfor_vue_vue_type_style_index_0_scoped_6a60ce29_lang = "";
|
|
12052
12263
|
const _withScopeId$2 = (n) => (pushScopeId("data-v-6a60ce29"), n = n(), popScopeId(), n);
|
|
12053
|
-
const _hoisted_1$
|
|
12264
|
+
const _hoisted_1$6 = { class: "instree-search" };
|
|
12054
12265
|
const _hoisted_2$3 = { class: "instree-list" };
|
|
12055
12266
|
const _hoisted_3$3 = { style: { "height": "600px", "overflow-y": "auto" } };
|
|
12056
12267
|
const _hoisted_4$3 = /* @__PURE__ */ _withScopeId$2(() => /* @__PURE__ */ createElementVNode("div", { style: { "margin-left": "16px", "color": "#ff9900" } }, [
|
|
@@ -12066,7 +12277,7 @@ const _hoisted_10$1 = { style: { "display": "none" } };
|
|
|
12066
12277
|
const _hoisted_11$1 = { style: { "height": "400px", "overflow-y": "auto" } };
|
|
12067
12278
|
const _hoisted_12 = ["src"];
|
|
12068
12279
|
const _hoisted_13 = ["src"];
|
|
12069
|
-
function _sfc_render$
|
|
12280
|
+
function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
12070
12281
|
const _component_Option = resolveComponent("Option");
|
|
12071
12282
|
const _component_Select = resolveComponent("Select");
|
|
12072
12283
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -12111,7 +12322,7 @@ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12111
12322
|
})
|
|
12112
12323
|
]),
|
|
12113
12324
|
default: withCtx(() => [
|
|
12114
|
-
createElementVNode("div", _hoisted_1$
|
|
12325
|
+
createElementVNode("div", _hoisted_1$6, [
|
|
12115
12326
|
createVNode(_component_NvControlGroup, {
|
|
12116
12327
|
width: "100%",
|
|
12117
12328
|
icon: "md-refresh",
|
|
@@ -12462,8 +12673,8 @@ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12462
12673
|
_: 1
|
|
12463
12674
|
});
|
|
12464
12675
|
}
|
|
12465
|
-
const subuserinfor = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
12466
|
-
const propDefine$
|
|
12676
|
+
const subuserinfor = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["render", _sfc_render$7], ["__scopeId", "data-v-6a60ce29"]]);
|
|
12677
|
+
const propDefine$6 = {
|
|
12467
12678
|
linkParam: {
|
|
12468
12679
|
// 带入的参数
|
|
12469
12680
|
type: String,
|
|
@@ -12475,12 +12686,12 @@ const propDefine$5 = {
|
|
|
12475
12686
|
default: "-"
|
|
12476
12687
|
}
|
|
12477
12688
|
};
|
|
12478
|
-
const _sfc_main$
|
|
12689
|
+
const _sfc_main$6 = defineComponent({
|
|
12479
12690
|
name: "Module",
|
|
12480
12691
|
components: { SelectPlatform },
|
|
12481
12692
|
emits: ["change"],
|
|
12482
12693
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
12483
|
-
props: propDefine$
|
|
12694
|
+
props: propDefine$6,
|
|
12484
12695
|
setup(props, ctx) {
|
|
12485
12696
|
return new ModuleInstance2(props, ctx);
|
|
12486
12697
|
}
|
|
@@ -13330,7 +13541,7 @@ class ModuleInstance2 extends BaseInstance {
|
|
|
13330
13541
|
}
|
|
13331
13542
|
const Module_vue_vue_type_style_index_0_scoped_23a8ab5f_lang = "";
|
|
13332
13543
|
const _withScopeId$1 = (n) => (pushScopeId("data-v-23a8ab5f"), n = n(), popScopeId(), n);
|
|
13333
|
-
const _hoisted_1$
|
|
13544
|
+
const _hoisted_1$5 = { style: { "height": "650px", "overflow-y": "auto" } };
|
|
13334
13545
|
const _hoisted_2$2 = {
|
|
13335
13546
|
class: "import-module",
|
|
13336
13547
|
style: { "height": "650px", "position": "relative" }
|
|
@@ -13341,7 +13552,7 @@ const _hoisted_5$2 = { style: { "height": "calc(100% - 0px)" } };
|
|
|
13341
13552
|
const _hoisted_6$2 = { style: { "width": "calc(100% - 570px)", "height": "100%", "margin-left": "10px", "display": "inline-block" } };
|
|
13342
13553
|
const _hoisted_7$2 = { style: { "height": "calc(100% - 0px)" } };
|
|
13343
13554
|
const _hoisted_8$2 = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ createElementVNode("div", { class: "primary-color gird-tip" }, "点击选择要放置的位置!", -1));
|
|
13344
|
-
function _sfc_render$
|
|
13555
|
+
function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13345
13556
|
const _component_Option = resolveComponent("Option");
|
|
13346
13557
|
const _component_Select = resolveComponent("Select");
|
|
13347
13558
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -13464,7 +13675,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13464
13675
|
}, 8, ["loading", "onClick"])
|
|
13465
13676
|
]),
|
|
13466
13677
|
default: withCtx(() => [
|
|
13467
|
-
createElementVNode("div", _hoisted_1$
|
|
13678
|
+
createElementVNode("div", _hoisted_1$5, [
|
|
13468
13679
|
createVNode(_component_Form, {
|
|
13469
13680
|
model: _ctx.moduleFormModel,
|
|
13470
13681
|
"label-width": 90
|
|
@@ -13599,7 +13810,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13599
13810
|
_: 1
|
|
13600
13811
|
});
|
|
13601
13812
|
}
|
|
13602
|
-
const subModule = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
13813
|
+
const subModule = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-23a8ab5f"]]);
|
|
13603
13814
|
const type = "FeatureCollection";
|
|
13604
13815
|
const features = [
|
|
13605
13816
|
{
|
|
@@ -26161,7 +26372,7 @@ const shanxi = {
|
|
|
26161
26372
|
crs
|
|
26162
26373
|
};
|
|
26163
26374
|
const style = "";
|
|
26164
|
-
const propDefine$
|
|
26375
|
+
const propDefine$5 = {
|
|
26165
26376
|
linkParam: {
|
|
26166
26377
|
// 带入的参数
|
|
26167
26378
|
type: String,
|
|
@@ -26173,12 +26384,12 @@ const propDefine$4 = {
|
|
|
26173
26384
|
default: "-"
|
|
26174
26385
|
}
|
|
26175
26386
|
};
|
|
26176
|
-
const _sfc_main$
|
|
26387
|
+
const _sfc_main$5 = defineComponent({
|
|
26177
26388
|
name: "Sublinepoins",
|
|
26178
26389
|
components: { SelectPlatform, NvMap },
|
|
26179
26390
|
emits: [""],
|
|
26180
26391
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
26181
|
-
props: propDefine$
|
|
26392
|
+
props: propDefine$5,
|
|
26182
26393
|
setup(props, ctx) {
|
|
26183
26394
|
return new ProjectUserinforInstance$1(props, ctx);
|
|
26184
26395
|
}
|
|
@@ -26637,7 +26848,7 @@ let ProjectUserinforInstance$1 = class ProjectUserinforInstance extends BaseInst
|
|
|
26637
26848
|
//#endregion 系统平台 END
|
|
26638
26849
|
};
|
|
26639
26850
|
const Sublinepoins_vue_vue_type_style_index_0_scoped_66a288c7_lang = "";
|
|
26640
|
-
const _hoisted_1$
|
|
26851
|
+
const _hoisted_1$4 = { class: "instree-search" };
|
|
26641
26852
|
const _hoisted_2$1 = { class: "instree-list" };
|
|
26642
26853
|
const _hoisted_3$1 = { class: "nv-flex-1 nv-flex-col map-box" };
|
|
26643
26854
|
const _hoisted_4$1 = {
|
|
@@ -26649,7 +26860,7 @@ const _hoisted_6$1 = ["onClick"];
|
|
|
26649
26860
|
const _hoisted_7$1 = { style: { "font-size": "16px" } };
|
|
26650
26861
|
const _hoisted_8$1 = ["onClick"];
|
|
26651
26862
|
const _hoisted_9$1 = { style: { "height": "450px" } };
|
|
26652
|
-
function _sfc_render$
|
|
26863
|
+
function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
26653
26864
|
const _component_Option = resolveComponent("Option");
|
|
26654
26865
|
const _component_Select = resolveComponent("Select");
|
|
26655
26866
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -26690,7 +26901,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26690
26901
|
})
|
|
26691
26902
|
]),
|
|
26692
26903
|
default: withCtx(() => [
|
|
26693
|
-
createElementVNode("div", _hoisted_1$
|
|
26904
|
+
createElementVNode("div", _hoisted_1$4, [
|
|
26694
26905
|
createVNode(_component_NvControlGroup, {
|
|
26695
26906
|
width: "100%",
|
|
26696
26907
|
icon: "md-refresh",
|
|
@@ -26883,8 +27094,8 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26883
27094
|
_: 1
|
|
26884
27095
|
});
|
|
26885
27096
|
}
|
|
26886
|
-
const sublinepoins = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
26887
|
-
const propDefine$
|
|
27097
|
+
const sublinepoins = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-66a288c7"]]);
|
|
27098
|
+
const propDefine$4 = {
|
|
26888
27099
|
Id: {
|
|
26889
27100
|
default: 0,
|
|
26890
27101
|
type: Number
|
|
@@ -26898,14 +27109,14 @@ const propDefine$3 = {
|
|
|
26898
27109
|
// default: '',
|
|
26899
27110
|
// }
|
|
26900
27111
|
};
|
|
26901
|
-
const _sfc_main$
|
|
27112
|
+
const _sfc_main$4 = defineComponent({
|
|
26902
27113
|
name: "ProjectSummary",
|
|
26903
27114
|
components: {
|
|
26904
27115
|
NvComFormUp
|
|
26905
27116
|
},
|
|
26906
27117
|
emits: ["close", "update"],
|
|
26907
27118
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
26908
|
-
props: propDefine$
|
|
27119
|
+
props: propDefine$4,
|
|
26909
27120
|
setup(props, ctx) {
|
|
26910
27121
|
return new ProjectSummaryInstance(props, ctx);
|
|
26911
27122
|
}
|
|
@@ -27258,8 +27469,8 @@ class ProjectSummaryInstance extends BaseInstance {
|
|
|
27258
27469
|
//#endregion 省市区 END
|
|
27259
27470
|
}
|
|
27260
27471
|
const ProjectSummary_vue_vue_type_style_index_0_scoped_73dcbb30_lang = "";
|
|
27261
|
-
const _hoisted_1$
|
|
27262
|
-
function _sfc_render$
|
|
27472
|
+
const _hoisted_1$3 = { class: "form-box" };
|
|
27473
|
+
function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
27263
27474
|
const _component_Spin = resolveComponent("Spin");
|
|
27264
27475
|
const _component_NvComFormUp = resolveComponent("NvComFormUp");
|
|
27265
27476
|
const _component_Form = resolveComponent("Form");
|
|
@@ -27297,7 +27508,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27297
27508
|
]),
|
|
27298
27509
|
_: 1
|
|
27299
27510
|
})) : createCommentVNode("", true),
|
|
27300
|
-
createElementVNode("div", _hoisted_1$
|
|
27511
|
+
createElementVNode("div", _hoisted_1$3, [
|
|
27301
27512
|
createVNode(_component_Form, {
|
|
27302
27513
|
ref: "mainFormRef",
|
|
27303
27514
|
model: _ctx.mainFormModel,
|
|
@@ -27326,8 +27537,8 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27326
27537
|
_: 1
|
|
27327
27538
|
});
|
|
27328
27539
|
}
|
|
27329
|
-
const ProjectSummary = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
27330
|
-
const propDefine$
|
|
27540
|
+
const ProjectSummary = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-73dcbb30"]]);
|
|
27541
|
+
const propDefine$3 = {
|
|
27331
27542
|
linkParam: {
|
|
27332
27543
|
// 带入的参数
|
|
27333
27544
|
type: String,
|
|
@@ -27339,12 +27550,12 @@ const propDefine$2 = {
|
|
|
27339
27550
|
default: "-"
|
|
27340
27551
|
}
|
|
27341
27552
|
};
|
|
27342
|
-
const _sfc_main$
|
|
27553
|
+
const _sfc_main$3 = defineComponent({
|
|
27343
27554
|
name: "ProjectUserinfor",
|
|
27344
27555
|
components: { SelectPlatform, LoginLog, BaseLogin },
|
|
27345
27556
|
emits: [""],
|
|
27346
27557
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
27347
|
-
props: propDefine$
|
|
27558
|
+
props: propDefine$3,
|
|
27348
27559
|
setup(props, ctx) {
|
|
27349
27560
|
return new ProjectUserinforInstance2(props, ctx);
|
|
27350
27561
|
}
|
|
@@ -28412,7 +28623,7 @@ class ProjectUserinforInstance2 extends BaseInstance {
|
|
|
28412
28623
|
}
|
|
28413
28624
|
const ProjectUserinfor_vue_vue_type_style_index_0_scoped_d1697a07_lang = "";
|
|
28414
28625
|
const _withScopeId = (n) => (pushScopeId("data-v-d1697a07"), n = n(), popScopeId(), n);
|
|
28415
|
-
const _hoisted_1$
|
|
28626
|
+
const _hoisted_1$2 = { class: "instree-search" };
|
|
28416
28627
|
const _hoisted_2 = { class: "instree-list" };
|
|
28417
28628
|
const _hoisted_3 = { style: { "height": "600px", "overflow-y": "auto" } };
|
|
28418
28629
|
const _hoisted_4 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { style: { "margin-left": "16px", "color": "#ff9900" } }, [
|
|
@@ -28426,7 +28637,7 @@ const _hoisted_8 = { style: { "display": "none" } };
|
|
|
28426
28637
|
const _hoisted_9 = { style: { "height": "400px", "overflow-y": "auto" } };
|
|
28427
28638
|
const _hoisted_10 = ["src"];
|
|
28428
28639
|
const _hoisted_11 = ["src"];
|
|
28429
|
-
function _sfc_render$
|
|
28640
|
+
function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
28430
28641
|
const _component_Option = resolveComponent("Option");
|
|
28431
28642
|
const _component_Select = resolveComponent("Select");
|
|
28432
28643
|
const _component_Spin = resolveComponent("Spin");
|
|
@@ -28471,7 +28682,7 @@ function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
28471
28682
|
})
|
|
28472
28683
|
]),
|
|
28473
28684
|
default: withCtx(() => [
|
|
28474
|
-
createElementVNode("div", _hoisted_1$
|
|
28685
|
+
createElementVNode("div", _hoisted_1$2, [
|
|
28475
28686
|
createVNode(_component_NvControlGroup, {
|
|
28476
28687
|
width: "100%",
|
|
28477
28688
|
icon: "md-refresh",
|
|
@@ -28775,8 +28986,8 @@ function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
28775
28986
|
_: 1
|
|
28776
28987
|
});
|
|
28777
28988
|
}
|
|
28778
|
-
const projectUser = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
28779
|
-
const propDefine$
|
|
28989
|
+
const projectUser = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render$3], ["__scopeId", "data-v-d1697a07"]]);
|
|
28990
|
+
const propDefine$2 = {
|
|
28780
28991
|
linkParam: {
|
|
28781
28992
|
// 带入的参数
|
|
28782
28993
|
type: String,
|
|
@@ -28788,12 +28999,12 @@ const propDefine$1 = {
|
|
|
28788
28999
|
default: "-"
|
|
28789
29000
|
}
|
|
28790
29001
|
};
|
|
28791
|
-
const _sfc_main$
|
|
29002
|
+
const _sfc_main$2 = defineComponent({
|
|
28792
29003
|
name: "Memorabilia",
|
|
28793
29004
|
components: { NvComFormUp },
|
|
28794
29005
|
emits: [""],
|
|
28795
29006
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
28796
|
-
props: propDefine$
|
|
29007
|
+
props: propDefine$2,
|
|
28797
29008
|
setup(props, ctx) {
|
|
28798
29009
|
return new Instance$1(props, ctx);
|
|
28799
29010
|
}
|
|
@@ -29029,7 +29240,7 @@ let Instance$1 = class Instance extends BaseInstance {
|
|
|
29029
29240
|
}
|
|
29030
29241
|
//#endregion 表单编辑新增 END
|
|
29031
29242
|
};
|
|
29032
|
-
function _sfc_render$
|
|
29243
|
+
function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
29033
29244
|
const _component_NvGrid = resolveComponent("NvGrid");
|
|
29034
29245
|
const _component_NvBox = resolveComponent("NvBox");
|
|
29035
29246
|
const _component_NvComFormUp = resolveComponent("NvComFormUp");
|
|
@@ -29106,8 +29317,8 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
29106
29317
|
_: 1
|
|
29107
29318
|
});
|
|
29108
29319
|
}
|
|
29109
|
-
const ViewModule = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
29110
|
-
const propDefine = {
|
|
29320
|
+
const ViewModule = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$2]]);
|
|
29321
|
+
const propDefine$1 = {
|
|
29111
29322
|
linkParam: {
|
|
29112
29323
|
// 带入的参数
|
|
29113
29324
|
type: String,
|
|
@@ -29119,12 +29330,12 @@ const propDefine = {
|
|
|
29119
29330
|
default: "-"
|
|
29120
29331
|
}
|
|
29121
29332
|
};
|
|
29122
|
-
const _sfc_main = defineComponent({
|
|
29333
|
+
const _sfc_main$1 = defineComponent({
|
|
29123
29334
|
name: "GroupRelationships",
|
|
29124
29335
|
components: { NvComFormUp },
|
|
29125
29336
|
emits: [""],
|
|
29126
29337
|
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
29127
|
-
props: propDefine,
|
|
29338
|
+
props: propDefine$1,
|
|
29128
29339
|
setup(props, ctx) {
|
|
29129
29340
|
return new Instance2(props, ctx);
|
|
29130
29341
|
}
|
|
@@ -29530,8 +29741,8 @@ class Instance2 extends BaseInstance {
|
|
|
29530
29741
|
//#endregion 看板模块 END
|
|
29531
29742
|
}
|
|
29532
29743
|
const GroupRelationships_vue_vue_type_style_index_0_scoped_05e0f55a_lang = "";
|
|
29533
|
-
const _hoisted_1 = { class: "instree-list" };
|
|
29534
|
-
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
29744
|
+
const _hoisted_1$1 = { class: "instree-list" };
|
|
29745
|
+
function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
29535
29746
|
const _component_Tree = resolveComponent("Tree");
|
|
29536
29747
|
const _component_Spin = resolveComponent("Spin");
|
|
29537
29748
|
const _component_Button = resolveComponent("Button");
|
|
@@ -29556,7 +29767,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
29556
29767
|
onChange: _ctx.doChangeUserBoxWidth
|
|
29557
29768
|
}, {
|
|
29558
29769
|
default: withCtx(() => [
|
|
29559
|
-
createElementVNode("div", _hoisted_1, [
|
|
29770
|
+
createElementVNode("div", _hoisted_1$1, [
|
|
29560
29771
|
createVNode(_component_Tree, {
|
|
29561
29772
|
data: _ctx.institutionTree,
|
|
29562
29773
|
render: _ctx.renderInsTreeContent,
|
|
@@ -29713,7 +29924,238 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
29713
29924
|
_: 1
|
|
29714
29925
|
});
|
|
29715
29926
|
}
|
|
29716
|
-
const GroupRelationships = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-05e0f55a"]]);
|
|
29927
|
+
const GroupRelationships = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-05e0f55a"]]);
|
|
29928
|
+
const propDefine = {
|
|
29929
|
+
linkParam: {
|
|
29930
|
+
// 带入的参数
|
|
29931
|
+
type: String,
|
|
29932
|
+
default: ""
|
|
29933
|
+
},
|
|
29934
|
+
operates: {
|
|
29935
|
+
// 按钮权限码
|
|
29936
|
+
type: String,
|
|
29937
|
+
default: "-"
|
|
29938
|
+
}
|
|
29939
|
+
};
|
|
29940
|
+
const _sfc_main = defineComponent({
|
|
29941
|
+
name: "SendDocMgmt",
|
|
29942
|
+
components: { NvComFormUp, PersonSel },
|
|
29943
|
+
emits: [""],
|
|
29944
|
+
// 例如: ['clearRadioRow', 'change', 'delete', 'addchild']
|
|
29945
|
+
props: propDefine,
|
|
29946
|
+
setup(props, ctx) {
|
|
29947
|
+
return new SendDocMgmtTmplInstance(props, ctx);
|
|
29948
|
+
}
|
|
29949
|
+
});
|
|
29950
|
+
class SendDocMgmtTmplInstance extends BaseInstance {
|
|
29951
|
+
// API实例化
|
|
29952
|
+
constructor(props, ctx) {
|
|
29953
|
+
super();
|
|
29954
|
+
__publicField(this, "props");
|
|
29955
|
+
__publicField(this, "ctx");
|
|
29956
|
+
/**人员选择事件 */
|
|
29957
|
+
__publicField(this, "handlePersonSelect", (datas) => {
|
|
29958
|
+
this.personSelModalShow.value = false;
|
|
29959
|
+
});
|
|
29960
|
+
//#region 业务逻辑
|
|
29961
|
+
// 私有属性 | private
|
|
29962
|
+
__publicField(this, "business", this.storageInfo.getCurrentInsTree());
|
|
29963
|
+
__publicField(this, "triggerInsModal", "");
|
|
29964
|
+
// 响应属性 | ref、reactive、computed、watch
|
|
29965
|
+
/** 当前行 */
|
|
29966
|
+
__publicField(this, "currentRow", reactive({}));
|
|
29967
|
+
/** 套红模板 */
|
|
29968
|
+
__publicField(this, "docRedHeadTmplDatas", reactive([]));
|
|
29969
|
+
__publicField(this, "institutionModalShow", ref(false));
|
|
29970
|
+
__publicField(this, "personSelModalShow", ref(false));
|
|
29971
|
+
/** 编辑弹窗 */
|
|
29972
|
+
__publicField(this, "showEdit", ref(false));
|
|
29973
|
+
/** 编辑弹窗标题 */
|
|
29974
|
+
__publicField(this, "editTitle", ref("编辑"));
|
|
29975
|
+
/** 按钮loading*/
|
|
29976
|
+
__publicField(this, "saving", ref(false));
|
|
29977
|
+
/** 按钮loading*/
|
|
29978
|
+
__publicField(this, "submitting", ref(false));
|
|
29979
|
+
/** 表单数据*/
|
|
29980
|
+
__publicField(this, "formModel", reactive({
|
|
29981
|
+
Id: 0,
|
|
29982
|
+
PlatformId: 0,
|
|
29983
|
+
InsTreeId: 0,
|
|
29984
|
+
InstitutionId: 0,
|
|
29985
|
+
InsName: "",
|
|
29986
|
+
FileName: "",
|
|
29987
|
+
FileToken: "",
|
|
29988
|
+
Urgent: null,
|
|
29989
|
+
SenderUnit: null,
|
|
29990
|
+
CarbonUnit: null,
|
|
29991
|
+
Draft: "",
|
|
29992
|
+
BeforeToken: null,
|
|
29993
|
+
BeforePDFToken: null,
|
|
29994
|
+
THTemplateToken: "",
|
|
29995
|
+
THToken: null,
|
|
29996
|
+
THPDFToken: null,
|
|
29997
|
+
ReviewerName: "",
|
|
29998
|
+
ReviewerId: 0,
|
|
29999
|
+
Token: "",
|
|
30000
|
+
ArchiveDescription: "",
|
|
30001
|
+
OutgoingDate: "",
|
|
30002
|
+
FileType: -1,
|
|
30003
|
+
DocumentNumber: "",
|
|
30004
|
+
FlowId: 0,
|
|
30005
|
+
FlowStatus: 0,
|
|
30006
|
+
CreateUserId: 0,
|
|
30007
|
+
CreateUserName: "",
|
|
30008
|
+
CreateDate: ""
|
|
30009
|
+
}));
|
|
30010
|
+
/** 表单实例*/
|
|
30011
|
+
__publicField(this, "moduleComForm", ref());
|
|
30012
|
+
__publicField(this, "disableAllFormItem", ref(false));
|
|
30013
|
+
__publicField(this, "ruleValidate", reactive({
|
|
30014
|
+
FileName: [{ required: true, message: "文件名称不能为空", trigger: "blur" }],
|
|
30015
|
+
FileType: [{ required: true, message: "模版类型不能为空" }]
|
|
30016
|
+
}));
|
|
30017
|
+
/** 表单项 */
|
|
30018
|
+
__publicField(this, "formItems", reactive([
|
|
30019
|
+
{ model: "InsName", prop: "InsName", label: "拟稿部门", type: "Input", span: 12, inputProp: { disabled: true } },
|
|
30020
|
+
{ model: "Draft", prop: "Draft", label: "拟稿人", type: "Input", span: 12, inputProp: { disabled: true } },
|
|
30021
|
+
{ model: "OutgoingDate", prop: "OutgoingDate", label: "发文日期", type: "Input", span: 12, inputProp: { disabled: true } },
|
|
30022
|
+
{ model: "FileName", prop: "FileName", label: "文件名称", type: "Input", span: 12 },
|
|
30023
|
+
{ model: "DocumentNumber", prop: "DocumentNumber", label: "发文字号", type: "Input", span: 12 },
|
|
30024
|
+
{
|
|
30025
|
+
model: "FileType",
|
|
30026
|
+
prop: "FileType",
|
|
30027
|
+
label: "模版类型",
|
|
30028
|
+
type: "Select",
|
|
30029
|
+
span: 12,
|
|
30030
|
+
selectProp: {
|
|
30031
|
+
datas: this.docRedHeadTmplDatas,
|
|
30032
|
+
onChange: (event) => {
|
|
30033
|
+
if (!this.utilities.isNull(event))
|
|
30034
|
+
this.formModel.THTemplateToken = this.docRedHeadTmplDatas.find((x) => x.value == event).token;
|
|
30035
|
+
}
|
|
30036
|
+
}
|
|
30037
|
+
},
|
|
30038
|
+
{
|
|
30039
|
+
model: "SenderUnit",
|
|
30040
|
+
prop: "SenderUnit",
|
|
30041
|
+
label: "主送单位",
|
|
30042
|
+
type: "Input",
|
|
30043
|
+
span: 12,
|
|
30044
|
+
inputProp: {
|
|
30045
|
+
disabled: true,
|
|
30046
|
+
append: "选择",
|
|
30047
|
+
onTextClick: () => {
|
|
30048
|
+
this.institutionModalShow.value = true;
|
|
30049
|
+
this.triggerInsModal = "SenderUnit";
|
|
30050
|
+
}
|
|
30051
|
+
}
|
|
30052
|
+
},
|
|
30053
|
+
{
|
|
30054
|
+
model: "CarbonUnit",
|
|
30055
|
+
prop: "CarbonUnit",
|
|
30056
|
+
label: "抄送单位",
|
|
30057
|
+
type: "Input",
|
|
30058
|
+
span: 12,
|
|
30059
|
+
inputProp: {
|
|
30060
|
+
disabled: true,
|
|
30061
|
+
append: "选择",
|
|
30062
|
+
onTextClick: () => {
|
|
30063
|
+
this.institutionModalShow.value = true;
|
|
30064
|
+
this.triggerInsModal = "CarbonUnit";
|
|
30065
|
+
}
|
|
30066
|
+
}
|
|
30067
|
+
},
|
|
30068
|
+
{
|
|
30069
|
+
model: "Urgent",
|
|
30070
|
+
prop: "Urgent",
|
|
30071
|
+
label: "紧急程度",
|
|
30072
|
+
type: "DicSelect",
|
|
30073
|
+
span: 12,
|
|
30074
|
+
dicSelProp: {
|
|
30075
|
+
code: "SendDocUrgent",
|
|
30076
|
+
platformId: this.storageInfo.getCurrentPlatform().Id,
|
|
30077
|
+
readonly: false
|
|
30078
|
+
}
|
|
30079
|
+
},
|
|
30080
|
+
{
|
|
30081
|
+
model: "ReviewerName",
|
|
30082
|
+
prop: "ReviewerName",
|
|
30083
|
+
label: "下级审批人",
|
|
30084
|
+
type: "Input",
|
|
30085
|
+
span: 12,
|
|
30086
|
+
inputProp: {
|
|
30087
|
+
disabled: true,
|
|
30088
|
+
append: "选择",
|
|
30089
|
+
onTextClick: () => {
|
|
30090
|
+
this.personSelModalShow.value = true;
|
|
30091
|
+
}
|
|
30092
|
+
}
|
|
30093
|
+
},
|
|
30094
|
+
{
|
|
30095
|
+
model: "ArchiveDescription",
|
|
30096
|
+
prop: "ArchiveDescription",
|
|
30097
|
+
label: "公文描述",
|
|
30098
|
+
type: "Input",
|
|
30099
|
+
span: 24,
|
|
30100
|
+
inputProp: {
|
|
30101
|
+
type: "textarea",
|
|
30102
|
+
autosize: {
|
|
30103
|
+
minRows: 4,
|
|
30104
|
+
maxRows: 4
|
|
30105
|
+
}
|
|
30106
|
+
}
|
|
30107
|
+
},
|
|
30108
|
+
{
|
|
30109
|
+
model: "docToken",
|
|
30110
|
+
prop: "docToken",
|
|
30111
|
+
label: "正文",
|
|
30112
|
+
type: "UploadFile",
|
|
30113
|
+
span: 24,
|
|
30114
|
+
uploadFileProp: {
|
|
30115
|
+
readonly: true
|
|
30116
|
+
}
|
|
30117
|
+
},
|
|
30118
|
+
{
|
|
30119
|
+
model: "Token",
|
|
30120
|
+
prop: "Token",
|
|
30121
|
+
label: "附件",
|
|
30122
|
+
type: "UploadFile",
|
|
30123
|
+
span: 24,
|
|
30124
|
+
uploadFileProp: {
|
|
30125
|
+
readonly: false
|
|
30126
|
+
}
|
|
30127
|
+
}
|
|
30128
|
+
]));
|
|
30129
|
+
this.props = props;
|
|
30130
|
+
this.ctx = ctx;
|
|
30131
|
+
this.init();
|
|
30132
|
+
}
|
|
30133
|
+
init() {
|
|
30134
|
+
onMounted(async () => {
|
|
30135
|
+
});
|
|
30136
|
+
}
|
|
30137
|
+
// 私有方法 | private 方法名() {}
|
|
30138
|
+
//#endregion 业务逻辑 END
|
|
30139
|
+
}
|
|
30140
|
+
const _hoisted_1 = { style: { "height": "600px" } };
|
|
30141
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
30142
|
+
const _component_PersonSel = resolveComponent("PersonSel");
|
|
30143
|
+
const _component_NvPage = resolveComponent("NvPage");
|
|
30144
|
+
return openBlock(), createBlock(_component_NvPage, { gutter: 8 }, {
|
|
30145
|
+
default: withCtx(() => [
|
|
30146
|
+
createElementVNode("div", _hoisted_1, [
|
|
30147
|
+
_ctx.personSelModalShow ? (openBlock(), createBlock(_component_PersonSel, {
|
|
30148
|
+
key: 0,
|
|
30149
|
+
multiple: false,
|
|
30150
|
+
onOnSelect: _ctx.handlePersonSelect,
|
|
30151
|
+
onOnClose: _cache[0] || (_cache[0] = ($event) => _ctx.personSelModalShow = false)
|
|
30152
|
+
}, null, 8, ["onOnSelect"])) : createCommentVNode("", true)
|
|
30153
|
+
])
|
|
30154
|
+
]),
|
|
30155
|
+
_: 1
|
|
30156
|
+
});
|
|
30157
|
+
}
|
|
30158
|
+
const SendDocMgmt = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
29717
30159
|
const index = [
|
|
29718
30160
|
{
|
|
29719
30161
|
// 系统平台
|
|
@@ -29803,13 +30245,18 @@ const index = [
|
|
|
29803
30245
|
},
|
|
29804
30246
|
{
|
|
29805
30247
|
// 看板模块
|
|
29806
|
-
path: "/viewModule/ViewModule",
|
|
30248
|
+
path: "/permission-service/viewModule/ViewModule",
|
|
29807
30249
|
component: ViewModule
|
|
29808
30250
|
},
|
|
29809
30251
|
{
|
|
29810
30252
|
// 集团关系
|
|
29811
|
-
path: "/groupRelationships/GroupRelationships",
|
|
30253
|
+
path: "/permission-service/groupRelationships/GroupRelationships",
|
|
29812
30254
|
component: GroupRelationships
|
|
30255
|
+
},
|
|
30256
|
+
{
|
|
30257
|
+
// 发文管理
|
|
30258
|
+
path: "/businessManagePages/OA/SendDocMgmt",
|
|
30259
|
+
component: SendDocMgmt
|
|
29813
30260
|
}
|
|
29814
30261
|
];
|
|
29815
30262
|
export {
|