cloud-web-corejs-haier 1.0.4 → 1.0.6
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 +7 -4
- package/src/App.vue +30 -34
- package/src/api/user.js +8 -0
- package/src/components/Tinymce/index.vue +112 -71
- package/src/components/VabUpload/image-viewer.vue +2 -2
- package/src/components/VabUpload/index.js +1 -1
- package/src/components/VabUpload/mixins.js +1 -1
- package/src/components/VabUpload/privateProfileDialogMixins.js +1 -1063
- package/src/components/VabUpload/view.vue +6 -2
- package/src/components/base-textarea/index.vue +104 -0
- package/src/components/baseAlert/mixins.js +1 -1
- package/src/components/baseAttachment/mixins.js +2 -1
- package/src/components/baseInputExport/index.vue +19 -12
- package/src/components/baseInputExport/mixins.js +1 -1
- package/src/components/baseTabs/mixins.js +1 -1
- package/src/components/code-editor/index.vue +102 -63
- package/src/components/confirmDialog/index.vue +24 -17
- package/src/components/confirmDialog/mixins.js +1 -1
- package/src/components/errorMsg/index.vue +42 -34
- package/src/components/errorMsg/mixins.js +1 -1
- package/src/components/excelExport/index.js +1 -2
- package/src/components/excelExport/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjAuthDialog.vue +179 -89
- package/src/components/fileLibrary/filterDialog.vue +45 -21
- package/src/components/fileLibrary/index.vue +579 -238
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +4 -1
- package/src/components/fileLibrary/mixins/indexMixins.js +3 -0
- package/src/components/scriptDescription/button.vue +12 -4
- package/src/components/scriptTest/mixins.js +1 -1
- package/src/components/table/index.js +1 -1
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min.js +11028 -0
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.min.css +200 -0
- package/src/components/tempStorage/index.vue +1 -1
- package/src/components/vb-tabs/x-tabs.vue +0 -1
- package/src/components/wf/content.vue +32 -36
- package/src/components/wf/mixins/setCandidateDialog2.js +1 -1
- package/src/components/wf/mixins/wfFlowEleScriptDialog.js +131 -3
- package/src/components/wf/setCandidateDialog2.vue +76 -66
- package/src/components/wf/wf.js +2176 -1
- package/src/components/wf/wfFlowEleScriptDialog.vue +5 -1
- package/src/components/wf/wfStartDialog.vue +6 -10
- package/src/components/wf/wfUtil.js +279 -1
- package/src/components/xform/form-designer/designer.js +1 -1
- package/src/components/xform/form-designer/form-widget/components/gantt/index.vue +16 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1 -1
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +17 -4
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +247 -187
- package/src/components/xform/form-designer/form-widget/field-widget/gantt-widget.vue +2 -0
- package/src/components/xform/form-designer/form-widget/field-widget/html-text-widget.vue +6 -2
- package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +10 -0
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +65 -4
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +132 -118
- package/src/components/xform/form-designer/setting-panel/property-editor/autoValueEnabled-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +137 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +124 -50
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +5 -1
- package/src/components/xform/form-render/index.vue +8 -0
- package/src/components/xform/form-render/indexMixin copy.js +3462 -0
- package/src/components/xform/form-render/indexMixin.js +3496 -1
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/utils/format.js +14 -4
- package/src/components/xform/utils/formula-util.js +0 -4
- package/src/components/xform/utils/util.js +1 -1
- package/src/index.js +215 -190
- package/src/lang/index.js +56 -51
- package/src/lang/locale/en/login.js +20 -0
- package/src/lang/locale/zh/login.js +20 -0
- package/src/layout/components/Sidebar/default.vue +1423 -1266
- package/src/layout/components/TagsView/index.vue +37 -11
- package/src/layout/components/createCompany/createCompanyDialog.vue +157 -0
- package/src/layout/components/extractedCode/viewDialog.vue +1 -0
- package/src/layout/defaultLayout.vue +1 -1
- package/src/layout/index.vue +3 -5
- package/src/mixins/table/index.js +151 -0
- package/src/permission.js +1 -18
- package/src/router/modules/customer.js +3 -8
- package/src/store/getters.js +24 -23
- package/src/store/modules/user.js +1 -30
- package/src/utils/index.js +1 -6
- package/src/utils/vab.js +1 -1
- package/src/views/bd/setting/config_manage/list.vue +36 -19
- package/src/views/bd/setting/form_script/edit.vue +9 -0
- package/src/views/bd/setting/form_script/edit1.vue +29 -3
- package/src/views/bd/setting/form_script/form_list.vue +99 -37
- package/src/views/bd/setting/form_script/list1.vue +181 -118
- package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +199 -1
- package/src/views/bd/setting/form_script/mixins/edit1.js +193 -1
- package/src/views/bd/setting/form_script/mixins/list.js +236 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +410 -1
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +194 -0
- package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/edit.vue +13 -0
- package/src/views/bd/setting/form_template/list.vue +326 -214
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +279 -1
- package/src/views/bd/setting/form_template/mixins/edit.js +234 -9
- package/src/views/bd/setting/form_template/mixins/list.js +667 -3
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +193 -0
- package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/logic_param/mixins/edit.js +1 -91
- package/src/views/bd/setting/logic_param/mixins/list.js +2 -362
- package/src/views/bd/setting/menu_kind/list.vue +172 -87
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +300 -7
- package/src/views/bd/setting/table_model/edit.vue +345 -304
- package/src/views/bd/setting/table_model/list.vue +190 -128
- package/src/views/bd/setting/table_model/mixins/edit.js +1191 -1
- package/src/views/bd/setting/table_model/mixins/list.js +428 -2
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +201 -0
- package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
- package/src/views/user/access_log/list.vue +418 -349
- package/src/views/user/area/dialog.vue +223 -116
- package/src/views/user/area/list.vue +318 -0
- package/src/views/user/common_attribute/list.vue +4 -1
- package/src/views/user/extend_datasource/dialog.vue +3 -0
- package/src/views/user/extend_datasource/edit.vue +2 -1
- package/src/views/user/extend_datasource/list.vue +3 -0
- package/src/views/user/form/vform/designer.vue +2 -1
- package/src/views/user/home/bears/index.vue +1032 -0
- package/src/views/user/home/default.vue +6 -5
- package/src/views/user/home/taili/index.vue +1034 -0
- package/src/views/user/ledger_library/list.vue +10 -12
- package/src/views/user/login/default.vue +165 -36
- package/src/views/user/login/index.vue +4 -6
- package/src/views/user/login/indexMixin.js +184 -8
- package/src/views/user/menu/list.vue +24 -1
- package/src/views/user/notify_message/dialog.vue +2 -6
- package/src/views/user/outLink/index.vue +57 -18
- package/src/views/user/role/authConfig.vue +89 -0
- package/src/views/user/role/dialog.vue +70 -48
- package/src/views/user/role/edit.vue +114 -4
- package/src/views/user/user/form_dialog.vue +158 -0
- package/src/views/user/user/list.vue +652 -582
- package/src/views/user/user/modifyPasswordDialog.vue +64 -53
- package/src/views/user/wf/wfReport/index.vue +137 -28
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +15 -116
- package/src/views/user/wf/wf_obj_config/itemOperateDialog.vue +414 -0
- package/src/views/user/wf/wf_obj_config/list.vue +84 -78
- package/src/views/user/wf/wf_transfer_setting/edit.vue +52 -0
- package/src/views/user/wf/wf_transfer_setting/list.vue +10 -0
- package/src/components/xform/form-render/container-item/data-table-mixin2.js +0 -2169
- package/src/views/bd/setting/table_model/mixins/edit copy.js +0 -903
- package/src/views/user/login/index2.vue +0 -131
|
@@ -3,10 +3,20 @@
|
|
|
3
3
|
<el-form ref="editForm" :model="szTaMb">
|
|
4
4
|
<div class="d-header clearfix">
|
|
5
5
|
<div class="fl">
|
|
6
|
-
<i class="el-icon-info"
|
|
6
|
+
<i class="el-icon-info"/>
|
|
7
7
|
{{ dataId ? $t1("查看数据表定义模板") : $t1("新增数据表定义模板") }}
|
|
8
8
|
</div>
|
|
9
9
|
<div class="fr">
|
|
10
|
+
<el-button
|
|
11
|
+
type="primary"
|
|
12
|
+
plain
|
|
13
|
+
class="button-sty"
|
|
14
|
+
icon="el-icon-set-up"
|
|
15
|
+
@click="openOtherAuthDialog"
|
|
16
|
+
v-if="isDev && !!dataId && menuKindAuth.editAuth === 1 && !readonly && !otherFlag"
|
|
17
|
+
>
|
|
18
|
+
{{ $t1("分派") }}
|
|
19
|
+
</el-button>
|
|
10
20
|
<el-button
|
|
11
21
|
type="primary"
|
|
12
22
|
plain
|
|
@@ -72,205 +82,219 @@
|
|
|
72
82
|
<template #default>
|
|
73
83
|
<table class="table-detail">
|
|
74
84
|
<tbody>
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
</el-radio
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
85
|
+
<tr>
|
|
86
|
+
<th>{{ $t1('数据库表名') }}</th>
|
|
87
|
+
<td colspan="3">
|
|
88
|
+
<el-form-item prop="taBm" :rules="[{ required: false, trigger: ['blur', 'change'] }]">
|
|
89
|
+
<el-input type="text" autocomplete="off" v-model="szTaMb.taBm" clearable :disabled="!!dataId"/>
|
|
90
|
+
</el-form-item>
|
|
91
|
+
</td>
|
|
92
|
+
</tr>
|
|
93
|
+
<tr>
|
|
94
|
+
<th class="no"></th>
|
|
95
|
+
<td colspan="7">
|
|
96
|
+
<span class="fl tips">{{
|
|
97
|
+
$t1('注:数据库表名必须定义为:1、与实体名称一样,2、表单分类数据表前缀_实体名称,3、不填自动生成:表单分类数据表前缀_实体名称。')
|
|
98
|
+
}}</span>
|
|
99
|
+
</td>
|
|
100
|
+
</tr>
|
|
101
|
+
<tr>
|
|
102
|
+
<th>
|
|
103
|
+
<em class="f-red">*</em>
|
|
104
|
+
{{ $t1("实体名称") }}
|
|
105
|
+
</th>
|
|
106
|
+
<td colspan="3">
|
|
107
|
+
<el-form-item
|
|
108
|
+
prop="taEn"
|
|
109
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
|
110
|
+
>
|
|
111
|
+
<el-input
|
|
112
|
+
type="text"
|
|
113
|
+
autocomplete="off"
|
|
114
|
+
v-model="szTaMb.taEn"
|
|
115
|
+
clearable
|
|
116
|
+
/>
|
|
117
|
+
</el-form-item>
|
|
118
|
+
</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<th><em class="f-red">*</em>{{ $t1("表描述") }}</th>
|
|
122
|
+
<td colspan="5">
|
|
123
|
+
<el-form-item
|
|
124
|
+
prop="taCh"
|
|
125
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
|
126
|
+
>
|
|
127
|
+
<el-input
|
|
128
|
+
type="text"
|
|
129
|
+
autocomplete="off"
|
|
130
|
+
v-model="szTaMb.taCh"
|
|
131
|
+
clearable
|
|
132
|
+
/>
|
|
133
|
+
</el-form-item>
|
|
134
|
+
</td>
|
|
135
|
+
</tr>
|
|
136
|
+
<tr>
|
|
137
|
+
<th><em class="f-red">*</em>{{ $t1("是否明细") }}</th>
|
|
138
|
+
<td>
|
|
139
|
+
<el-form-item
|
|
140
|
+
prop="taType"
|
|
141
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
|
142
|
+
>
|
|
143
|
+
<el-radio-group v-model="szTaMb.taType">
|
|
144
|
+
<el-radio :label="1">{{ $t1("是") }}</el-radio>
|
|
145
|
+
<el-radio :label="0">{{ $t1("否") }}</el-radio>
|
|
146
|
+
</el-radio-group>
|
|
147
|
+
</el-form-item>
|
|
148
|
+
</td>
|
|
149
|
+
<th>
|
|
150
|
+
<em class="f-red" v-show="szTaMb.taType === 1">*</em>
|
|
151
|
+
{{ $t1("所属主实体") }}
|
|
152
|
+
</th>
|
|
153
|
+
<td colspan="3">
|
|
154
|
+
<el-form-item
|
|
155
|
+
prop="sszstEn"
|
|
156
|
+
:rules="[
|
|
145
157
|
{
|
|
146
158
|
required: szTaMb.taType === 1,
|
|
147
159
|
trigger: ['blur', 'change'],
|
|
148
160
|
},
|
|
149
161
|
]"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
162
|
+
>
|
|
163
|
+
<el-input
|
|
164
|
+
class="search-input"
|
|
165
|
+
max="200"
|
|
166
|
+
v-model="szTaMb.sszstEn"
|
|
167
|
+
@clear="
|
|
156
168
|
szTaMb.sszst = null;
|
|
157
169
|
szTaMb.sszstBm = null;
|
|
158
170
|
$forceUpdate();
|
|
159
171
|
"
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
>
|
|
164
|
-
<i
|
|
165
|
-
slot="suffix"
|
|
166
|
-
class="el-input__icon el-icon-search"
|
|
167
|
-
@click="showSzTaMbDialog = true"
|
|
168
|
-
></i>
|
|
169
|
-
</el-input>
|
|
170
|
-
</el-form-item>
|
|
171
|
-
</td>
|
|
172
|
-
</tr>
|
|
173
|
-
<tr>
|
|
174
|
-
<th><em class="f-red">*</em>{{ $t1("是否树结构") }}</th>
|
|
175
|
-
<td>
|
|
176
|
-
<el-form-item
|
|
177
|
-
prop="taRule"
|
|
178
|
-
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
|
172
|
+
:disabled="szTaMb.taType == 0"
|
|
173
|
+
v-el-readonly
|
|
174
|
+
clearable
|
|
179
175
|
>
|
|
180
|
-
<
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
176
|
+
<i
|
|
177
|
+
slot="suffix"
|
|
178
|
+
class="el-input__icon el-icon-search"
|
|
179
|
+
@click="showSzTaMbDialog = true"
|
|
180
|
+
></i>
|
|
181
|
+
</el-input>
|
|
182
|
+
</el-form-item>
|
|
183
|
+
</td>
|
|
184
|
+
</tr>
|
|
185
|
+
<tr>
|
|
186
|
+
<th><em class="f-red">*</em>{{ $t1("是否树结构") }}</th>
|
|
187
|
+
<td>
|
|
188
|
+
<el-form-item
|
|
189
|
+
prop="taRule"
|
|
190
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
|
191
|
+
>
|
|
192
|
+
<el-radio-group
|
|
193
|
+
v-model="szTaMb.taRule"
|
|
194
|
+
@change="changeTaRule"
|
|
194
195
|
>
|
|
195
|
-
<el-radio
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
196
|
+
<el-radio :label="1">{{ $t1("是") }}</el-radio>
|
|
197
|
+
<el-radio :label="0">{{ $t1("否") }}</el-radio>
|
|
198
|
+
</el-radio-group>
|
|
199
|
+
</el-form-item>
|
|
200
|
+
</td>
|
|
201
|
+
<th><em class="f-red">*</em>{{ $t1("数据范围") }}</th>
|
|
202
|
+
<td colspan="3">
|
|
203
|
+
<el-form-item
|
|
204
|
+
prop="dataRange"
|
|
205
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
|
206
|
+
>
|
|
207
|
+
<el-radio-group v-model="szTaMb.dataRange">
|
|
208
|
+
<el-radio :label="1">{{ $t1("集团") }}</el-radio>
|
|
209
|
+
<el-radio :label="0">{{ $t1("当前组织") }}</el-radio>
|
|
210
|
+
</el-radio-group>
|
|
211
|
+
</el-form-item>
|
|
212
|
+
</td>
|
|
213
|
+
</tr>
|
|
214
|
+
<tr>
|
|
215
|
+
<th>
|
|
216
|
+
<em class="f-red">*</em>
|
|
217
|
+
{{ $t1("表单分类") }}
|
|
218
|
+
</th>
|
|
219
|
+
<td colspan="5">
|
|
220
|
+
<el-form-item
|
|
221
|
+
prop="menuKindName"
|
|
222
|
+
:rules="[
|
|
211
223
|
{
|
|
212
224
|
required: true,
|
|
213
225
|
trigger: ['blur', 'change'],
|
|
214
226
|
},
|
|
215
227
|
]"
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
228
|
+
>
|
|
229
|
+
<el-input
|
|
230
|
+
class="search-input"
|
|
231
|
+
max="200"
|
|
232
|
+
v-model="szTaMb.menuKindName"
|
|
233
|
+
@clear="
|
|
222
234
|
szTaMb.menuKindCode = '';
|
|
223
235
|
$forceUpdate();
|
|
224
236
|
"
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
</el-
|
|
235
|
-
</
|
|
236
|
-
</
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
</
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
<
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
237
|
+
v-el-readonly
|
|
238
|
+
clearable
|
|
239
|
+
:disabled="otherFlag"
|
|
240
|
+
>
|
|
241
|
+
<i
|
|
242
|
+
slot="suffix"
|
|
243
|
+
class="el-input__icon el-icon-search"
|
|
244
|
+
@click="showMenuKindDialog = true"
|
|
245
|
+
></i>
|
|
246
|
+
</el-input>
|
|
247
|
+
</el-form-item>
|
|
248
|
+
</td>
|
|
249
|
+
</tr>
|
|
250
|
+
<tr>
|
|
251
|
+
<th>
|
|
252
|
+
{{ $t1("项目标签") }}
|
|
253
|
+
</th>
|
|
254
|
+
<td colspan="7">
|
|
255
|
+
<projectTagView
|
|
256
|
+
v-model="szTaMb.szTaMbTagDTOs"
|
|
257
|
+
></projectTagView>
|
|
258
|
+
</td>
|
|
259
|
+
</tr>
|
|
260
|
+
<tr>
|
|
261
|
+
<th>{{ $t1('是否启用') }}</th>
|
|
262
|
+
<td>
|
|
263
|
+
<el-form-item prop="enabled" :rules="[{ required: false, trigger: 'blur' }]">
|
|
264
|
+
<el-radio-group v-model="szTaMb.enabled">
|
|
265
|
+
<el-radio :label="true">{{ $t1('启用') }}</el-radio>
|
|
266
|
+
<el-radio :label="false">{{ $t1('禁用') }}</el-radio>
|
|
267
|
+
</el-radio-group>
|
|
268
|
+
</el-form-item>
|
|
269
|
+
</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<th>
|
|
273
|
+
{{ $t1("服务名") }}
|
|
274
|
+
</th>
|
|
275
|
+
<td colspan="7">
|
|
276
|
+
{{ szTaMb.serviceName }}
|
|
277
|
+
</td>
|
|
278
|
+
</tr>
|
|
255
279
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
280
|
+
<tr>
|
|
281
|
+
<th>
|
|
282
|
+
{{ $t1("唯一标识") }}
|
|
283
|
+
</th>
|
|
284
|
+
<td colspan="7">
|
|
285
|
+
{{ szTaMb.sid }}
|
|
286
|
+
</td>
|
|
287
|
+
</tr>
|
|
288
|
+
<tr>
|
|
289
|
+
<th>{{ $t1("创建人") }}</th>
|
|
290
|
+
<td>{{ szTaMb.createBy }}</td>
|
|
291
|
+
<th>{{ $t1("创建时间") }}</th>
|
|
292
|
+
<td>{{ szTaMb.createDate }}</td>
|
|
293
|
+
<th>{{ $t1("更新人") }}</th>
|
|
294
|
+
<td>{{ szTaMb.modifyBy }}</td>
|
|
295
|
+
<th>{{ $t1("更新时间") }}</th>
|
|
296
|
+
<td>{{ szTaMb.modifyDate }}</td>
|
|
297
|
+
</tr>
|
|
274
298
|
</tbody>
|
|
275
299
|
</table>
|
|
276
300
|
</template>
|
|
@@ -281,7 +305,8 @@
|
|
|
281
305
|
class="button-sty"
|
|
282
306
|
@click="addTaMbItems"
|
|
283
307
|
icon="el-icon-plus"
|
|
284
|
-
|
|
308
|
+
>{{ $t1("新增") }}
|
|
309
|
+
</el-button
|
|
285
310
|
>
|
|
286
311
|
</template>
|
|
287
312
|
<template #default>
|
|
@@ -323,6 +348,18 @@
|
|
|
323
348
|
></el-option>
|
|
324
349
|
</el-select>
|
|
325
350
|
</template>
|
|
351
|
+
<template #zdLength="{ row, rowIndex }">
|
|
352
|
+
<el-form-item
|
|
353
|
+
:prop="'szTaZdMbDTOs.' + rowIndex + '.zdLength'"
|
|
354
|
+
:rules="[{ required: false, trigger: ['blur', 'change'] }]"
|
|
355
|
+
>
|
|
356
|
+
<el-input
|
|
357
|
+
v-model="row.zdLength"
|
|
358
|
+
clearable
|
|
359
|
+
:disabled="!!row.systems || !!row.relationZd"
|
|
360
|
+
/>
|
|
361
|
+
</el-form-item>
|
|
362
|
+
</template>
|
|
326
363
|
<template #referenceZd="{ row, rowIndex, $table }">
|
|
327
364
|
<el-input
|
|
328
365
|
class="search-input"
|
|
@@ -330,6 +367,7 @@
|
|
|
330
367
|
v-el-readonly
|
|
331
368
|
v-if="row.zdType == 'Reference'"
|
|
332
369
|
:disabled="!row.zdEn"
|
|
370
|
+
clearable
|
|
333
371
|
>
|
|
334
372
|
<i
|
|
335
373
|
slot="suffix"
|
|
@@ -356,7 +394,7 @@
|
|
|
356
394
|
:style="!!row.relationZd ? 'padding-left:20px' : ''"
|
|
357
395
|
>
|
|
358
396
|
<el-input v-model="row.zdEn" @keydown.native="inputZdEn(row)"
|
|
359
|
-
@input="(val)=>{changeZdEn(val,row)}"
|
|
397
|
+
@input="(val)=>{changeZdEn(val,row)}"/>
|
|
360
398
|
</el-form-item>
|
|
361
399
|
</template>
|
|
362
400
|
</template>
|
|
@@ -474,14 +512,14 @@
|
|
|
474
512
|
</div>
|
|
475
513
|
<table class="table-detail">
|
|
476
514
|
<tbody>
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
515
|
+
<tr>
|
|
516
|
+
<th>
|
|
517
|
+
{{ $t1("表编码") }}
|
|
518
|
+
</th>
|
|
519
|
+
<td colspan="7">
|
|
520
|
+
{{ szTaMb.taCode }}
|
|
521
|
+
</td>
|
|
522
|
+
</tr>
|
|
485
523
|
</tbody>
|
|
486
524
|
</table>
|
|
487
525
|
</template>
|
|
@@ -531,86 +569,86 @@
|
|
|
531
569
|
<div id="containt">
|
|
532
570
|
<table class="table-detail">
|
|
533
571
|
<tbody>
|
|
534
|
-
|
|
535
|
-
|
|
572
|
+
<tr>
|
|
573
|
+
<th>
|
|
536
574
|
<span class="t">
|
|
537
575
|
{{ $t1("关联表") }}
|
|
538
576
|
</span>
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
577
|
+
</th>
|
|
578
|
+
<td>
|
|
579
|
+
<el-form-item label="">
|
|
580
|
+
<el-input
|
|
581
|
+
class="search-input"
|
|
582
|
+
max="200"
|
|
583
|
+
v-model="referenceEntity"
|
|
584
|
+
@clear="
|
|
547
585
|
referenceKey = null;
|
|
548
586
|
refServiceName = null;
|
|
549
587
|
referenceShowFields = [];
|
|
550
588
|
$forceUpdate();
|
|
551
589
|
"
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
590
|
+
v-el-readonly
|
|
591
|
+
clearable
|
|
592
|
+
>
|
|
593
|
+
<i
|
|
594
|
+
slot="suffix"
|
|
595
|
+
class="el-input__icon el-icon-search"
|
|
596
|
+
@click="showEntityDialog = true"
|
|
597
|
+
></i>
|
|
598
|
+
</el-input>
|
|
599
|
+
</el-form-item>
|
|
600
|
+
</td>
|
|
601
|
+
</tr>
|
|
602
|
+
<tr>
|
|
603
|
+
<th>
|
|
566
604
|
<span class="t">
|
|
567
605
|
{{ $t1("关联字段") }}
|
|
568
606
|
</span>
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
607
|
+
</th>
|
|
608
|
+
<td>
|
|
609
|
+
<el-form-item label="">
|
|
610
|
+
<el-input
|
|
611
|
+
class="search-input"
|
|
612
|
+
max="200"
|
|
613
|
+
v-model="referenceKey"
|
|
614
|
+
@clear="referenceKey = null"
|
|
615
|
+
v-el-readonly
|
|
616
|
+
clearable
|
|
617
|
+
>
|
|
618
|
+
<i
|
|
619
|
+
slot="suffix"
|
|
620
|
+
class="el-input__icon el-icon-search"
|
|
621
|
+
@click="openEntityFieldDialog1"
|
|
622
|
+
></i>
|
|
623
|
+
</el-input>
|
|
624
|
+
</el-form-item>
|
|
625
|
+
</td>
|
|
626
|
+
</tr>
|
|
627
|
+
<tr>
|
|
628
|
+
<th>
|
|
591
629
|
<span class="t">
|
|
592
630
|
{{ $t1("显示字段") }}
|
|
593
631
|
</span>
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
632
|
+
</th>
|
|
633
|
+
<td>
|
|
634
|
+
<el-form-item label="">
|
|
635
|
+
<el-input
|
|
636
|
+
class="search-input"
|
|
637
|
+
max="200"
|
|
638
|
+
:value="referenceShowFields.join(',')"
|
|
639
|
+
@clear="referenceShowFields = []"
|
|
640
|
+
v-el-readonly
|
|
641
|
+
clearable
|
|
642
|
+
>
|
|
643
|
+
<i
|
|
644
|
+
slot="suffix"
|
|
645
|
+
class="el-input__icon el-icon-search"
|
|
646
|
+
@click="openEntityFieldDialog2"
|
|
647
|
+
></i>
|
|
648
|
+
</el-input>
|
|
649
|
+
</el-form-item>
|
|
650
|
+
</td>
|
|
651
|
+
</tr>
|
|
614
652
|
</tbody>
|
|
615
653
|
</table>
|
|
616
654
|
</div>
|
|
@@ -690,7 +728,7 @@
|
|
|
690
728
|
style="height: auto; width: auto"
|
|
691
729
|
>
|
|
692
730
|
<el-form-item :label="$t1('数据表')">
|
|
693
|
-
<el-input v-model="dbTable" clearable class="all-width"
|
|
731
|
+
<el-input v-model="dbTable" clearable class="all-width"/>
|
|
694
732
|
</el-form-item>
|
|
695
733
|
</el-form>
|
|
696
734
|
</div>
|
|
@@ -711,8 +749,11 @@
|
|
|
711
749
|
</span>
|
|
712
750
|
</el-dialog>
|
|
713
751
|
|
|
714
|
-
|
|
715
|
-
|
|
752
|
+
<otherAuthDialog v-if="showOtherAuthDialog" :visiable.sync="showOtherAuthDialog" :sid="sid"
|
|
753
|
+
@confirm="confirmOtherAuthDialog"></otherAuthDialog>
|
|
754
|
+
|
|
755
|
+
<!--begin-->
|
|
756
|
+
<el-dialog
|
|
716
757
|
:title="$t1('数据值对应表字段')"
|
|
717
758
|
v-if="showToTaBmZdDialog"
|
|
718
759
|
:visible.sync="showToTaBmZdDialog"
|
|
@@ -727,59 +768,59 @@
|
|
|
727
768
|
<div id="containt">
|
|
728
769
|
<table class="table-detail">
|
|
729
770
|
<tbody>
|
|
730
|
-
|
|
731
|
-
|
|
771
|
+
<tr>
|
|
772
|
+
<th>
|
|
732
773
|
<span class="t">
|
|
733
774
|
{{ $t1("对应表") }}
|
|
734
775
|
</span>
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
776
|
+
</th>
|
|
777
|
+
<td>
|
|
778
|
+
<el-form-item label="">
|
|
779
|
+
<el-input
|
|
780
|
+
class="search-input"
|
|
781
|
+
max="200"
|
|
782
|
+
v-model="toTaBmZdEntity"
|
|
783
|
+
@clear="
|
|
743
784
|
toTaBmZdEntity = null;
|
|
744
785
|
toTaBmZdField = null;
|
|
745
786
|
"
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
787
|
+
v-el-readonly
|
|
788
|
+
clearable
|
|
789
|
+
>
|
|
790
|
+
<i
|
|
791
|
+
slot="suffix"
|
|
792
|
+
class="el-input__icon el-icon-search"
|
|
793
|
+
@click="showEntityDialog3 = true"
|
|
794
|
+
></i>
|
|
795
|
+
</el-input>
|
|
796
|
+
</el-form-item>
|
|
797
|
+
</td>
|
|
798
|
+
</tr>
|
|
799
|
+
<tr>
|
|
800
|
+
<th>
|
|
760
801
|
<span class="t">
|
|
761
802
|
{{ $t1("对应表字段") }}
|
|
762
803
|
</span>
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
804
|
+
</th>
|
|
805
|
+
<td>
|
|
806
|
+
<el-form-item label="">
|
|
807
|
+
<el-input
|
|
808
|
+
class="search-input"
|
|
809
|
+
max="200"
|
|
810
|
+
v-model="toTaBmZdField"
|
|
811
|
+
@clear="toTaBmZdField = null"
|
|
812
|
+
v-el-readonly
|
|
813
|
+
clearable
|
|
814
|
+
>
|
|
815
|
+
<i
|
|
816
|
+
slot="suffix"
|
|
817
|
+
class="el-input__icon el-icon-search"
|
|
818
|
+
@click="openEntityFieldDialog3"
|
|
819
|
+
></i>
|
|
820
|
+
</el-input>
|
|
821
|
+
</el-form-item>
|
|
822
|
+
</td>
|
|
823
|
+
</tr>
|
|
783
824
|
</tbody>
|
|
784
825
|
</table>
|
|
785
826
|
</div>
|
|
@@ -819,7 +860,7 @@
|
|
|
819
860
|
:taBm="toTaBmZdEntity"
|
|
820
861
|
:multi="false"
|
|
821
862
|
/>
|
|
822
|
-
<!--end-->
|
|
863
|
+
<!--end-->
|
|
823
864
|
|
|
824
865
|
</div>
|
|
825
866
|
</template>
|