cloud-web-corejs 1.0.80 → 1.0.82
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 +1 -1
- package/src/components/baseAttachment/index.vue +22 -13
- package/src/components/baseAttachment/mixins.js +1 -1
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +6 -0
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +328 -203
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +27 -23
- package/src/components/table/CellSlot.vue +1 -0
- package/src/components/table/vxeFilter/mixin.js +1 -1
- package/src/components/vb-tabs/x-tabs.vue +3 -2
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +11 -3
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +2 -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 +12 -5
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +28 -3
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +5 -2
- 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 +138 -6
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +4 -7
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +80 -0
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +5 -2
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +6 -0
- package/src/components/xform/form-designer/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +8 -0
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +125 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +3 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +415 -354
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-offset-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-pull-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-push-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +7 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +16 -8
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +80 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +30 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/multipleLimit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +170 -20
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +1 -0
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +132 -110
- package/src/components/xform/form-render/container-item/containerItemMixin.js +1 -1
- package/src/components/xform/form-render/container-item/data-table-item.vue +42 -20
- package/src/components/xform/form-render/container-item/data-table-mixin.js +3 -3
- package/src/components/xform/form-render/container-item/grid-col-item.vue +10 -3
- package/src/components/xform/form-render/container-item/grid-item.vue +1 -1
- package/src/components/xform/form-render/container-item/tab-item.vue +11 -6
- package/src/components/xform/form-render/container-item/table-cell-item.vue +38 -32
- package/src/components/xform/form-render/container-item/table-item.vue +4 -2
- package/src/components/xform/form-render/indexMixin.js +1 -1
- package/src/components/xform/lang/zh-CN.js +1 -0
- package/src/components/xform/mixins/defaultHandle.js +1 -1
- package/src/components/xform/mixins/scriptHttp.js +3 -1
- package/src/components/xform/utils/util.js +1 -1
- package/src/store/modules/permission.js +1 -1
- package/src/views/bd/setting/table_model/edit.vue +835 -484
- package/src/views/bd/setting/table_model/mixins/edit.js +3 -3
- package/src/views/user/form/vform/designer.vue +772 -753
- package/src/views/user/form/view/list.vue +27 -9
@@ -1,484 +1,835 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="detail-wrap">
|
3
|
-
<el-form ref="editForm" :model="szTaMb">
|
4
|
-
<div class="d-header clearfix">
|
5
|
-
<div class="fl">
|
6
|
-
<i class="el-icon-info"/>
|
7
|
-
{{ dataId ? $t1(
|
8
|
-
</div>
|
9
|
-
<div class="fr">
|
10
|
-
<el-button
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
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
|
-
</el-
|
106
|
-
</
|
107
|
-
</
|
108
|
-
<
|
109
|
-
|
110
|
-
<
|
111
|
-
<el-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
<
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
<
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
<
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
</
|
268
|
-
|
269
|
-
|
270
|
-
<
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
:
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
v-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
</el-
|
375
|
-
</
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
</
|
476
|
-
|
477
|
-
<
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
}
|
484
|
-
</
|
1
|
+
<template>
|
2
|
+
<div class="detail-wrap">
|
3
|
+
<el-form ref="editForm" :model="szTaMb">
|
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
|
11
|
+
type="primary"
|
12
|
+
plain
|
13
|
+
class="button-sty"
|
14
|
+
icon="el-icon-set-up"
|
15
|
+
@click="openDtDialog"
|
16
|
+
v-if="isDev && !dataId && menuKindAuth.editAuth === 1 && !readonly"
|
17
|
+
>
|
18
|
+
{{ $t1("引用数据库中数据表结构") }}
|
19
|
+
</el-button>
|
20
|
+
<el-button
|
21
|
+
type="primary"
|
22
|
+
plain
|
23
|
+
class="button-sty"
|
24
|
+
icon="el-icon-set-up"
|
25
|
+
@click="openTmDialog"
|
26
|
+
v-if="isDev && !dataId && menuKindAuth.editAuth === 1 && !readonly"
|
27
|
+
>
|
28
|
+
{{ $t1("引用数据表定义的结构") }}
|
29
|
+
</el-button>
|
30
|
+
|
31
|
+
<el-button
|
32
|
+
type="success"
|
33
|
+
class="button-sty"
|
34
|
+
icon="el-icon-check"
|
35
|
+
@click="createModifyTable()"
|
36
|
+
v-if="
|
37
|
+
!szTaMb.systems &&
|
38
|
+
szTaMb.id &&
|
39
|
+
menuKindAuth.editAuth === 1 &&
|
40
|
+
!readonly
|
41
|
+
"
|
42
|
+
>
|
43
|
+
{{ $t1("创建/更新数据表") }}
|
44
|
+
</el-button>
|
45
|
+
<el-button
|
46
|
+
type="primary"
|
47
|
+
plain
|
48
|
+
class="button-sty"
|
49
|
+
@click="$baseReload()"
|
50
|
+
icon="el-icon-refresh-right"
|
51
|
+
>
|
52
|
+
{{ $t1("重置") }}
|
53
|
+
</el-button>
|
54
|
+
<el-button
|
55
|
+
type="primary"
|
56
|
+
class="button-sty"
|
57
|
+
icon="el-icon-check"
|
58
|
+
@click="saveData"
|
59
|
+
v-if="
|
60
|
+
isDev &&
|
61
|
+
!szTaMb.systems &&
|
62
|
+
menuKindAuth.editAuth === 1 &&
|
63
|
+
!readonly
|
64
|
+
"
|
65
|
+
>
|
66
|
+
{{ $t1("保存") }}
|
67
|
+
</el-button>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
<baseTabs>
|
71
|
+
<baseTabPane :label="$t1('基本信息')">
|
72
|
+
<template #default>
|
73
|
+
<table class="table-detail">
|
74
|
+
<tbody>
|
75
|
+
<tr>
|
76
|
+
<th>{{ $t1('数据库表名') }}</th>
|
77
|
+
<td colspan="3">
|
78
|
+
<el-form-item prop="taBm" :rules="[{ required: false, trigger: ['blur', 'change'] }]">
|
79
|
+
<el-input type="text" autocomplete="off" v-model="szTaMb.taBm" clearable :disabled="!!dataId"/>
|
80
|
+
</el-form-item>
|
81
|
+
</td>
|
82
|
+
</tr>
|
83
|
+
<tr>
|
84
|
+
<th class="no"></th>
|
85
|
+
<td colspan="7">
|
86
|
+
<span class="fl tips">{{ $t1('注:数据库表名必须定义为:1、与实体名称一样,2、表单分类数据表前缀_实体名称,3、不填自动生成:表单分类数据表前缀_实体名称。') }}</span>
|
87
|
+
</td>
|
88
|
+
</tr>
|
89
|
+
<tr>
|
90
|
+
<th>
|
91
|
+
<em class="f-red">*</em>
|
92
|
+
{{ $t1("实体名称") }}
|
93
|
+
</th>
|
94
|
+
<td colspan="3">
|
95
|
+
<el-form-item
|
96
|
+
prop="taEn"
|
97
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
98
|
+
>
|
99
|
+
<el-input
|
100
|
+
type="text"
|
101
|
+
autocomplete="off"
|
102
|
+
v-model="szTaMb.taEn"
|
103
|
+
clearable
|
104
|
+
/>
|
105
|
+
</el-form-item>
|
106
|
+
</td>
|
107
|
+
</tr>
|
108
|
+
<tr>
|
109
|
+
<th><em class="f-red">*</em>{{ $t1("表描述") }}</th>
|
110
|
+
<td colspan="5">
|
111
|
+
<el-form-item
|
112
|
+
prop="taCh"
|
113
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
114
|
+
>
|
115
|
+
<el-input
|
116
|
+
type="text"
|
117
|
+
autocomplete="off"
|
118
|
+
v-model="szTaMb.taCh"
|
119
|
+
clearable
|
120
|
+
/>
|
121
|
+
</el-form-item>
|
122
|
+
</td>
|
123
|
+
</tr>
|
124
|
+
<tr>
|
125
|
+
<th><em class="f-red">*</em>{{ $t1("是否明细") }}</th>
|
126
|
+
<td>
|
127
|
+
<el-form-item
|
128
|
+
prop="taType"
|
129
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
130
|
+
>
|
131
|
+
<el-radio-group v-model="szTaMb.taType">
|
132
|
+
<el-radio :label="1">{{ $t1("是") }}</el-radio>
|
133
|
+
<el-radio :label="0">{{ $t1("否") }}</el-radio>
|
134
|
+
</el-radio-group>
|
135
|
+
</el-form-item>
|
136
|
+
</td>
|
137
|
+
<th>
|
138
|
+
<em class="f-red" v-show="szTaMb.taType === 1">*</em>
|
139
|
+
{{ $t1("所属主实体") }}
|
140
|
+
</th>
|
141
|
+
<td colspan="3">
|
142
|
+
<el-form-item
|
143
|
+
prop="sszstEn"
|
144
|
+
:rules="[
|
145
|
+
{
|
146
|
+
required: szTaMb.taType === 1,
|
147
|
+
trigger: ['blur', 'change'],
|
148
|
+
},
|
149
|
+
]"
|
150
|
+
>
|
151
|
+
<el-input
|
152
|
+
class="search-input"
|
153
|
+
max="200"
|
154
|
+
v-model="szTaMb.sszstEn"
|
155
|
+
@clear="
|
156
|
+
szTaMb.sszst = null;
|
157
|
+
szTaMb.sszstBm = null;
|
158
|
+
$forceUpdate();
|
159
|
+
"
|
160
|
+
:disabled="szTaMb.taType == 0"
|
161
|
+
v-el-readonly
|
162
|
+
clearable
|
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'] }]"
|
179
|
+
>
|
180
|
+
<el-radio-group
|
181
|
+
v-model="szTaMb.taRule"
|
182
|
+
@change="changeTaRule"
|
183
|
+
>
|
184
|
+
<el-radio :label="1">{{ $t1("是") }}</el-radio>
|
185
|
+
<el-radio :label="0">{{ $t1("否") }}</el-radio>
|
186
|
+
</el-radio-group>
|
187
|
+
</el-form-item>
|
188
|
+
</td>
|
189
|
+
<th><em class="f-red">*</em>{{ $t1("数据范围") }}</th>
|
190
|
+
<td colspan="3">
|
191
|
+
<el-form-item
|
192
|
+
prop="dataRange"
|
193
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
194
|
+
>
|
195
|
+
<el-radio-group v-model="szTaMb.dataRange">
|
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
|
+
</tr>
|
202
|
+
<tr>
|
203
|
+
<th>
|
204
|
+
<em class="f-red">*</em>
|
205
|
+
{{ $t1("表单分类") }}
|
206
|
+
</th>
|
207
|
+
<td colspan="5">
|
208
|
+
<el-form-item
|
209
|
+
prop="menuKindName"
|
210
|
+
:rules="[
|
211
|
+
{
|
212
|
+
required: true,
|
213
|
+
trigger: ['blur', 'change'],
|
214
|
+
},
|
215
|
+
]"
|
216
|
+
>
|
217
|
+
<el-input
|
218
|
+
class="search-input"
|
219
|
+
max="200"
|
220
|
+
v-model="szTaMb.menuKindName"
|
221
|
+
@clear="
|
222
|
+
szTaMb.menuKindCode = '';
|
223
|
+
$forceUpdate();
|
224
|
+
"
|
225
|
+
v-el-readonly
|
226
|
+
clearable
|
227
|
+
>
|
228
|
+
<i
|
229
|
+
slot="suffix"
|
230
|
+
class="el-input__icon el-icon-search"
|
231
|
+
@click="showMenuKindDialog = true"
|
232
|
+
></i>
|
233
|
+
</el-input>
|
234
|
+
</el-form-item>
|
235
|
+
</td>
|
236
|
+
</tr>
|
237
|
+
<tr>
|
238
|
+
<th>
|
239
|
+
{{ $t1("项目标签") }}
|
240
|
+
</th>
|
241
|
+
<td colspan="7">
|
242
|
+
<projectTagView
|
243
|
+
v-model="szTaMb.szTaMbTagDTOs"
|
244
|
+
></projectTagView>
|
245
|
+
</td>
|
246
|
+
</tr>
|
247
|
+
<tr>
|
248
|
+
<th>
|
249
|
+
{{ $t1("服务名") }}
|
250
|
+
</th>
|
251
|
+
<td colspan="7">
|
252
|
+
{{ szTaMb.serviceName }}
|
253
|
+
</td>
|
254
|
+
</tr>
|
255
|
+
|
256
|
+
<tr>
|
257
|
+
<th>
|
258
|
+
{{ $t1("唯一标识") }}
|
259
|
+
</th>
|
260
|
+
<td colspan="7">
|
261
|
+
{{ szTaMb.sid }}
|
262
|
+
</td>
|
263
|
+
</tr>
|
264
|
+
<tr>
|
265
|
+
<th>{{ $t1("创建人") }}</th>
|
266
|
+
<td>{{ szTaMb.createBy }}</td>
|
267
|
+
<th>{{ $t1("创建时间") }}</th>
|
268
|
+
<td>{{ szTaMb.createDate }}</td>
|
269
|
+
<th>{{ $t1("更新人") }}</th>
|
270
|
+
<td>{{ szTaMb.modifyBy }}</td>
|
271
|
+
<th>{{ $t1("更新时间") }}</th>
|
272
|
+
<td>{{ szTaMb.modifyDate }}</td>
|
273
|
+
</tr>
|
274
|
+
</tbody>
|
275
|
+
</table>
|
276
|
+
</template>
|
277
|
+
</baseTabPane>
|
278
|
+
<baseTabPane :label="$t1('数据表字段明细')">
|
279
|
+
<template #button>
|
280
|
+
<el-button
|
281
|
+
class="button-sty"
|
282
|
+
@click="addTaMbItems"
|
283
|
+
icon="el-icon-plus"
|
284
|
+
>{{ $t1("新增") }}</el-button
|
285
|
+
>
|
286
|
+
</template>
|
287
|
+
<template #default>
|
288
|
+
<div>
|
289
|
+
<vxe-grid
|
290
|
+
ref="table-szTaZdMb"
|
291
|
+
:data="szTaMb.szTaZdMbDTOs"
|
292
|
+
v-bind="productOption"
|
293
|
+
@resizable-change="$vxeTableUtil.onColumnWitchChange"
|
294
|
+
@custom="$vxeTableUtil.customHandle"
|
295
|
+
>
|
296
|
+
<template #zdType="{ row }">
|
297
|
+
<el-select
|
298
|
+
v-model="row.zdType"
|
299
|
+
clearable
|
300
|
+
:disabled="!!row.systems || !!row.relationZd"
|
301
|
+
>
|
302
|
+
<el-option value="Boolean" :label="$t1('布尔')"></el-option>
|
303
|
+
<el-option value="Integer" :label="$t1('整数')"></el-option>
|
304
|
+
<el-option value="Long" :label="$t1('长整数')"></el-option>
|
305
|
+
<el-option
|
306
|
+
value="Decimal"
|
307
|
+
:label="$t1('精度小数')"
|
308
|
+
></el-option>
|
309
|
+
<el-option value="Money" :label="$t1('金额')"></el-option>
|
310
|
+
<el-option value="Text" :label="$t1('文本')"></el-option>
|
311
|
+
<el-option
|
312
|
+
value="TextArea"
|
313
|
+
:label="$t1('长文本')"
|
314
|
+
></el-option>
|
315
|
+
<el-option
|
316
|
+
value="DateTime"
|
317
|
+
:label="$t1('日期时间')"
|
318
|
+
></el-option>
|
319
|
+
<el-option
|
320
|
+
value="Reference"
|
321
|
+
:label="$t1('关联表')"
|
322
|
+
></el-option>
|
323
|
+
</el-select>
|
324
|
+
</template>
|
325
|
+
<template #referenceZd="{ row, rowIndex, $table }">
|
326
|
+
<el-input
|
327
|
+
class="search-input"
|
328
|
+
v-model="row.referenceZd"
|
329
|
+
clearable
|
330
|
+
@clear="$forceUpdate()"
|
331
|
+
v-el-readonly
|
332
|
+
v-if="row.zdType == 'Reference'"
|
333
|
+
:disabled="!row.zdEn"
|
334
|
+
>
|
335
|
+
<i
|
336
|
+
slot="suffix"
|
337
|
+
class="el-input__icon el-icon-search"
|
338
|
+
@click="openReferenceZdDialog(row, rowIndex, $table)"
|
339
|
+
></i>
|
340
|
+
</el-input>
|
341
|
+
<template v-else>
|
342
|
+
{{ row.referenceZd }}
|
343
|
+
</template>
|
344
|
+
</template>
|
345
|
+
<template #zdEn="{ row, rowIndex }">
|
346
|
+
<template
|
347
|
+
v-if="!!row.systems || row.fromTable"
|
348
|
+
>
|
349
|
+
<div>
|
350
|
+
{{ row.zdEn }}
|
351
|
+
</div>
|
352
|
+
</template>
|
353
|
+
<template v-else>
|
354
|
+
<el-form-item
|
355
|
+
:prop="'szTaZdMbDTOs.' + rowIndex + '.zdEn'"
|
356
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
357
|
+
:style="!!row.relationZd ? 'padding-left:20px' : ''"
|
358
|
+
>
|
359
|
+
<el-input v-model="row.zdEn" @keydown.native="inputZdEn(row)"
|
360
|
+
@input="(val)=>{changeZdEn(val,row)}" />
|
361
|
+
</el-form-item>
|
362
|
+
</template>
|
363
|
+
</template>
|
364
|
+
<template #zdCh="{ row, rowIndex }">
|
365
|
+
<el-form-item
|
366
|
+
:prop="'szTaZdMbDTOs.' + rowIndex + '.zdCh'"
|
367
|
+
:rules="[{ required: true, trigger: ['blur', 'change'] }]"
|
368
|
+
>
|
369
|
+
<el-input
|
370
|
+
v-model="row.zdCh"
|
371
|
+
clearable
|
372
|
+
:disabled="!!row.systems"
|
373
|
+
/>
|
374
|
+
</el-form-item>
|
375
|
+
</template>
|
376
|
+
<template #zdTypeValues="{ row, rowIndex }">
|
377
|
+
<el-form-item
|
378
|
+
:prop="'szTaZdMbDTOs.' + rowIndex + '.zdTypeValues'"
|
379
|
+
:rules="[{ required: false, trigger: ['blur', 'change'] }]"
|
380
|
+
>
|
381
|
+
<el-input
|
382
|
+
v-model="row.zdTypeValues"
|
383
|
+
clearable
|
384
|
+
:disabled="!!row.systems || !!row.relationZd"
|
385
|
+
/>
|
386
|
+
</el-form-item>
|
387
|
+
</template>
|
388
|
+
<template #required="{ row, rowIndex }">
|
389
|
+
<el-checkbox
|
390
|
+
v-model="row.required"
|
391
|
+
:disabled="!!row.systems || !!row.relationZd"
|
392
|
+
/>
|
393
|
+
</template>
|
394
|
+
<template #enabled="{ row, rowIndex }">
|
395
|
+
<el-checkbox
|
396
|
+
v-model="row.enabled"
|
397
|
+
:disabled="!!row.systems || !!row.relationZd"
|
398
|
+
/>
|
399
|
+
</template>
|
400
|
+
<template #generateCode="{ row, rowIndex }">
|
401
|
+
<el-checkbox
|
402
|
+
v-model="row.generateCode"
|
403
|
+
:disabled="!!row.systems || !!row.relationZd"
|
404
|
+
/>
|
405
|
+
</template>
|
406
|
+
<template #atened="{ row, rowIndex }">
|
407
|
+
<el-checkbox
|
408
|
+
v-model="row.atened"
|
409
|
+
:disabled="!!row.systems || !!row.relationZd"
|
410
|
+
/>
|
411
|
+
</template>
|
412
|
+
<template #updateIgnore="{ row, rowIndex }">
|
413
|
+
<el-checkbox
|
414
|
+
v-model="row.updateIgnore"
|
415
|
+
:disabled="!!row.systems || !!row.relationZd"
|
416
|
+
/>
|
417
|
+
</template>
|
418
|
+
<template #codeType="{ row, rowIndex }">
|
419
|
+
<el-form-item
|
420
|
+
:prop="'szTaZdMbDTOs.' + rowIndex + '.codeType'"
|
421
|
+
:rules="[{ required: false, trigger: ['blur', 'change'] }]"
|
422
|
+
>
|
423
|
+
<el-input
|
424
|
+
v-model="row.codeType"
|
425
|
+
clearable
|
426
|
+
:disabled="!!row.systems || !!row.relationZd"
|
427
|
+
/>
|
428
|
+
</el-form-item>
|
429
|
+
</template>
|
430
|
+
<template #orders="{ row, rowIndex }">
|
431
|
+
<el-form-item
|
432
|
+
:prop="'szTaZdMbDTOs.' + rowIndex + '.orders'"
|
433
|
+
:rules="[{ required: false, trigger: ['blur', 'change'] }]"
|
434
|
+
>
|
435
|
+
<base-input-number
|
436
|
+
v-model="row.orders"
|
437
|
+
clearable
|
438
|
+
:disabled="!!row.systems"
|
439
|
+
@change="changeOrders(row)"
|
440
|
+
/>
|
441
|
+
</el-form-item>
|
442
|
+
</template>
|
443
|
+
<template #toTaBmZd="{ row, rowIndex, $table }">
|
444
|
+
<el-input
|
445
|
+
class="search-input"
|
446
|
+
v-model="row.toTaBmZd"
|
447
|
+
clearable
|
448
|
+
@clear="$forceUpdate()"
|
449
|
+
v-el-readonly
|
450
|
+
:disabled="!!row.systems || !!row.relationZd"
|
451
|
+
>
|
452
|
+
<i
|
453
|
+
slot="suffix"
|
454
|
+
class="el-input__icon el-icon-search"
|
455
|
+
@click="openToTaBmZdDialog(row, rowIndex, $table)"
|
456
|
+
></i>
|
457
|
+
</el-input>
|
458
|
+
</template>
|
459
|
+
<template #treeFlag="{ row }">
|
460
|
+
<el-select
|
461
|
+
v-model="row.treeFlag"
|
462
|
+
clearable
|
463
|
+
:disabled="!!row.systems || !!row.relationZd || szTaMb.taRule!==1"
|
464
|
+
>
|
465
|
+
<el-option value="name" :label="$t1('名称')"></el-option>
|
466
|
+
<el-option value="wbs" :label="$t1('WBS码')"></el-option>
|
467
|
+
<el-option value="parent" :label="$t1('上级ID')"></el-option>
|
468
|
+
<el-option value="treePath" :label="$t1('树ID路径')"></el-option>
|
469
|
+
<el-option value="treePathName" :label="$t1('树名称路径')"></el-option>
|
470
|
+
<el-option value="hasChild" :label="$t1('是否有下级')"></el-option>
|
471
|
+
<el-option value="grade" :label="$t1('层级')"></el-option>
|
472
|
+
</el-select>
|
473
|
+
</template>
|
474
|
+
</vxe-grid>
|
475
|
+
</div>
|
476
|
+
<table class="table-detail">
|
477
|
+
<tbody>
|
478
|
+
<tr>
|
479
|
+
<th>
|
480
|
+
{{ $t1("表编码") }}
|
481
|
+
</th>
|
482
|
+
<td colspan="7">
|
483
|
+
{{ szTaMb.taCode }}
|
484
|
+
</td>
|
485
|
+
</tr>
|
486
|
+
</tbody>
|
487
|
+
</table>
|
488
|
+
</template>
|
489
|
+
</baseTabPane>
|
490
|
+
<baseTabPane :label="$t1('操作日志')">
|
491
|
+
<template #default>
|
492
|
+
<formOplogTable
|
493
|
+
:parent-target="_self"
|
494
|
+
ref="oplogTable"
|
495
|
+
></formOplogTable>
|
496
|
+
</template>
|
497
|
+
</baseTabPane>
|
498
|
+
</baseTabs>
|
499
|
+
</el-form>
|
500
|
+
|
501
|
+
<szTaMbDialog
|
502
|
+
v-if="showSzTaMbDialog"
|
503
|
+
:visiable.sync="showSzTaMbDialog"
|
504
|
+
@confirm="confirmInsertSzTaMb"
|
505
|
+
:multi="false"
|
506
|
+
/>
|
507
|
+
<szTaMbDialog
|
508
|
+
v-if="showItemSzTaMbDialog"
|
509
|
+
:visiable.sync="showItemSzTaMbDialog"
|
510
|
+
@confirm="confirmInsertItemSzTaMb"
|
511
|
+
multi="false"
|
512
|
+
/>
|
513
|
+
<MenuKindDialog
|
514
|
+
v-if="showMenuKindDialog"
|
515
|
+
:visiable.sync="showMenuKindDialog"
|
516
|
+
@confirm="confirmInsertMenuKind"
|
517
|
+
:multi="false"
|
518
|
+
/>
|
519
|
+
|
520
|
+
<el-dialog
|
521
|
+
:title="$t1('关联表维护')"
|
522
|
+
v-if="showReferenceZdDialog"
|
523
|
+
:visible.sync="showReferenceZdDialog"
|
524
|
+
:modal-append-to-body="false"
|
525
|
+
:close-on-click-modal="false"
|
526
|
+
:modal="false"
|
527
|
+
custom-class="dialog-style wf-dialog"
|
528
|
+
v-el-drag-dialog
|
529
|
+
v-el-dialog-center
|
530
|
+
>
|
531
|
+
<el-form>
|
532
|
+
<div id="containt">
|
533
|
+
<table class="table-detail">
|
534
|
+
<tbody>
|
535
|
+
<tr>
|
536
|
+
<th>
|
537
|
+
<span class="t">
|
538
|
+
{{ $t1("关联表") }}
|
539
|
+
</span>
|
540
|
+
</th>
|
541
|
+
<td>
|
542
|
+
<el-form-item label="">
|
543
|
+
<el-input
|
544
|
+
class="search-input"
|
545
|
+
max="200"
|
546
|
+
v-model="referenceEntity"
|
547
|
+
@clear="
|
548
|
+
referenceKey = null;
|
549
|
+
refServiceName = null;
|
550
|
+
referenceShowFields = [];
|
551
|
+
$forceUpdate();
|
552
|
+
"
|
553
|
+
v-el-readonly
|
554
|
+
clearable
|
555
|
+
>
|
556
|
+
<i
|
557
|
+
slot="suffix"
|
558
|
+
class="el-input__icon el-icon-search"
|
559
|
+
@click="showEntityDialog = true"
|
560
|
+
></i>
|
561
|
+
</el-input>
|
562
|
+
</el-form-item>
|
563
|
+
</td>
|
564
|
+
</tr>
|
565
|
+
<tr>
|
566
|
+
<th>
|
567
|
+
<span class="t">
|
568
|
+
{{ $t1("关联字段") }}
|
569
|
+
</span>
|
570
|
+
</th>
|
571
|
+
<td>
|
572
|
+
<el-form-item label="">
|
573
|
+
<el-input
|
574
|
+
class="search-input"
|
575
|
+
max="200"
|
576
|
+
v-model="referenceKey"
|
577
|
+
@clear="referenceKey = null"
|
578
|
+
v-el-readonly
|
579
|
+
clearable
|
580
|
+
>
|
581
|
+
<i
|
582
|
+
slot="suffix"
|
583
|
+
class="el-input__icon el-icon-search"
|
584
|
+
@click="openEntityFieldDialog1"
|
585
|
+
></i>
|
586
|
+
</el-input>
|
587
|
+
</el-form-item>
|
588
|
+
</td>
|
589
|
+
</tr>
|
590
|
+
<tr>
|
591
|
+
<th>
|
592
|
+
<span class="t">
|
593
|
+
{{ $t1("显示字段") }}
|
594
|
+
</span>
|
595
|
+
</th>
|
596
|
+
<td>
|
597
|
+
<el-form-item label="">
|
598
|
+
<el-input
|
599
|
+
class="search-input"
|
600
|
+
max="200"
|
601
|
+
:value="referenceShowFields.join(',')"
|
602
|
+
@clear="referenceShowFields = []"
|
603
|
+
v-el-readonly
|
604
|
+
clearable
|
605
|
+
>
|
606
|
+
<i
|
607
|
+
slot="suffix"
|
608
|
+
class="el-input__icon el-icon-search"
|
609
|
+
@click="openEntityFieldDialog2"
|
610
|
+
></i>
|
611
|
+
</el-input>
|
612
|
+
</el-form-item>
|
613
|
+
</td>
|
614
|
+
</tr>
|
615
|
+
</tbody>
|
616
|
+
</table>
|
617
|
+
</div>
|
618
|
+
</el-form>
|
619
|
+
<span slot="footer" class="dialog-footer">
|
620
|
+
<el-button
|
621
|
+
type="primary"
|
622
|
+
plain
|
623
|
+
class="button-sty"
|
624
|
+
@click="showReferenceZdDialog = false"
|
625
|
+
>
|
626
|
+
<i class="el-icon-close el-icon"></i>
|
627
|
+
{{ $t1("取 消") }}
|
628
|
+
</el-button>
|
629
|
+
<el-button
|
630
|
+
type="primary"
|
631
|
+
@click="confirmReferenceZdDialog"
|
632
|
+
class="button-sty"
|
633
|
+
>
|
634
|
+
<i class="el-icon-check el-icon"></i>
|
635
|
+
{{ $t1("确 定") }}
|
636
|
+
</el-button>
|
637
|
+
</span>
|
638
|
+
</el-dialog>
|
639
|
+
|
640
|
+
<szTaMbDialog
|
641
|
+
v-if="showEntityDialog"
|
642
|
+
:visiable.sync="showEntityDialog"
|
643
|
+
@confirm="confirmEntityDialog"
|
644
|
+
:multi="false"
|
645
|
+
/>
|
646
|
+
|
647
|
+
<zdDialog
|
648
|
+
v-if="showEntityFieldDialog1"
|
649
|
+
:visiable.sync="showEntityFieldDialog1"
|
650
|
+
@confirm="confirmEntityFieldDialog1"
|
651
|
+
:taBm="referenceEntity"
|
652
|
+
:multi="false"
|
653
|
+
/>
|
654
|
+
<zdDialog
|
655
|
+
v-if="showEntityFieldDialog2"
|
656
|
+
:visiable.sync="showEntityFieldDialog2"
|
657
|
+
@confirm="confirmEntityFieldDialog2"
|
658
|
+
:taBm="referenceEntity"
|
659
|
+
:multi="true"
|
660
|
+
/>
|
661
|
+
<preformDialog
|
662
|
+
v-if="showPreformDialog"
|
663
|
+
:visiable.sync="showPreformDialog"
|
664
|
+
@confirm="confirmPreformDialog"
|
665
|
+
></preformDialog>
|
666
|
+
|
667
|
+
<szTaMbDialog
|
668
|
+
v-if="showTmDialog"
|
669
|
+
:visiable.sync="showTmDialog"
|
670
|
+
@confirm="confirmTmDialog"
|
671
|
+
:multi="false"
|
672
|
+
/>
|
673
|
+
|
674
|
+
<el-dialog
|
675
|
+
:title="$t1('引用数据库中数据表结构')"
|
676
|
+
:append-to-body="true"
|
677
|
+
:modal-append-to-body="true"
|
678
|
+
:close-on-click-modal="false"
|
679
|
+
v-if="showDtDialog"
|
680
|
+
:visible.sync="showDtDialog"
|
681
|
+
:modal="false"
|
682
|
+
custom-class="dialog-style list-dialog dialog-checkbox pd_8"
|
683
|
+
width="350px"
|
684
|
+
v-el-drag-dialog
|
685
|
+
>
|
686
|
+
<div class="cont">
|
687
|
+
<el-form
|
688
|
+
ref="editCategoryForm"
|
689
|
+
label-width="102px"
|
690
|
+
class="adSearchForm"
|
691
|
+
style="height: auto; width: auto"
|
692
|
+
>
|
693
|
+
<el-form-item :label="$t1('数据表')">
|
694
|
+
<el-input v-model="dbTable" clearable class="all-width" />
|
695
|
+
</el-form-item>
|
696
|
+
</el-form>
|
697
|
+
</div>
|
698
|
+
<span slot="footer" class="dialog-footer">
|
699
|
+
<el-button
|
700
|
+
type="primary"
|
701
|
+
plain
|
702
|
+
class="button-sty"
|
703
|
+
@click="showDtDialog = false"
|
704
|
+
>
|
705
|
+
<i class="el-icon-close el-icon"></i>
|
706
|
+
{{ $t2("取 消", "system.button.cancel2") }}
|
707
|
+
</el-button>
|
708
|
+
<el-button type="primary" @click="confirmDtDialog" class="button-sty">
|
709
|
+
<i class="el-icon-check el-icon"></i>
|
710
|
+
{{ $t1("确定") }}
|
711
|
+
</el-button>
|
712
|
+
</span>
|
713
|
+
</el-dialog>
|
714
|
+
|
715
|
+
<!--begin-->
|
716
|
+
<el-dialog
|
717
|
+
:title="$t1('数据值对应表字段')"
|
718
|
+
v-if="showToTaBmZdDialog"
|
719
|
+
:visible.sync="showToTaBmZdDialog"
|
720
|
+
:modal-append-to-body="false"
|
721
|
+
:close-on-click-modal="false"
|
722
|
+
:modal="false"
|
723
|
+
custom-class="dialog-style wf-dialog"
|
724
|
+
v-el-drag-dialog
|
725
|
+
v-el-dialog-center
|
726
|
+
>
|
727
|
+
<el-form>
|
728
|
+
<div id="containt">
|
729
|
+
<table class="table-detail">
|
730
|
+
<tbody>
|
731
|
+
<tr>
|
732
|
+
<th>
|
733
|
+
<span class="t">
|
734
|
+
{{ $t1("对应表") }}
|
735
|
+
</span>
|
736
|
+
</th>
|
737
|
+
<td>
|
738
|
+
<el-form-item label="">
|
739
|
+
<el-input
|
740
|
+
class="search-input"
|
741
|
+
max="200"
|
742
|
+
v-model="toTaBmZdEntity"
|
743
|
+
@clear="
|
744
|
+
toTaBmZdEntity = null;
|
745
|
+
toTaBmZdField = null;
|
746
|
+
"
|
747
|
+
v-el-readonly
|
748
|
+
clearable
|
749
|
+
>
|
750
|
+
<i
|
751
|
+
slot="suffix"
|
752
|
+
class="el-input__icon el-icon-search"
|
753
|
+
@click="showEntityDialog3 = true"
|
754
|
+
></i>
|
755
|
+
</el-input>
|
756
|
+
</el-form-item>
|
757
|
+
</td>
|
758
|
+
</tr>
|
759
|
+
<tr>
|
760
|
+
<th>
|
761
|
+
<span class="t">
|
762
|
+
{{ $t1("对应表字段") }}
|
763
|
+
</span>
|
764
|
+
</th>
|
765
|
+
<td>
|
766
|
+
<el-form-item label="">
|
767
|
+
<el-input
|
768
|
+
class="search-input"
|
769
|
+
max="200"
|
770
|
+
v-model="toTaBmZdField"
|
771
|
+
@clear="toTaBmZdField = null"
|
772
|
+
v-el-readonly
|
773
|
+
clearable
|
774
|
+
>
|
775
|
+
<i
|
776
|
+
slot="suffix"
|
777
|
+
class="el-input__icon el-icon-search"
|
778
|
+
@click="openEntityFieldDialog3"
|
779
|
+
></i>
|
780
|
+
</el-input>
|
781
|
+
</el-form-item>
|
782
|
+
</td>
|
783
|
+
</tr>
|
784
|
+
</tbody>
|
785
|
+
</table>
|
786
|
+
</div>
|
787
|
+
</el-form>
|
788
|
+
<span slot="footer" class="dialog-footer">
|
789
|
+
<el-button
|
790
|
+
type="primary"
|
791
|
+
plain
|
792
|
+
class="button-sty"
|
793
|
+
@click="showToTaBmZdDialog = false"
|
794
|
+
>
|
795
|
+
<i class="el-icon-close el-icon"></i>
|
796
|
+
{{ $t1("取 消") }}
|
797
|
+
</el-button>
|
798
|
+
<el-button
|
799
|
+
type="primary"
|
800
|
+
@click="confirmToTaBmZdDialog"
|
801
|
+
class="button-sty"
|
802
|
+
>
|
803
|
+
<i class="el-icon-check el-icon"></i>
|
804
|
+
{{ $t1("确 定") }}
|
805
|
+
</el-button>
|
806
|
+
</span>
|
807
|
+
</el-dialog>
|
808
|
+
|
809
|
+
<szTaMbDialog
|
810
|
+
v-if="showEntityDialog3"
|
811
|
+
:visiable.sync="showEntityDialog3"
|
812
|
+
@confirm="confirmEntityDialog3"
|
813
|
+
:multi="false"
|
814
|
+
/>
|
815
|
+
|
816
|
+
<zdDialog
|
817
|
+
v-if="showEntityFieldDialog3"
|
818
|
+
:visiable.sync="showEntityFieldDialog3"
|
819
|
+
@confirm="confirmEntityFieldDialog3"
|
820
|
+
:taBm="toTaBmZdEntity"
|
821
|
+
:multi="false"
|
822
|
+
/>
|
823
|
+
<!--end-->
|
824
|
+
|
825
|
+
</div>
|
826
|
+
</template>
|
827
|
+
|
828
|
+
<script>
|
829
|
+
import mixin from "./mixins/edit";
|
830
|
+
|
831
|
+
export default {
|
832
|
+
name: "szTaMbEdit",
|
833
|
+
mixins: [mixin],
|
834
|
+
};
|
835
|
+
</script>
|