cloud-web-corejs 1.0.54-dev.12 → 1.0.54-dev.120
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/package.json +9 -3
- package/src/components/Qrcode/fileParse.vue +0 -1
- package/src/components/VabUpload/index.vue +2 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/view.vue +2 -1
- package/src/components/excelExport/exportFieldDialog.vue +16 -6
- package/src/components/excelExport/index.js +2 -1
- package/src/components/excelExport/index.vue +8 -6
- package/src/components/excelExport/mixins.js +1 -2
- package/src/components/excelImport/index.vue +2 -1
- package/src/components/excelImport/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjAuthDialog.vue +1 -1
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +1 -1
- package/src/components/fileLibrary/fileObjNotifyEdit.vue +90 -68
- package/src/components/fileLibrary/filterDialog.vue +383 -0
- package/src/components/fileLibrary/index.vue +23 -24
- package/src/components/fileLibrary/mixins/categoryMoveDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileCategoryDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileHistoryDialogMixins.js +2 -2
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +15 -10
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +8 -5
- package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +5 -5
- package/src/components/fileLibrary/mixins/indexMixins.js +76 -26
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +63 -3
- package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +1 -1
- package/src/components/fileLibrary/propertiesDialog.vue +18 -0
- package/src/components/fileLibrary/shareDialog.vue +1 -1
- package/src/components/jsonImport/mixins.js +1 -1
- package/src/components/onlineTalk/index.vue +327 -5
- package/src/components/onlineTalk/mixins.js +1 -1
- package/src/components/table/index.js +2 -1
- package/src/components/tempStorage/tempStorageDialog.vue +2 -2
- package/src/components/wf/wf.js +1763 -1
- package/src/components/wf/wfStartDialog.vue +1 -1
- package/src/components/wf/wfUtil.js +279 -1
- package/src/components/xform/form-designer/designer.js +1514 -1
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +1 -0
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +1 -0
- package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +35 -5
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +3 -1
- package/src/components/xform/form-designer/form-widget/dialog/preformDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +11 -5
- package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +6 -2
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +10 -5
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +1 -0
- package/src/components/xform/form-designer/form-widget/field-widget/echart-bar-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-category-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-pie-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1026 -1
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +49 -8
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +61 -88
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +13 -0
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +67 -3
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +9 -4
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +8 -2
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +6 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +80 -0
- package/src/components/xform/form-designer/indexMixin.js +773 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +59 -36
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +41 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +9 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/onCheckboxChange-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +100 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/eventMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +32 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +20 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +27 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +185 -69
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +188 -86
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +84 -39
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +26 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +39 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/placeholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +177 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/required-editor.vue +2 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +242 -27
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +4 -0
- package/src/components/xform/form-designer/toolbar-panel/index.vue +4 -3
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +145 -147
- package/src/components/xform/form-render/container-item/data-table-item.vue +5 -4
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1926 -1
- package/src/components/xform/form-render/indexMixin.js +1792 -1
- package/src/components/xform/mixins/defaultHandle.js +120 -1
- package/src/components/xform/mixins/scriptHttp.js +82 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/util.js +1631 -1
- package/src/layout/components/Sidebar/default.vue +50 -6
- package/src/layout/components/TagsView/index.vue +0 -1
- package/src/layout/components/extractedCode/createDialog.vue +92 -0
- package/src/layout/components/extractedCode/queryDialog.vue +96 -0
- package/src/layout/components/extractedCode/viewDialog.vue +192 -0
- package/src/mixins/selectDialog/index.js +1 -1
- package/src/router/modules/customer.js +15 -0
- package/src/store/config/index.js +664 -1
- package/src/store/modules/permission.js +1 -1
- package/src/store/modules/user.js +1 -1
- package/src/utils/index.js +4 -2
- package/src/utils/pddLog.js +103 -0
- package/src/utils/request.js +28 -28
- package/src/utils/vab.js +1 -1
- package/src/views/bd/setting/form_import_log/edit.vue +120 -0
- package/src/views/bd/setting/form_import_log/list.vue +195 -0
- package/src/views/bd/setting/form_script/edit1.vue +1 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +167 -1
- package/src/views/bd/setting/form_script/mixins/edit1.js +165 -1
- package/src/views/bd/setting/form_script/mixins/list.js +176 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +345 -14
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/edit.vue +9 -1
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/list.vue +4 -2
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +4 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +170 -1
- package/src/views/bd/setting/form_template/mixins/list.js +522 -1
- package/src/views/bd/setting/form_template/mixins/wf_list.js +12 -0
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +254 -0
- package/src/views/bd/setting/form_template/wf_list.vue +127 -0
- package/src/views/bd/setting/menu_kind/mixins/list.js +176 -1
- package/src/views/bd/setting/table_model/edit.vue +71 -13
- package/src/views/bd/setting/table_model/list.vue +4 -2
- package/src/views/bd/setting/table_model/mixins/edit.js +890 -2
- package/src/views/bd/setting/table_model/mixins/list.js +345 -14
- package/src/views/user/area/dialog.vue +21 -9
- package/src/views/user/bill_setting/edit.vue +1 -1
- package/src/views/user/bill_setting/list.vue +1 -1
- package/src/views/user/common_attribute/itemEdit.vue +2 -2
- package/src/views/user/common_attribute/list.vue +1 -1
- package/src/views/user/common_script/edit.vue +1 -1
- package/src/views/user/common_script/list.vue +1 -1
- package/src/views/user/company_info/dialog.vue +19 -9
- package/src/views/user/company_info/edit.vue +1 -1
- package/src/views/user/extend_datasource/dialog.vue +1 -0
- package/src/views/user/extend_datasource/edit.vue +3 -0
- package/src/views/user/extend_datasource/list.vue +2 -1
- package/src/views/user/file_type/edit.vue +30 -1
- package/src/views/user/file_type/list.vue +28 -0
- package/src/views/user/form/vform/designer.vue +5 -1
- package/src/views/user/groups/edit.vue +2 -0
- package/src/views/user/groups/list.vue +1 -0
- package/src/views/user/home/default.vue +15 -11
- package/src/views/user/home/dev.vue +29 -0
- package/src/views/user/home/index.vue +16 -6
- package/src/views/user/login/default.vue +4 -2
- package/src/views/user/login/index2.vue +131 -0
- package/src/views/user/notify_message/dialog.vue +1 -1
- package/src/views/user/outLink/form_view.vue +39 -12
- package/src/views/user/outLink/index.vue +17 -0
- package/src/views/user/outLink/view.vue +39 -13
- package/src/views/user/push_setting/list.vue +2 -2
- package/src/views/user/user/edit.vue +9 -9
- package/src/views/user/user/form_edit.vue +117 -49
- package/src/views/user/user/form_info.vue +210 -0
- package/src/views/user/user/form_list.vue +1 -0
- package/src/views/user/user/list.vue +3 -3
- package/src/views/user/wf/wf_manage/list.vue +1 -1
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +1 -1
- package/src/views/user/wf/wf_obj_config/list.vue +19 -3
- package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +292 -0
@@ -0,0 +1,120 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="detail-wrap">
|
3
|
+
<el-form ref="editForm" :model="formImportLog">
|
4
|
+
<div class="d-header clearfix">
|
5
|
+
<div class="fl">
|
6
|
+
<i class="el-icon-info"/>
|
7
|
+
{{ dataId ? $t1('查看表单导入日志') : $t1('新增表单导入日志') }}
|
8
|
+
</div>
|
9
|
+
<div class="fr">
|
10
|
+
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
11
|
+
{{ $t1('重置') }}
|
12
|
+
</el-button>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
<div class="d-cont">
|
16
|
+
<div class="d-item">
|
17
|
+
<div class="title first"><b>{{ $t1('基本信息') }}</b></div>
|
18
|
+
<table class="table-detail">
|
19
|
+
<tbody>
|
20
|
+
<tr>
|
21
|
+
<th>
|
22
|
+
<em class="f-red">*</em>
|
23
|
+
{{ $t1('表单分类路径') }}
|
24
|
+
</th>
|
25
|
+
<td colspan="5">
|
26
|
+
{{ formImportLog.treePathName }}
|
27
|
+
</td>
|
28
|
+
</tr>
|
29
|
+
<tr>
|
30
|
+
<th>
|
31
|
+
<em class="f-red">*</em>
|
32
|
+
{{ $t1('日志类型') }}
|
33
|
+
</th>
|
34
|
+
<td>
|
35
|
+
{{ formImportLog.logType }}
|
36
|
+
</td>
|
37
|
+
<th>
|
38
|
+
<em class="f-red">*</em>
|
39
|
+
{{ $t1('日志对象') }}
|
40
|
+
</th>
|
41
|
+
<td colspan="3">
|
42
|
+
[{{ formImportLog.abc }}] {{ formImportLog.logObj }}
|
43
|
+
</td>
|
44
|
+
</tr>
|
45
|
+
<tr>
|
46
|
+
<th>
|
47
|
+
<em class="f-red">*</em>
|
48
|
+
{{ $t1('导入时间') }}
|
49
|
+
</th>
|
50
|
+
<td>
|
51
|
+
{{ formImportLog.impDate }}
|
52
|
+
</td>
|
53
|
+
<th>
|
54
|
+
<em class="f-red">*</em>
|
55
|
+
{{ $t1('结果') }}
|
56
|
+
</th>
|
57
|
+
<td colspan="3">
|
58
|
+
{{ formImportLog.impReturnType }} - {{ formImportLog.impReturnMsg }}
|
59
|
+
</td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<th>{{ $t1('创建人') }}</th>
|
63
|
+
<td>{{ formImportLog._createBy }}</td>
|
64
|
+
<th>{{ $t1('创建时间') }}</th>
|
65
|
+
<td>{{ formImportLog.createDate }}</td>
|
66
|
+
<th>{{ $t1('更新人') }}</th>
|
67
|
+
<td>{{ formImportLog._modifyBy }}</td>
|
68
|
+
<th>{{ $t1('更新时间') }}</th>
|
69
|
+
<td>{{ formImportLog.modifyDate }}</td>
|
70
|
+
</tr>
|
71
|
+
</tbody>
|
72
|
+
</table>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
</el-form>
|
76
|
+
</div>
|
77
|
+
</template>
|
78
|
+
|
79
|
+
<script>
|
80
|
+
export default {
|
81
|
+
name: 'formImportLogEdit',
|
82
|
+
props: {
|
83
|
+
_dataId: [String, Number]
|
84
|
+
},
|
85
|
+
components: {},
|
86
|
+
data() {
|
87
|
+
return {
|
88
|
+
isEdit: false,
|
89
|
+
tabIndex: 'first',
|
90
|
+
dataId: '',
|
91
|
+
formImportLog: {}
|
92
|
+
};
|
93
|
+
},
|
94
|
+
created() {
|
95
|
+
if (this._dataId && !isNaN(this._dataId)) this.dataId = this._dataId;
|
96
|
+
},
|
97
|
+
mounted() {
|
98
|
+
this.getData();
|
99
|
+
},
|
100
|
+
methods: {
|
101
|
+
getData() {
|
102
|
+
if (this.dataId && !isNaN(this.dataId)) {
|
103
|
+
this.isEdit = true;
|
104
|
+
this.$commonHttp({
|
105
|
+
url: USER_PREFIX + `/form_import_log/get`,
|
106
|
+
method: `post`,
|
107
|
+
data: {
|
108
|
+
id: this.dataId
|
109
|
+
},
|
110
|
+
isLoading: true,
|
111
|
+
modalStrictly: true,
|
112
|
+
success: res => {
|
113
|
+
this.formImportLog = res.objx || {};
|
114
|
+
}
|
115
|
+
});
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
};
|
120
|
+
</script>
|
@@ -0,0 +1,195 @@
|
|
1
|
+
<template>
|
2
|
+
<div id="containt">
|
3
|
+
<el-tabs v-model="activeName" class="tab-box">
|
4
|
+
<el-tab-pane :label="$t1('常规')" name="first">
|
5
|
+
<editView v-if="showEdit" visible-key="showEdit" :_dataId.sync="dataId" :parent-target="_self"
|
6
|
+
@reload="$reloadHandle"></editView>
|
7
|
+
</el-tab-pane>
|
8
|
+
<el-tab-pane :label="$t1('列表')" name="second">
|
9
|
+
<div class="grid-height">
|
10
|
+
<vxe-grid ref="table-m1" v-bind="vxeOption" @resizable-change="$vxeTableUtil.onColumnWitchChange"
|
11
|
+
@custom="$vxeTableUtil.customHandle">
|
12
|
+
<template #form>
|
13
|
+
<div class="clearfix screen-btns">
|
14
|
+
<div class="fl">
|
15
|
+
</div>
|
16
|
+
<div class="fr">
|
17
|
+
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
18
|
+
plain>{{ $t1('重置') }}
|
19
|
+
</vxe-button>
|
20
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
21
|
+
{{ $t1('搜索') }}
|
22
|
+
</vxe-button>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
<vxe-form ref="form" class="screen-box" title-width="92px" title-align="right" :data="formData"
|
26
|
+
@submit="searchEvent" @reset="searchEvent">
|
27
|
+
<vxe-form-item :title="$t1('表单分类路径')+':'" field="treePathName">
|
28
|
+
<template v-slot>
|
29
|
+
<el-input v-model="formData.treePathName" size="small" clearable/>
|
30
|
+
</template>
|
31
|
+
</vxe-form-item>
|
32
|
+
<vxe-form-item :title="$t1('日志类型')+':'" field="logType">
|
33
|
+
<template v-slot>
|
34
|
+
<el-input v-model="formData.logType" size="small" clearable/>
|
35
|
+
</template>
|
36
|
+
</vxe-form-item>
|
37
|
+
<vxe-form-item :title="$t1('日志对象')+':'" field="logObj">
|
38
|
+
<template v-slot>
|
39
|
+
<el-input v-model="formData.logObj" size="small" clearable/>
|
40
|
+
</template>
|
41
|
+
</vxe-form-item>
|
42
|
+
<vxe-form-item :title="$t1('结果')+':'" field="impReturnType">
|
43
|
+
<template v-slot>
|
44
|
+
<el-select v-model="formData.impReturnType" size="small" clearable>
|
45
|
+
<el-option value="success" label="成功"></el-option>
|
46
|
+
<el-option value="fail" label="失败"></el-option>
|
47
|
+
</el-select>
|
48
|
+
</template>
|
49
|
+
</vxe-form-item>
|
50
|
+
<vxe-form-item title="导入时间:" field="date1">
|
51
|
+
<template #default="{ data }">
|
52
|
+
<el-date-picker
|
53
|
+
v-model="formData.startImpDate"
|
54
|
+
type="datetime"
|
55
|
+
placeholder=""
|
56
|
+
size="small"
|
57
|
+
clearable
|
58
|
+
value-format="yyyy-MM-dd HH:mm:ss"
|
59
|
+
:picker-options="$baseStartPickerOptions(formData.endImpDate)"
|
60
|
+
></el-date-picker>
|
61
|
+
<span>-</span>
|
62
|
+
<el-date-picker
|
63
|
+
v-model="formData.endImpDate"
|
64
|
+
type="datetime"
|
65
|
+
placeholder=""
|
66
|
+
size="small"
|
67
|
+
clearable
|
68
|
+
value-format="yyyy-MM-dd HH:mm:ss"
|
69
|
+
:picker-options="$baseEndPickerOptions(formData.startImpDate)"
|
70
|
+
></el-date-picker>
|
71
|
+
</template>
|
72
|
+
</vxe-form-item>
|
73
|
+
</vxe-form>
|
74
|
+
</template>
|
75
|
+
</vxe-grid>
|
76
|
+
</div>
|
77
|
+
</el-tab-pane>
|
78
|
+
</el-tabs>
|
79
|
+
</div>
|
80
|
+
</template>
|
81
|
+
|
82
|
+
<script>
|
83
|
+
import editView from './edit.vue';
|
84
|
+
|
85
|
+
export default {
|
86
|
+
name: 'form_import_log:list',
|
87
|
+
components: {editView},
|
88
|
+
data() {
|
89
|
+
return {
|
90
|
+
activeName: 'second',
|
91
|
+
dataId: 0,
|
92
|
+
showEdit: false,
|
93
|
+
vxeOption: {},
|
94
|
+
formData: {}
|
95
|
+
};
|
96
|
+
},
|
97
|
+
mounted() {
|
98
|
+
this.initTableList();
|
99
|
+
},
|
100
|
+
methods: {
|
101
|
+
searchEvent() {
|
102
|
+
this.$refs['table-m1'].commitProxy('reload');
|
103
|
+
},
|
104
|
+
resetEvent() {
|
105
|
+
this.formData = {};
|
106
|
+
this.$refs['table-m1'].commitProxy('reload');
|
107
|
+
},
|
108
|
+
openEditDialog(id) {
|
109
|
+
this.dataId = !id || typeof id == 'object' ? 0 : id;
|
110
|
+
this.activeName = 'first';
|
111
|
+
this.$openEditView('showEdit');
|
112
|
+
},
|
113
|
+
initTableList() {
|
114
|
+
let that = this;
|
115
|
+
let tableOption = {
|
116
|
+
vue: this,
|
117
|
+
tableRef: 'table-m1',
|
118
|
+
tableName: 'user_form_import_log_list-m1',
|
119
|
+
path: USER_PREFIX + '/form_import_log/listPage',
|
120
|
+
param: () => {
|
121
|
+
return this.formData;
|
122
|
+
},
|
123
|
+
columns: [
|
124
|
+
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
125
|
+
{
|
126
|
+
title: this.$t1('表单分类路径'),
|
127
|
+
field: 'treePathName',
|
128
|
+
width: 250,
|
129
|
+
fixed: 'left'
|
130
|
+
},
|
131
|
+
{
|
132
|
+
field: 'logType',
|
133
|
+
title: this.$t1('日志类型'),
|
134
|
+
width: 150
|
135
|
+
},
|
136
|
+
{
|
137
|
+
field: 'logObj',
|
138
|
+
title: this.$t1('日志对象'),
|
139
|
+
width: 250,
|
140
|
+
slots: {
|
141
|
+
default: ({row}) => {
|
142
|
+
return `[${row.abc}] ${row.logObj}`;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
},
|
146
|
+
{
|
147
|
+
field: 'impReturnMsg',
|
148
|
+
title: this.$t1('结果'),
|
149
|
+
width: 350,
|
150
|
+
slots: {
|
151
|
+
default: ({row}) => {
|
152
|
+
return `${row.impReturnType} - ${row.impReturnMsg}`;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
},
|
156
|
+
{
|
157
|
+
field: 'impDate',
|
158
|
+
title: this.$t1('导入时间'),
|
159
|
+
width: 150
|
160
|
+
},
|
161
|
+
{
|
162
|
+
width: 47,
|
163
|
+
fixed: 'right',
|
164
|
+
title: '',
|
165
|
+
sortable: false,
|
166
|
+
slots: {
|
167
|
+
default: ({row}) => {
|
168
|
+
return [
|
169
|
+
<div>
|
170
|
+
<a
|
171
|
+
href="javascript:void(0);"
|
172
|
+
class="a-link"
|
173
|
+
onclick={() => {
|
174
|
+
this.openEditDialog(row.id);
|
175
|
+
}}
|
176
|
+
>
|
177
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看')} placement="top"
|
178
|
+
popper-class="tooltip-skin">
|
179
|
+
<i class="el-icon-edit"/>
|
180
|
+
</el-tooltip>
|
181
|
+
</a>
|
182
|
+
</div>
|
183
|
+
];
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
187
|
+
]
|
188
|
+
};
|
189
|
+
this.$vxeTableUtil.initVxeTable(tableOption).then(opts => {
|
190
|
+
this.vxeOption = opts;
|
191
|
+
});
|
192
|
+
}
|
193
|
+
}
|
194
|
+
};
|
195
|
+
</script>
|
@@ -11,7 +11,7 @@
|
|
11
11
|
{{ $t1('重置') }}
|
12
12
|
</el-button>
|
13
13
|
<el-button type="primary" class="button-sty" icon="el-icon-check" @click="saveData"
|
14
|
-
v-if="isDev && menuKindAuth.editAuth===1">{{ $t1('保存') }}
|
14
|
+
v-if="isDev && menuKindAuth.editAuth===1 && !readonly">{{ $t1('保存') }}
|
15
15
|
</el-button>
|
16
16
|
</div>
|
17
17
|
</div>
|
@@ -1,7 +1,173 @@
|
|
1
1
|
import formOplogTable from "@base/components/formOplog/index.vue";
|
2
2
|
import preformDialog from "@base/views/bd/setting/form_script/preformDialog.vue";
|
3
|
+
import projectTagView from "@base/components/projectTag/view.vue";
|
4
|
+
import MenuKindDialog from "@base/views/bd/setting/menu_kind/dialog.vue";
|
3
5
|
import {getBdFlag} from "@base/api/user";
|
4
6
|
|
5
7
|
let modules = {};
|
6
|
-
function _0x2d94(_0x3cae88,_0x36a896){var _0x13a2f4=_0x36a8();_0x2d94=function(_0x2be123,_0x568bff){_0x2be123=_0x2be123-0x0;var _0x2f6e5d=_0x13a2f4[_0x2be123];if(_0x2d94["\u0057\u0066\u006e\u0079\u004d\u006b"]===undefined){var _0x47b301=function(_0x4c6b11){var _0x31d841="\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u002b\u002f\u003d";var _0x59df33='';var _0x298597='';for(var _0x271c9=0x0,_0x22bf30,_0xf9d398,_0x279749=0x0;_0xf9d398=_0x4c6b11["\u0063\u0068\u0061\u0072\u0041\u0074"](_0x279749++);~_0xf9d398&&(_0x22bf30=_0x271c9%0x4?_0x22bf30*0x40+_0xf9d398:_0xf9d398,_0x271c9++%0x4)?_0x59df33+=String['fromCharCode'](0xff&_0x22bf30>>(-0x2*_0x271c9&0x6)):0x0){_0xf9d398=_0x31d841['indexOf'](_0xf9d398);}for(var _0x36dde7=0x0,_0x11c58e=_0x59df33["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x36dde7<_0x11c58e;_0x36dde7++){_0x298597+="\u0025"+("\u0030\u0030"+_0x59df33["\u0063\u0068\u0061\u0072\u0043\u006f\u0064\u0065\u0041\u0074"](_0x36dde7)["\u0074\u006f\u0053\u0074\u0072\u0069\u006e\u0067"](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x298597);};var _0x21c1f0=function(_0x2b2b2b,_0xa8c9cf){var _0x47ca2e=[],_0x3b6254=0x0,_0x403dc5,_0x103c2b='';_0x2b2b2b=_0x47b301(_0x2b2b2b);var _0x14cf87;for(_0x14cf87=0x0;_0x14cf87<0x100;_0x14cf87++){_0x47ca2e[_0x14cf87]=_0x14cf87;}for(_0x14cf87=0x0;_0x14cf87<0x100;_0x14cf87++){_0x3b6254=(_0x3b6254+_0x47ca2e[_0x14cf87]+_0xa8c9cf['charCodeAt'](_0x14cf87%_0xa8c9cf['length']))%0x100;_0x403dc5=_0x47ca2e[_0x14cf87];_0x47ca2e[_0x14cf87]=_0x47ca2e[_0x3b6254];_0x47ca2e[_0x3b6254]=_0x403dc5;}_0x14cf87=0x0;_0x3b6254=0x0;for(var _0x4f0722=0x0;_0x4f0722<_0x2b2b2b['length'];_0x4f0722++){_0x14cf87=(_0x14cf87+0x1)%0x100;_0x3b6254=(_0x3b6254+_0x47ca2e[_0x14cf87])%0x100;_0x403dc5=_0x47ca2e[_0x14cf87];_0x47ca2e[_0x14cf87]=_0x47ca2e[_0x3b6254];_0x47ca2e[_0x3b6254]=_0x403dc5;_0x103c2b+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](_0x2b2b2b['charCodeAt'](_0x4f0722)^_0x47ca2e[(_0x47ca2e[_0x14cf87]+_0x47ca2e[_0x3b6254])%0x100]);}return _0x103c2b;};_0x2d94["\u0076\u0044\u0070\u0055\u0070\u0068"]=_0x21c1f0;_0x3cae88=arguments;_0x2d94["\u0057\u0066\u006e\u0079\u004d\u006b"]=!![];}var _0xc54993=_0x13a2f4[0x0];var _0x15c161=_0x2be123+_0xc54993;var _0x2d9401=_0x3cae88[_0x15c161];if(!_0x2d9401){if(_0x2d94['kNaUJn']===undefined){_0x2d94["\u006b\u004e\u0061\u0055\u004a\u006e"]=!![];}_0x2f6e5d=_0x2d94["\u0076\u0044\u0070\u0055\u0070\u0068"](_0x2f6e5d,_0x568bff);_0x3cae88[_0x15c161]=_0x2f6e5d;}else{_0x2f6e5d=_0x2d9401;}return _0x2f6e5d;};return _0x2d94(_0x3cae88,_0x36a896);}function sPBXba(_0x234fec,_0x10c331){if(!![]!=![])return;sPBXba=function(_0x59b89c,_0x406372){_0x59b89c=_0x59b89c-(0x973c9^0x973c9);var _0x1c4ccb=_0x5e50e6[_0x59b89c];return _0x1c4ccb;};return sPBXba(_0x234fec,_0x10c331);}sPBXba();function _0x13a2(_0x3cae88,_0x36a896){var _0x13a2f4=_0x36a8();_0x13a2=function(_0x2be123,_0x568bff){_0x2be123=_0x2be123-0x0;var _0x2f6e5d=_0x13a2f4[_0x2be123];if(_0x13a2["\u0041\u004e\u0045\u0079\u0077\u006b"]===undefined){var _0x47b301=function(_0x21c1f0){var _0x4c6b11="\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006a\u006b\u006c\u006d\u006e\u006f\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077\u0078\u0079\u007a\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048\u0049\u004a\u004b\u004c\u004d\u004e\u004f\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005a\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u002b\u002f\u003d";var _0x31d841='';var _0x59df33='';for(var _0x298597=0x0,_0x271c9,_0x22bf30,_0xf9d398=0x0;_0x22bf30=_0x21c1f0["\u0063\u0068\u0061\u0072\u0041\u0074"](_0xf9d398++);~_0x22bf30&&(_0x271c9=_0x298597%0x4?_0x271c9*0x40+_0x22bf30:_0x22bf30,_0x298597++%0x4)?_0x31d841+=String["\u0066\u0072\u006f\u006d\u0043\u0068\u0061\u0072\u0043\u006f\u0064\u0065"](0xff&_0x271c9>>(-0x2*_0x298597&0x6)):0x0){_0x22bf30=_0x4c6b11['indexOf'](_0x22bf30);}for(var _0x279749=0x0,_0x36dde7=_0x31d841['length'];_0x279749<_0x36dde7;_0x279749++){_0x59df33+="\u0025"+("\u0030\u0030"+_0x31d841["\u0063\u0068\u0061\u0072\u0043\u006f\u0064\u0065\u0041\u0074"](_0x279749)['toString'](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x59df33);};_0x13a2['XnSaYW']=_0x47b301;_0x3cae88=arguments;_0x13a2["\u0041\u004e\u0045\u0079\u0077\u006b"]=!![];}var _0xc54993=_0x13a2f4[0x0];var _0x15c161=_0x2be123+_0xc54993;var _0x2d9401=_0x3cae88[_0x15c161];if(!_0x2d9401){_0x2f6e5d=_0x13a2['XnSaYW'](_0x2f6e5d);_0x3cae88[_0x15c161]=_0x2f6e5d;}else{_0x2f6e5d=_0x2d9401;}return _0x2f6e5d;};return _0x13a2(_0x3cae88,_0x36a896);}function xVzNgl(_0x11c58e,_0x2b2b2b){if(!![]!=![])return;xVzNgl=function(_0xa8c9cf,_0x47ca2e){_0xa8c9cf=_0xa8c9cf-(0x973c9^0x973c9);var _0x3b6254=_0x5e50e6[_0xa8c9cf];return _0x3b6254;};return xVzNgl(_0x11c58e,_0x2b2b2b);}xVzNgl();(function(_0x50a6f8,_0x2a4539){function _0x3b9c99(_0x3976e8,_0x2c4924,_0x52aaee,_0xf732cb,_0x3b7050){return _0x2d94(_0x3b7050- -0x28f,_0x3976e8);}function _0x5293e2(_0x58dab6,_0x32d03a,_0x562603,_0x146060,_0x4f95ef){return _0x13a2(_0x58dab6-0x20f,_0x32d03a);}function _0x106f1b(_0x154250,_0x22ef0b,_0x4efb09,_0x131b9e,_0x19e53d){return _0x2d94(_0x22ef0b- -0x99,_0x131b9e);}function _0x5f35dc(_0x15b2ed,_0x438f96,_0x24ef42,_0x546024,_0x4de35c){return _0x13a2(_0x546024-0x296,_0x24ef42);}var _0x129016=_0x50a6f8();function _0x1ebec8(_0x91ce71,_0x5d881c,_0x48c7bc,_0x510076,_0xfc6125){return _0x13a2(_0x5d881c- -0x39c,_0x48c7bc);}function _0x5bb141(_0xa3f7f3,_0x5588d6,_0xb2784,_0x3d102e,_0x5888ea){return _0x2d94(_0xa3f7f3-0x3cc,_0x3d102e);}function _0x30644e(_0x5a5c54,_0x2040c5,_0x2fde2b,_0x521560,_0x14e8ea){return _0x13a2(_0x14e8ea-0x112,_0x5a5c54);}function _0x5d1cb5(_0x15c887,_0xfb5291,_0x2b9913,_0x44c4f2,_0x46b1b0){return _0x13a2(_0xfb5291- -0x213,_0x44c4f2);}do{try{var _0x171862=-parseInt(_0x3b9c99("BAOE".split("").reverse().join(""),-0x27e,-0x28d,-0x253,-0x262))/0x1+parseInt(_0x30644e(0x194,0x17d,0x1a1,0x161,0x169))/0x2+parseInt(_0x5d1cb5(-0x179,-0x1a3,-0x1a2,-0x17f,-0x1a5))/0x3+-parseInt(_0x5f35dc(0x2fa,0x2c7,0x2c5,0x2f1,0x2e2))/0x4*(-parseInt(_0x30644e(0x196,0x172,0x152,0x15b,0x17b))/0x5)+-parseInt(_0x5d1cb5(-0x1e0,-0x1a9,-0x184,-0x17e,-0x1a9))/0x6+parseInt(_0x5bb141(0x41e,0x43e,0x41f,"\u0063\u002a\u0041\u0056",0x3f1))/0x7+-parseInt(_0x5bb141(0x415,0x42e,0x405,"IhJS".split("").reverse().join(""),0x3ef))/0x8;if(_0x171862===_0x2a4539){break;}else{_0x129016['push'](_0x129016['shift']());}}catch(_0x50b286){_0x129016["\u0070\u0075\u0073\u0068"](_0x129016["\u0073\u0068\u0069\u0066\u0074"]());}}while(!![]);})(_0x36a8,0xa73b7);function _0x22e99a(_0x2d2820,_0x145ac6,_0x1528fa,_0x59ea00,_0x1a7092){return _0x13a2(_0x1a7092-0x2a8,_0x59ea00);}function _0x36a8(){var _0x33fdd3=["\u0057\u0036\u0078\u0064\u004b\u0043\u006b\u006f","\u0057\u0037\u0070\u0064\u0054\u0065\u0050\u0041\u007a\u004d\u0065","\u0057\u0052\u0050\u0076\u0057\u0052\u0044\u0047\u0057\u0034\u006a\u0055\u0057\u0050\u0065\u0052\u0057\u0051\u0068\u0064\u004e\u0061","kkSIcx6WpKQWRk8Gd/4W".split("").reverse().join(""),"\u0057\u0037\u0031\u006c\u0057\u0035\u0047\u004f\u0067\u0061","\u0044\u004c\u0048\u004c\u007a\u0075\u0047","\u0042\u0067\u0039\u004e\u0071\u0032\u0039\u0055\u0044\u0067\u0076\u0055\u0044\u0061","acTcxXRcFbLd37W+kCDIkCHdBOWfoSj".split("").reverse().join(""),"\u006a\u0068\u006a\u004c\u007a\u004e\u006d","3kCiHo8i".split("").reverse().join(""),"\u0070\u0057\u004e\u0063\u0049\u0058\u0052\u0063\u0056\u0047","\u006c\u0032\u007a\u0056\u0043\u004d\u0031\u0074\u0079\u0033\u006a\u0050\u0043\u0068\u0071\u0056\u0044\u0078\u0062\u004b\u0079\u0078\u0072\u004c","\u0063\u006d\u006b\u0054\u0044\u0077\u0053\u0037\u0057\u0035\u0042\u0064\u0054\u0030\u0074\u0063\u0047\u0053\u006b\u004c\u0075\u0030\u0078\u0063\u004d\u0057\u0079","qz0nMunzem0qtm4yJm".split("").reverse().join(""),"\u006e\u0074\u0071\u005a\u006d\u005a\u0043\u005a\u006f\u0068\u0066\u0076\u0044\u004e\u006e\u006c\u0077\u0047","GRcFJGcNOW6oSf9kma".split("").reverse().join(""),"aMcF7W7kCIdVxQcFNNd/7W8kCtPoSv".split("").reverse().join(""),"\u007a\u004d\u0039\u0059\u0042\u0076\u006e\u004a\u0043\u004d\u004c\u0057\u0044\u0061","\u0057\u004f\u0057\u0035\u0057\u0035\u0052\u0064\u0050\u0038\u006b\u0077\u006f\u0077\u0053","yJVcdPW5oSIdBcOcl5Wkomr".split("").reverse().join(""),"qrJ52yvPxo0KJn0iJm".split("").reverse().join(""),"mNsfjKD".split("").reverse().join(""),"KLuy0fgz".split("").reverse().join(""),"\u0057\u0037\u002f\u0064\u0051\u0043\u006b\u0036\u0065\u0043\u006f\u0053\u0057\u0051\u0052\u0064\u0047\u0033\u0054\u004d\u0057\u0034\u0030","ugzVnuBY9Mz".split("").reverse().join(""),"WfhkmgPoSf".split("").reverse().join(""),"\u0042\u0053\u006b\u005a\u0057\u0052\u0046\u0063\u0056\u0043\u006b\u0041","WvvOdV3n".split("").reverse().join(""),"i3B0LgzfvgzVn0DVH2C".split("").reverse().join(""),"0v2zVqhCPj3yt1MCVz2l".split("").reverse().join(""),"\u0041\u0078\u006e\u0065\u007a\u0078\u0079","\u0063\u0043\u006f\u0031\u006f\u006d\u006b\u0042\u0063\u0047","\u0057\u0036\u0062\u0049\u0057\u0035\u0047\u006c\u0066\u0047","yNBfrMq0v2z".split("").reverse().join(""),"\u0043\u0032\u006e\u0059\u0041\u0078\u0062\u0030\u0076\u0068\u004c\u0057\u007a\u0071","kkmsZXJRcVOW".split("").reverse().join(""),"\u0042\u0033\u0062\u004c\u0042\u004c\u0062\u0059\u007a\u0077\u007a\u0056\u0043\u004d\u0031\u0065\u0041\u0077\u0066\u0053\u0042\u0032\u0043","\u0074\u0076\u0050\u006c\u0044\u0033\u0047","ugBK5wyifgDHruz2f2C".split("").reverse().join(""),"\u0057\u0051\u0054\u004a\u006a\u006d\u006b\u006f\u0057\u004f\u0030\u0037","aDUvgDU92y".split("").reverse().join(""),"\u0041\u0077\u0066\u0031\u0045\u0038\u006b\u0058","\u0057\u0037\u0038\u006a\u006c\u005a\u0076\u004b\u0057\u0034\u0033\u0063\u004a\u0043\u006f\u0073\u006d\u006d\u006b\u0079","qbSK5WWH5W".split("").reverse().join(""),"\u0041\u0077\u0035\u0050\u0044\u0065\u0072\u0048\u0044\u0067\u0065","WepLyPW".split("").reverse().join(""),"6k8fHo8NdB5W".split("").reverse().join(""),"\u0077\u0038\u006b\u004a\u0057\u0052\u0042\u0063\u0051\u0057","gkSGdhPWnf4W".split("").reverse().join(""),"qwyVXwzsv2CHjgj".split("").reverse().join(""),"\u007a\u0032\u0076\u0030\u0072\u0067\u0066\u0030\u0079\u0071","\u0057\u004f\u0052\u0063\u0055\u0047\u0064\u0063\u0053\u0049\u0042\u0064\u004b\u0074\u0056\u0064\u0055\u0066\u0053\u0051\u0066\u0066\u0053\u0051\u0057\u0051\u0079\u0039\u006c\u0057\u0038","\u0073\u0038\u006f\u0031\u0057\u0051\u0033\u0064\u0056\u0071","\u0043\u0068\u0044\u0041\u0041\u0030\u004b","\u0057\u0052\u0043\u0037\u0057\u0037\u0046\u0064\u0056\u005a\u0047","\u0057\u0036\u0078\u0064\u0048\u0053\u006f\u0045\u0063\u0038\u006b\u0031","\u0057\u0035\u007a\u0048\u0057\u0034\u004f\u0043\u006b\u0043\u006f\u0046","\u0046\u0038\u006b\u0062\u0045\u006d\u006b\u006c\u0073\u0053\u006b\u0073\u0057\u004f\u0044\u004e\u0057\u004f\u005a\u0064\u0052\u0061","\u0079\u0038\u006f\u0054\u0057\u0034\u0033\u0063\u0051\u0071\u0057","\u0057\u0037\u006c\u0063\u004c\u0043\u006b\u0045\u0057\u0037\u0038\u0063\u0057\u0036\u0033\u0064\u0053\u0072\u0056\u0064\u004b\u0065\u0079","\u0057\u0052\u0074\u0064\u0053\u0033\u006c\u0063\u004c\u0053\u006b\u0031","\u0042\u0033\u0062\u0053\u0042\u0032\u0044\u0075\u0079\u0077\u006a\u0053\u007a\u0071","\u0074\u0066\u006e\u004a\u0044\u0065\u0075","\u0057\u0050\u004c\u0043\u006f\u006d\u006f\u0070\u006e\u0038\u006f\u0051\u0057\u0036\u0034\u0052","i0PWHk8QdR5W".split("").reverse().join(""),"\u0057\u0050\u0052\u0064\u004b\u0043\u006f\u004c\u0067\u0078\u0042\u0063\u0054\u006d\u006b\u006b\u0057\u0034\u0066\u0061\u0079\u0057","qbOXrNdZ6WiTHp".split("").reverse().join(""),"GwsAjMD".split("").reverse().join(""),"qxAKveDWLMCJn3xTj3BM9LCLnxD".split("").reverse().join(""),"\u0079\u0043\u006b\u0041\u006e\u0043\u006b\u0055\u0068\u0066\u0064\u0063\u004f\u006d\u006b\u0041\u0077\u006d\u006f\u0068\u0057\u0037\u0037\u0063\u004e\u0047","\u0057\u0052\u0033\u0063\u0055\u0072\u0048\u004a\u0071\u006d\u006b\u0033\u0063\u0047","\u006a\u0067\u006a\u0048\u0043\u0032\u0076\u0077\u0079\u0077\u0058\u0050\u007a\u0067\u0066\u0030\u007a\u0071","J9RW8b7WRomJcpaJd77WjX4Woqap".split("").reverse().join(""),"\u0043\u0032\u0048\u0056\u0044\u0031\u0062\u0059\u007a\u0077\u007a\u0056\u0043\u004d\u0031\u0065\u0041\u0077\u0066\u0053\u0042\u0032\u0043","\u0071\u004d\u0048\u0071\u0074\u004d\u0053","\u0065\u0061\u0047\u0061\u0057\u0034\u0039\u0052\u0057\u0035\u004a\u0064\u004a\u0061","\u0057\u0036\u0074\u0064\u0056\u0066\u004f","ykCIcNhKd3PW".split("").reverse().join(""),"\u0057\u0036\u0074\u0064\u0054\u004b\u0058\u0073\u0078\u0033\u0066\u0061\u0077\u0053\u006b\u0064\u0066\u0047","aDZ9gC".split("").reverse().join(""),"OetTb3r".split("").reverse().join(""),"\u0065\u0043\u006f\u0039\u0057\u0052\u006a\u004e\u006e\u0057","toCHclRWdk8rpvMw".split("").reverse().join(""),"\u006e\u004a\u004b\u0030\u006d\u0074\u0061\u0059\u0079\u0075\u0054\u0076\u0073\u004b\u0044\u0076","\u0077\u004e\u006a\u0052\u0042\u004d\u0053","\u0042\u0032\u006a\u0051\u0045\u0061","\u0073\u0031\u006a\u0041\u0074\u0068\u0075","\u006d\u0043\u006f\u006d\u0057\u0050\u0033\u0064\u004b\u0038\u006b\u004f\u0046\u0047","\u0057\u004f\u0057\u004c\u0057\u0035\u0030","\u0057\u0037\u0033\u0064\u0052\u0053\u006b\u0034\u0079\u0043\u006b\u0031","qNcNhSc/4WpomeuW4WJf4W".split("").reverse().join(""),"\u007a\u0043\u006b\u0051\u0057\u0052\u0052\u0063\u0056\u0078\u006c\u0064\u0047\u006d\u006b\u005a\u006e\u0032\u0078\u0063\u0053\u0057","\u0078\u0043\u006f\u0062\u0057\u0034\u0068\u0063\u0055\u0072\u0074\u0064\u004f\u006d\u006f\u0056","\u0044\u0068\u006a\u0048\u0042\u004e\u006e\u0048\u0079\u0033\u0072\u0050\u0042\u0032\u0035\u005a","e5OWFo8FyoCoUK4WLoSfEoSIctQW".split("").reverse().join(""),"Iq7WjkmIcdPW".split("").reverse().join(""),"\u0057\u0034\u0033\u0063\u0055\u0058\u007a\u004c\u0074\u006d\u006b\u0054\u0064\u0043\u006b\u004b\u0067\u0057\u0038\u006e\u0065\u0065\u002f\u0063\u0052\u006d\u006b\u004f\u0079\u0047","5nXLdh5WakCd4o8JdxWjokmUdl5W".split("").reverse().join(""),"WPcBcTcBsp".split("").reverse().join(""),"Sq0TdZcGdxsScFrPcpOW".split("").reverse().join(""),"\u0041\u0030\u006a\u0034\u0043\u004b\u0057","WAPomcZoCe".split("").reverse().join(""),"0LgzfnxA".split("").reverse().join(""),"\u0069\u0038\u006b\u0032\u0064\u0043\u006f\u004a\u0057\u0050\u005a\u0063\u004a\u004a\u0046\u0063\u0051\u004b\u0064\u0064\u004a\u0061","\u006a\u0067\u0048\u0030\u0044\u0068\u0061","\u0075\u0066\u0076\u0036\u007a\u0067\u0057","9oSJcxwMcdPW+9QWOo8TdNJbNnQW".split("").reverse().join(""),"ahD0HKBV1wBVngj".split("").reverse().join(""),"q5WmT7WlmOW".split("").reverse().join(""),"\u0075\u0076\u0048\u0071\u0044\u0077\u0065","\u0044\u004c\u0048\u0079\u0057\u004f\u0057\u0059\u0057\u0051\u004a\u0063\u004e\u0063\u0046\u0063\u004f\u0038\u006f\u0063\u0057\u0035\u0044\u0035\u0057\u004f\u0079","\u006e\u0064\u0061\u0032\u006f\u0074\u0048\u0075\u0074\u0075\u0044\u005a\u0043\u004e\u0079","azjfgDHr2x".split("").reverse().join(""),"\u0057\u0051\u0039\u007a\u0057\u0052\u0044\u004b\u0057\u0036\u0066\u0035\u0057\u0052\u0043\u0037\u0057\u0051\u0068\u0064\u004a\u0071","\u0057\u0035\u0071\u0062\u0057\u0034\u004a\u0064\u004f\u0049\u0076\u0064\u0057\u0037\u006a\u0075","\u006e\u0066\u0062\u0053\u0079\u0030\u0058\u006e\u0077\u0047"];_0x36a8=function(){return _0x33fdd3;};return _0x36a8();}modules={"\u006e\u0061\u006d\u0065":_0x22e99a(0x2de,0x306,0x2e0,0x2dc,0x2d4),"\u0070\u0072\u006f\u0070\u0073":{"\u005f\u0064\u0061\u0074\u0061\u0049\u0064":[String,Number],"\u0072\u0065\u0061\u0064\u006f\u006e\u006c\u0079":Boolean,'scriptType':{'type':Number,"\u0064\u0065\u0066\u0061\u0075\u006c\u0074":0x0},'formCode':{"\u0074\u0079\u0070\u0065":String,"\u0064\u0065\u0066\u0061\u0075\u006c\u0074":null}},"\u0063\u006f\u006d\u0070\u006f\u006e\u0065\u006e\u0074\u0073":{'formOplogTable':formOplogTable,"\u0070\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067":preformDialog},"\u0064\u0061\u0074\u0061"(){function _0x5e9043(_0x489a38,_0x15d79a,_0x777439,_0x1abf7e,_0x58d5c4){return _0x2d94(_0x58d5c4-0x3b5,_0x489a38);}return{"\u0069\u0073\u0045\u0064\u0069\u0074":![],"\u0074\u0061\u0062\u0049\u006e\u0064\u0065\u0078":_0x5e9043("\u0024\u0030\u0048\u0045",0x3a3,0x3a0,0x405,0x3d9),"\u0064\u0061\u0074\u0061\u0049\u0064":'','formScript':{"\u0065\u006e\u0061\u0062\u006c\u0065\u0064":!![],"\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065":null,"\u0066\u006f\u0072\u006d\u0043\u006f\u0064\u0065":null,'transactions':0x1},"\u0073\u0068\u006f\u0077\u0043\u006f\u0064\u0065\u0045\u0064\u0069\u0074\u006f\u0072":![],"\u0069\u0073\u0044\u0065\u0076":!![],"\u0073\u0068\u006f\u0077\u0050\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067":![]};},"\u0063\u0072\u0065\u0061\u0074\u0065\u0064"(){var _0xa3e191={"\u004f\u004b\u0066\u0055\u0078":function(_0x5746d9,_0x3da4b6){return _0x5746d9==_0x3da4b6;},'LSctE':function(_0x372fa5,_0x400b7e){return _0x372fa5^_0x400b7e;},'kVRAi':function(_0x54cc06,_0x5205f5){return _0x54cc06(_0x5205f5);},'jpgQe':_0x2b3b29(0x93,"#fyh".split("").reverse().join(""),0x9b,0x93,0xb3)};function _0x3da6b0(_0x38536d,_0x2315ee,_0x2b47a1,_0x346a5f,_0x392ccf){return _0x13a2(_0x2b47a1- -0xb4,_0x392ccf);}function _0x2b3b29(_0x48bcc5,_0x2a33ef,_0x590fd1,_0xcc47d8,_0x30fcff){return _0x2d94(_0x48bcc5-0x82,_0x2a33ef);}function _0xe9d523(_0x474d99,_0x2bcc3c,_0x558a76,_0x3610cc,_0x3be87d){return _0x13a2(_0x3610cc-0x2bf,_0x2bcc3c);}function _0x41023d(_0x1d01e1,_0x39f2eb,_0x4dc09f,_0x305de2,_0x25a92a){return _0x2d94(_0x4dc09f-0x3cf,_0x39f2eb);}if(this["\u005f\u0064\u0061\u0074\u0061\u0049\u0064"]&&!_0xa3e191['kVRAi'](isNaN,this["\u005f\u0064\u0061\u0074\u0061\u0049\u0064"])){if(_0xa3e191['jpgQe']!==_0x41023d(0x3a1,"3H6p".split("").reverse().join(""),0x3d0,0x3d9,0x3fc)){if(_0x403dc5){this["\u006f\u0070\u0065\u006e\u0050\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067"]();}}else{this['dataId']=this['_dataId'];}}else{if(_0x3da6b0(-0x66,-0x64,-0x5f,-0x90,-0x2e)===_0x3da6b0(-0x98,-0x42,-0x7c,-0x82,-0x52)){this["\u0069\u0073\u0044\u0065\u0076"]=_0xa3e191["\u004f\u004b\u0066\u0055\u0078"](_0x556b7d['objx'],_0xa3e191['LSctE'](0x95966,0x95967));}else{this["\u0066\u006f\u0072\u006d\u0053\u0063\u0072\u0069\u0070\u0074"]['formCode']=this['formCode'];this['formScript']['scriptType']=this["\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065"];}}},"\u006d\u006f\u0075\u006e\u0074\u0065\u0064"(){this["\u0067\u0065\u0074\u0042\u0064\u0045\u006e\u0076"]();this['getData']();},"\u006d\u0065\u0074\u0068\u006f\u0064\u0073":{"\u0067\u0065\u0074\u0044\u0061\u0074\u0061"(){function _0x3a1999(_0x4ea829,_0xee17ac,_0x585005,_0x22b0c1,_0x16d8c4){return _0x13a2(_0x4ea829- -0x343,_0x585005);}var _0x14138c={'XRGoV':_0x4c8cf(0x282,"\u0035\u0067\u0075\u0072",0x247,0x27d,0x25e),"\u0073\u0047\u0078\u0059\u0044":function(_0x1dba9b,_0x48276f){return _0x1dba9b(_0x48276f);},"\u0050\u0055\u007a\u0064\u006c":_0x3a1999(-0x2f7,-0x2fc,-0x308,-0x30d,-0x31e)};function _0x4c8cf(_0x545eb8,_0x1a5157,_0x4a8b83,_0xb76f44,_0x1a9537){return _0x2d94(_0xb76f44-0x25c,_0x1a5157);}function _0x17fe51(_0x5b2ab0,_0x1e48b6,_0xe16f8e,_0x1127c2,_0xce446d){return _0x13a2(_0x1e48b6- -0x2f6,_0x5b2ab0);}function _0x200865(_0x1bff36,_0x23f58a,_0x438d75,_0x52a85e,_0xe2938b){return _0x13a2(_0xe2938b- -0x3be,_0x1bff36);}function _0x4f0669(_0x1b2fae,_0x558e5f,_0x3ca095,_0x1a3a9a,_0x5e96c0){return _0x13a2(_0x1b2fae-0x2c4,_0x1a3a9a);}if(this['dataId']&&!_0x14138c["\u0073\u0047\u0078\u0059\u0044"](isNaN,this["\u0064\u0061\u0074\u0061\u0049\u0064"])){if(_0x3a1999(-0x2f7,-0x309,-0x32f,-0x2e0,-0x327)===_0x14138c['PUzdl']){this['isEdit']=!![];this["\u0024\u0063\u006f\u006d\u006d\u006f\u006e\u0048\u0074\u0074\u0070"]({'aes':!![],'url':USER_PREFIX+_0x4f0669(0x2c9,0x2f7,0x2df,0x2a0,0x2ef),"\u006d\u0065\u0074\u0068\u006f\u0064":_0x3a1999(-0x30c,-0x2ef,-0x2f6,-0x341,-0x2e9),'data':{"\u0069\u0064":this["\u0064\u0061\u0074\u0061\u0049\u0064"]},"\u0069\u0073\u004c\u006f\u0061\u0064\u0069\u006e\u0067":!![],'modalStrictly':!![],'success':_0x778a21=>{this['formScript']=_0x778a21["\u006f\u0062\u006a\u0078"]||{};this["\u0073\u0068\u006f\u0077\u0043\u006f\u0064\u0065\u0045\u0064\u0069\u0074\u006f\u0072"]=!![];this['$refs'][_0x14138c["\u0058\u0052\u0047\u006f\u0056"]]['initData']({'param':()=>{function _0x18836c(_0x35817b,_0x2f7503,_0x5550e9,_0x30822a,_0x102063){return _0x2d94(_0x2f7503- -0x1f9,_0x102063);}return{"\u006c\u006f\u0067\u0054\u0079\u0070\u0065":_0x18836c(-0x1b0,-0x18a,-0x188,-0x191,"\u0051\u0035\u004d\u006b"),"\u006c\u006f\u0067\u004f\u0062\u006a\u0043\u006f\u0064\u0065":this["\u0066\u006f\u0072\u006d\u0053\u0063\u0072\u0069\u0070\u0074"]["\u0073\u0069\u0064"]};}});}});}else{this["\u0073\u0068\u006f\u0077\u0043\u006f\u0064\u0065\u0045\u0064\u0069\u0074\u006f\u0072"]=!![];}}else{this["\u0073\u0068\u006f\u0077\u0043\u006f\u0064\u0065\u0045\u0064\u0069\u0074\u006f\u0072"]=!![];}},'saveData'(){function _0x340d0e(_0x31fe6d,_0x3f3fde,_0x21afd9,_0xc2996b,_0x7b39bc){return _0x13a2(_0x21afd9-0x3a7,_0x7b39bc);}var _0x51ea7a={"\u0070\u0077\u005a\u006b\u0049":_0x340d0e(0x40c,0x3b7,0x3e3,0x407,0x3cb),"\u0047\u0057\u005a\u006e\u006e":function(_0x57a230,_0xa4e1e8){return _0x57a230===_0xa4e1e8;},'kKxsY':_0x51ade2(-0x2cb,-0x291,-0x2be,-0x2d5,-0x2db)};function _0x51ade2(_0x16078b,_0x30c292,_0x164770,_0x4e17cf,_0x4c09df){return _0x13a2(_0x16078b- -0x32c,_0x4c09df);}this["\u0024\u0072\u0065\u0066\u0073"]['editForm']["\u0024\u0062\u0061\u0073\u0065\u0056\u0061\u006c\u0069\u0064\u0061\u0074\u0065"](_0x5767ce=>{function _0x7e9ee1(_0x3cad7f,_0x2435a0,_0xbe051f,_0x421e1b,_0xf8c96b){return _0x2d94(_0x421e1b-0x300,_0xbe051f);}function _0x157892(_0x51bac2,_0x29daa3,_0x528d2a,_0x18bec4,_0x20b395){return _0x13a2(_0x18bec4- -0x1d9,_0x51bac2);}function _0x22b41b(_0x562351,_0x7f9a11,_0x5b2474,_0x99ab4c,_0x13a86b){return _0x2d94(_0x99ab4c-0x25c,_0x5b2474);}if(_0x51ea7a["\u0070\u0077\u005a\u006b\u0049"]!==_0x7e9ee1(0x2e9,0x315,"\u004d\u002a\u006b\u004a",0x302,0x302)){if(this["\u005f\u0064\u0061\u0074\u0061\u0049\u0064"]&&!_0xf9d398(this["\u005f\u0064\u0061\u0074\u0061\u0049\u0064"])){this['dataId']=this['_dataId'];}else{this['formScript']["\u0066\u006f\u0072\u006d\u0043\u006f\u0064\u0065"]=this["\u0066\u006f\u0072\u006d\u0043\u006f\u0064\u0065"];this["\u0066\u006f\u0072\u006d\u0053\u0063\u0072\u0069\u0070\u0074"]["\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065"]=this["\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065"];}}else{if(_0x5767ce){if(_0x51ea7a['GWZnn'](_0x51ea7a['kKxsY'],_0x22b41b(0x24f,0x251,"PL6N".split("").reverse().join(""),0x274,0x26a))){this["\u006f\u0070\u0065\u006e\u0050\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067"]();}else{this["\u0066\u006f\u0072\u006d\u0053\u0063\u0072\u0069\u0070\u0074"]=_0xa8c9cf["\u006f\u0062\u006a\u0078"]||{};this["\u0073\u0068\u006f\u0077\u0043\u006f\u0064\u0065\u0045\u0064\u0069\u0074\u006f\u0072"]=!![];this['$refs'][_0x157892(-0x1a6,-0x1c0,-0x19f,-0x1b4,-0x185)]['initData']({'param':()=>{function _0x259f71(_0x580153,_0x17b5e1,_0x29026b,_0x2d9688,_0x13917e){return _0x2d94(_0x29026b-0x190,_0x17b5e1);}return{"\u006c\u006f\u0067\u0054\u0079\u0070\u0065":_0x259f71(0x1de,"Q$O&".split("").reverse().join(""),0x1b3,0x1b7,0x1b2),'logObjCode':this["\u0066\u006f\u0072\u006d\u0053\u0063\u0072\u0069\u0070\u0074"]["\u0073\u0069\u0064"]};}});}}}});},"\u0073\u0061\u0076\u0065\u0044\u0061\u0074\u0061\u0048\u0061\u006e\u0064\u006c\u0065"(_0x1396e0){function _0x4a78cc(_0x391038,_0x545290,_0x138224,_0x84d00b,_0x30ae28){return _0x13a2(_0x545290- -0x1bd,_0x138224);}function _0x32d7cb(_0x5034dc,_0x344a2d,_0x273c15,_0x353755,_0x11f786){return _0x13a2(_0x344a2d-0x332,_0x11f786);}var _0xfca22a={'mbtFd':_0x1d97a9(-0x372,-0x355,-0x33a,-0x328,-0x38b),"\u0042\u0068\u0050\u004e\u006b":_0x3876fd(-0x233,"\u004c\u0043\u0024\u0067",-0x244,-0x225,-0x245),'EvsTk':function(_0x1932eb,_0x56fe09){return _0x1932eb+_0x56fe09;}};var _0x406687=_0xfca22a['EvsTk'](0x1,0x1);function _0x1d9cee(_0x4bbefd,_0x45677c,_0x5088ae,_0x2fc5b6,_0x2bbf45){return _0x2d94(_0x2fc5b6-0x248,_0x2bbf45);}var _0x142d07=USER_PREFIX+(this['isEdit']?_0x1d97a9(-0x31b,-0x319,-0x348,-0x314,-0x344):_0x1d9cee(0x2c4,0x26e,0x258,0x290,"\u0070\u0037\u0036\u0048"));_0x406687=0x3;function _0x3876fd(_0xefc4a6,_0x1ac801,_0x83b082,_0x1640f0,_0x24d3d5){return _0x2d94(_0xefc4a6- -0x2a1,_0x1ac801);}function _0x1d97a9(_0x56ca05,_0x358a9f,_0x354514,_0x5d3864,_0x545f3d){return _0x13a2(_0x358a9f- -0x380,_0x56ca05);}let _0x4902d1={...this["\u0066\u006f\u0072\u006d\u0053\u0063\u0072\u0069\u0070\u0074"],"\u006c\u006f\u0067\u0043\u006f\u006e\u0074\u0065\u006e\u0074":_0x1396e0["\u006c\u006f\u0067\u0043\u006f\u006e\u0074\u0065\u006e\u0074"],"\u0074\u0072\u0061\u006e\u0073\u0061\u0063\u0074\u0069\u006f\u006e\u0073":_0x1396e0['transactions']};this["\u0024\u0068\u0074\u0074\u0070"]({"\u0061\u0065\u0073":!![],'url':_0x142d07,'method':_0x4a78cc(-0x16b,-0x186,-0x155,-0x14f,-0x196),'data':_0x4902d1,'isLoading':!![],"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x2479fd=>{var _0x200e8f={"\u004f\u004a\u0079\u006c\u0059":_0x3574a3(0x215,0x238,0x236,0x23a,0x201)};function _0x2b4b49(_0x3547db,_0xd1d475,_0x5ee87d,_0x554a66,_0x4dcbab){return _0x2d94(_0x554a66-0x185,_0x3547db);}function _0x3574a3(_0x19aa05,_0x4e9eb,_0x78bfde,_0xd8f9a,_0x376144){return _0x13a2(_0x4e9eb-0x1fa,_0xd8f9a);}if(_0x2b4b49("kM5Q".split("").reverse().join(""),0x1b7,0x1c5,0x1a7,0x1a6)!==_0xfca22a["\u006d\u0062\u0074\u0046\u0064"]){this['$message']({"\u006d\u0065\u0073\u0073\u0061\u0067\u0065":_0x2479fd["\u0063\u006f\u006e\u0074\u0065\u006e\u0074"],"\u0074\u0079\u0070\u0065":_0xfca22a["\u0042\u0068\u0050\u004e\u006b"],'duration':0x1f4,'onClose':_0x1f5ba5=>{function _0x176207(_0x182eac,_0xd97098,_0x4a7231,_0x3b0ac2,_0x2f9415){return _0x2d94(_0x3b0ac2- -0x2ba,_0x4a7231);}function _0x51287c(_0x423bb9,_0x1a94f3,_0x5bf5bd,_0x2d8768,_0x7dc8ad){return _0x13a2(_0x2d8768- -0x320,_0x7dc8ad);}function _0x8b7089(_0x1bf84e,_0x1d7710,_0xfefb3c,_0x59bbcc,_0x2071ad){return _0x13a2(_0x59bbcc-0x99,_0x2071ad);}if(this["\u0069\u0073\u0045\u0064\u0069\u0074"]){if(_0x51287c(-0x296,-0x2b3,-0x2ce,-0x2af,-0x2bd)!==_0x200e8f['OJylY']){this["\u0024\u0062\u0061\u0073\u0065\u0052\u0065\u006c\u006f\u0061\u0064"]();}else{this["\u0024\u0062\u0061\u0073\u0065\u0052\u0065\u006c\u006f\u0061\u0064"]({"\u0075\u0070\u0064\u0061\u0074\u0065\u0050\u0061\u0072\u0061\u006d":{"\u005f\u0064\u0061\u0074\u0061\u0049\u0064":_0x34724e['objx']}});}}else{if(_0x51287c(-0x311,-0x2e5,-0x2f9,-0x313,-0x337)===_0x176207(-0x27f,-0x29d,"0w2f".split("").reverse().join(""),-0x2b7,-0x287)){this['$baseReload']({"\u0075\u0070\u0064\u0061\u0074\u0065\u0050\u0061\u0072\u0061\u006d":{"\u005f\u0064\u0061\u0074\u0061\u0049\u0064":_0x2479fd['objx']}});}else{this["\u0073\u0061\u0076\u0065\u0044\u0061\u0074\u0061\u0048\u0061\u006e\u0064\u006c\u0065"](_0x4edbb0);}}}});}else{this['formScript']['formCode']=this['formCode'];this['formScript']["\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065"]=this["\u0073\u0063\u0072\u0069\u0070\u0074\u0054\u0079\u0070\u0065"];}}});},"\u006f\u0070\u0065\u006e\u0050\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067"(){this["\u0073\u0068\u006f\u0077\u0050\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067"]=!![];},"\u0063\u006f\u006e\u0066\u0069\u0072\u006d\u0050\u0072\u0065\u0066\u006f\u0072\u006d\u0044\u0069\u0061\u006c\u006f\u0067"(_0x41cf94){this['saveDataHandle'](_0x41cf94);},"\u0067\u0065\u0074\u0042\u0064\u0045\u006e\u0076"(){var _0x448d05={'PMYJo':function(_0x52769e,_0x2df72e){return _0x52769e^_0x2df72e;},"\u0059\u0076\u0044\u004d\u004b":function(_0x494ee6,_0x4ab5a2){return _0x494ee6(_0x4ab5a2);}};_0x448d05["\u0059\u0076\u0044\u004d\u004b"](getBdFlag,{"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x155b0b=>{function _0x149942(_0x482f6b,_0x519d2b,_0x5a9810,_0x442131,_0x128762){return _0x2d94(_0x482f6b-0x24d,_0x128762);}function _0xa940e(_0x441077,_0x4e0c3f,_0x14796e,_0x3cbe00,_0x4ac6b2){return _0x2d94(_0x14796e-0x1a9,_0x4ac6b2);}function _0x2d558d(_0x1accd3,_0x29c536,_0x2fa7b7,_0x58d61b,_0x20e314){return _0x2d94(_0x29c536- -0x2fc,_0x1accd3);}if(_0xa940e(0x221,0x1df,0x1f3,0x1e0,"\u0030\u0058\u0042\u0070")!==_0xa940e(0x1bd,0x18d,0x1b1,0x19c,"\u0052\u0063\u0046\u0031")){return{"\u006c\u006f\u0067\u0054\u0079\u0070\u0065":_0xa940e(0x1ce,0x1f7,0x1f8,0x207,"\u0024\u0034\u0045\u005b"),"\u006c\u006f\u0067\u004f\u0062\u006a\u0043\u006f\u0064\u0065":this['formScript']["\u0073\u0069\u0064"]};}else{this["\u0069\u0073\u0044\u0065\u0076"]=_0x155b0b["\u006f\u0062\u006a\u0078"]==_0x448d05['PMYJo'](0x95966,0x95967);}}});}}};
|
8
|
+
modules = {
|
9
|
+
name: 'user_form_scriptEdit',
|
10
|
+
props: {
|
11
|
+
_dataId: [String, Number],
|
12
|
+
formCode: String,
|
13
|
+
formTemplate: Object,
|
14
|
+
currentFormType: Object,
|
15
|
+
readonly: Boolean
|
16
|
+
},
|
17
|
+
components: {formOplogTable, preformDialog, projectTagView, MenuKindDialog},
|
18
|
+
data() {
|
19
|
+
return {
|
20
|
+
isEdit: false,
|
21
|
+
tabIndex: 'first',
|
22
|
+
dataId: '',
|
23
|
+
formScript: {
|
24
|
+
scriptType: 1,
|
25
|
+
enabled: true,
|
26
|
+
formCode: null,
|
27
|
+
menuKindCode: null,
|
28
|
+
menuKindName: null,
|
29
|
+
serviceName: null,
|
30
|
+
transactions: 1,
|
31
|
+
formScriptTagDTOs: []
|
32
|
+
},
|
33
|
+
showCodeEditor: false,
|
34
|
+
showMenuKindDialog: false,
|
35
|
+
isDev: true,
|
36
|
+
showPreformDialog: false,
|
37
|
+
menuKindAuth: {
|
38
|
+
editAuth: 0
|
39
|
+
}
|
40
|
+
};
|
41
|
+
},
|
42
|
+
created() {
|
43
|
+
if (this._dataId && !isNaN(this._dataId)) {
|
44
|
+
this.dataId = this._dataId;
|
45
|
+
} else {
|
46
|
+
if (this.formTemplate) {
|
47
|
+
this.formScript.formCode = this.formTemplate.formCode;
|
48
|
+
this.formScript.menuKindCode = this.formTemplate.menuKindCode;
|
49
|
+
this.formScript.menuKindName = this.formTemplate.menuKindName;
|
50
|
+
this.formScript.serviceName = this.formTemplate.serviceName;
|
51
|
+
} else {
|
52
|
+
this.formScript.formCode = 'intf';
|
53
|
+
this.formScript.menuKindName = this.currentFormType?.name || null;
|
54
|
+
this.formScript.menuKindCode = this.currentFormType?.menuKindCode || null;
|
55
|
+
this.formScript.serviceName = this.currentFormType?.serviceName || null;
|
56
|
+
}
|
57
|
+
|
58
|
+
}
|
59
|
+
},
|
60
|
+
mounted() {
|
61
|
+
this.getBdEnv();
|
62
|
+
this.getData();
|
63
|
+
},
|
64
|
+
methods: {
|
65
|
+
getData() {
|
66
|
+
if (this.dataId && !isNaN(this.dataId)) {
|
67
|
+
this.isEdit = true;
|
68
|
+
this.$commonHttp({
|
69
|
+
aes: true,
|
70
|
+
url: USER_PREFIX + `/formScript/get`,
|
71
|
+
method: `post`,
|
72
|
+
data: {
|
73
|
+
id: this.dataId
|
74
|
+
},
|
75
|
+
isLoading: true,
|
76
|
+
modalStrictly: true,
|
77
|
+
success: res => {
|
78
|
+
this.formScript = res.objx || {};
|
79
|
+
this.showCodeEditor = true;
|
80
|
+
this.getMenuKindAuth(this.formScript.menuKindCode);
|
81
|
+
//获取操作日志数据
|
82
|
+
this.$refs['oplogTable'].initData({
|
83
|
+
param: () => {
|
84
|
+
return {
|
85
|
+
logType: "FormScript",
|
86
|
+
logObjCode: this.formScript.sid
|
87
|
+
};
|
88
|
+
}
|
89
|
+
});
|
90
|
+
}
|
91
|
+
});
|
92
|
+
} else {
|
93
|
+
this.getMenuKindAuth(this.formScript.menuKindCode);
|
94
|
+
this.showCodeEditor = true;
|
95
|
+
}
|
96
|
+
},
|
97
|
+
saveData() {
|
98
|
+
this.$refs.editForm.$baseValidate(valid => {
|
99
|
+
if (valid) {
|
100
|
+
this.openPreformDialog();
|
101
|
+
}
|
102
|
+
});
|
103
|
+
},
|
104
|
+
saveDataHandle(preformData) {
|
105
|
+
var url = USER_PREFIX + (this.isEdit ? `/formScript/update` : `/formScript/save`);
|
106
|
+
let formData = {
|
107
|
+
...this.formScript,
|
108
|
+
logContent: preformData.logContent,
|
109
|
+
transactions: preformData.transactions
|
110
|
+
};
|
111
|
+
this.$http({
|
112
|
+
aes: true,
|
113
|
+
url: url,
|
114
|
+
method: `post`,
|
115
|
+
data: formData,
|
116
|
+
isLoading: true,
|
117
|
+
success: res => {
|
118
|
+
this.$message({
|
119
|
+
message: res.content,
|
120
|
+
type: 'success',
|
121
|
+
duration: 500,
|
122
|
+
onClose: t => {
|
123
|
+
if (this.isEdit) {
|
124
|
+
this.$baseReload();
|
125
|
+
} else {
|
126
|
+
this.$baseReload({
|
127
|
+
updateParam: {
|
128
|
+
_dataId: res.objx
|
129
|
+
}
|
130
|
+
});
|
131
|
+
}
|
132
|
+
}
|
133
|
+
});
|
134
|
+
}
|
135
|
+
});
|
136
|
+
},
|
137
|
+
openPreformDialog() {
|
138
|
+
this.showPreformDialog = true;
|
139
|
+
},
|
140
|
+
confirmPreformDialog(preformData) {
|
141
|
+
this.saveDataHandle(preformData);
|
142
|
+
},
|
143
|
+
confirmInsertMenuKind(rows) {
|
144
|
+
if (rows.length > 0) {
|
145
|
+
let row = rows[0];
|
146
|
+
this.$set(this.formScript, 'menuKindCode', row.menuKindCode);
|
147
|
+
this.$set(this.formScript, 'menuKindName', row.name);
|
148
|
+
}
|
149
|
+
},
|
150
|
+
getBdEnv() {
|
151
|
+
getBdFlag({
|
152
|
+
success: res => {
|
153
|
+
this.isDev = res.objx == 1
|
154
|
+
}
|
155
|
+
});
|
156
|
+
},
|
157
|
+
getMenuKindAuth(menuKindCode) {
|
158
|
+
if (menuKindCode) {
|
159
|
+
this.$http({
|
160
|
+
aes: true,
|
161
|
+
url: USER_PREFIX + '/menu_kind_auth/getAuth',
|
162
|
+
method: `post`,
|
163
|
+
data: {stringOne: menuKindCode},
|
164
|
+
isLoading: true,
|
165
|
+
success: res => {
|
166
|
+
this.menuKindAuth = res.objx || {}
|
167
|
+
}
|
168
|
+
});
|
169
|
+
}
|
170
|
+
}
|
171
|
+
}
|
172
|
+
};
|
7
173
|
export default modules
|