cloud-web-corejs 1.1.0-dev.19 → 1.1.0-dev.21
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/baseInputExport/mixins.js +0 -6
- package/src/components/xform/docs/2026-09 /345/212/250/346/200/201/345/255/227/346/256/265/350/247/204/345/210/231/344/270/216/346/265/201/347/250/213/346/216/247/345/210/266/346/211/247/350/241/214/351/241/272/345/272/217/350/220/275/345/234/260/346/226/271/346/241/210.md" +409 -0
- package/src/components/xform/form-designer/designer.js +2086 -2084
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +34 -0
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +13 -1
- package/src/components/xform/form-designer/setting-panel/form-dynamicField-setting.vue +687 -602
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +74 -9
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +8 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +6304 -6285
- package/src/components/xform/form-render/container-item/dynamicFieldMixin.js +55 -1
- package/src/components/xform/form-render/container-item/tab-item.vue +138 -129
- package/src/components/xform/form-render/fieldControlEngine.js +218 -0
- package/src/components/xform/form-render/fieldControlMixin.js +534 -0
- package/src/components/xform/form-render/index.vue +164 -153
- package/src/components/xform/form-render/indexMixin.js +5415 -5331
- package/src/components/xform/mixins/defaultHandle.js +713 -707
- package/src/components/xform/utils/util.js +1710 -1708
- package/src/views/user/home/default.vue +6 -3
- package/src/views/user/home/wjl/content.vue +3 -2
- package/src/components/xform/form-render/container-item/dynamicFieldEngine.js +0 -285
- package/src/components/xform/form-render/formDynamicFieldMixin.js +0 -131
|
@@ -1,602 +1,687 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="form-dynamic-field-setting">
|
|
3
|
-
<el-form-item label="启用动态字段">
|
|
4
|
-
<el-switch v-model="formConfig.dynamicFieldEnabled"></el-switch>
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
</
|
|
8
|
-
</el-form-item>
|
|
9
|
-
|
|
10
|
-
<template v-if="formConfig.dynamicFieldEnabled">
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
<el-
|
|
20
|
-
<el-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
:value="
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
this.
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
.
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
.
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
.
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div class="form-dynamic-field-setting">
|
|
3
|
+
<el-form-item label="启用动态字段">
|
|
4
|
+
<el-switch v-model="formConfig.dynamicFieldEnabled"></el-switch>
|
|
5
|
+
<el-tooltip content="根据表单数据动态控制字段、容器的显隐、必填、只读和禁用状态。" placement="left" popper-class="xform-setting-help">
|
|
6
|
+
<i class="el-icon-info setting-help-icon" tabindex="0" aria-label="动态字段说明"></i>
|
|
7
|
+
</el-tooltip>
|
|
8
|
+
</el-form-item>
|
|
9
|
+
|
|
10
|
+
<template v-if="formConfig.dynamicFieldEnabled">
|
|
11
|
+
<div v-if="fieldControlTreeState.error" class="tip-text tree-options-error">{{ fieldControlTreeState.error }}</div>
|
|
12
|
+
<el-form-item label="执行方式">
|
|
13
|
+
<el-select :value="formConfig.dynamicFieldRunMode || 'auto'" size="mini"
|
|
14
|
+
@input="$set(formConfig, 'dynamicFieldRunMode', $event)">
|
|
15
|
+
<el-option label="按场景默认" value="auto" />
|
|
16
|
+
<el-option label="仅初始化" value="initialOnly" />
|
|
17
|
+
<el-option label="持续生效" value="continuous" />
|
|
18
|
+
</el-select>
|
|
19
|
+
<el-tooltip content="默认:有流程仅初始化,无流程持续联动。仅初始化保留首次结果;持续模式每轮均由流程规则收尾。" placement="left" popper-class="xform-setting-help">
|
|
20
|
+
<i class="el-icon-info setting-help-icon" tabindex="0" aria-label="执行方式说明"></i>
|
|
21
|
+
</el-tooltip>
|
|
22
|
+
</el-form-item>
|
|
23
|
+
<el-form-item label="字段规则" class="el-form-item-second">
|
|
24
|
+
<el-button
|
|
25
|
+
type="primary"
|
|
26
|
+
plain
|
|
27
|
+
size="mini"
|
|
28
|
+
icon="el-icon-setting"
|
|
29
|
+
@click="openRuleDialog"
|
|
30
|
+
>
|
|
31
|
+
配置规则({{ (formConfig.dynamicFieldRules || []).length }})
|
|
32
|
+
</el-button>
|
|
33
|
+
</el-form-item>
|
|
34
|
+
</template>
|
|
35
|
+
|
|
36
|
+
<el-dialog
|
|
37
|
+
title="表单动态字段规则"
|
|
38
|
+
:visible.sync="ruleDialogVisible"
|
|
39
|
+
:append-to-body="true"
|
|
40
|
+
width="880px"
|
|
41
|
+
top="6vh"
|
|
42
|
+
custom-class="dynamic-field-rule-dialog"
|
|
43
|
+
>
|
|
44
|
+
<div class="rule-dialog-summary">配置触发条件与字段状态,规则按排列顺序执行。</div>
|
|
45
|
+
<div class="rule-list">
|
|
46
|
+
<div v-if="!editingRules.length" class="rule-empty">暂无规则,点击下方「添加规则」开始配置</div>
|
|
47
|
+
<div
|
|
48
|
+
v-for="(rule, rIdx) in editingRules"
|
|
49
|
+
:key="rule.id"
|
|
50
|
+
class="rule-card"
|
|
51
|
+
>
|
|
52
|
+
<div class="rule-card-header">
|
|
53
|
+
<span class="rule-title">规则 {{ rIdx + 1 }}</span>
|
|
54
|
+
<el-button
|
|
55
|
+
type="text"
|
|
56
|
+
icon="el-icon-delete"
|
|
57
|
+
class="danger-text"
|
|
58
|
+
@click="removeRule(rIdx)"
|
|
59
|
+
>
|
|
60
|
+
删除规则
|
|
61
|
+
</el-button>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<div class="rule-section">
|
|
65
|
+
<div class="rule-section-title">
|
|
66
|
+
<span>当满足</span>
|
|
67
|
+
<el-radio-group v-model="rule.logic" size="mini">
|
|
68
|
+
<el-radio-button label="and">全部条件</el-radio-button>
|
|
69
|
+
<el-radio-button label="or">任一条件</el-radio-button>
|
|
70
|
+
</el-radio-group>
|
|
71
|
+
</div>
|
|
72
|
+
<div
|
|
73
|
+
v-for="(cond, cIdx) in rule.conditions"
|
|
74
|
+
:key="cIdx"
|
|
75
|
+
class="rule-row condition-row"
|
|
76
|
+
>
|
|
77
|
+
<el-select
|
|
78
|
+
v-model="cond.field"
|
|
79
|
+
filterable
|
|
80
|
+
size="mini"
|
|
81
|
+
placeholder="选择条件字段"
|
|
82
|
+
class="cell-field"
|
|
83
|
+
>
|
|
84
|
+
<el-option
|
|
85
|
+
v-for="(n, idx) in treeOptions"
|
|
86
|
+
:key="n.value + '#' + idx"
|
|
87
|
+
:value="n.value"
|
|
88
|
+
:label="optPlainLabel(n)"
|
|
89
|
+
:disabled="n.isContainer"
|
|
90
|
+
>
|
|
91
|
+
<span
|
|
92
|
+
:style="{ paddingLeft: n.depth * 14 + 'px' }"
|
|
93
|
+
:class="{ 'opt-container': n.isContainer }"
|
|
94
|
+
>
|
|
95
|
+
<span v-if="n.isContainer" class="opt-tag"
|
|
96
|
+
>[{{ containerTypeLabel(n.type) }}]</span
|
|
97
|
+
>{{ n.baseLabel }}
|
|
98
|
+
</span>
|
|
99
|
+
</el-option>
|
|
100
|
+
</el-select>
|
|
101
|
+
<el-select
|
|
102
|
+
v-model="cond.operator"
|
|
103
|
+
size="mini"
|
|
104
|
+
placeholder="操作符"
|
|
105
|
+
class="cell-op"
|
|
106
|
+
>
|
|
107
|
+
<el-option
|
|
108
|
+
v-for="op in operatorOptions"
|
|
109
|
+
:key="op.value"
|
|
110
|
+
:label="op.label"
|
|
111
|
+
:value="op.value"
|
|
112
|
+
></el-option>
|
|
113
|
+
</el-select>
|
|
114
|
+
<el-input
|
|
115
|
+
v-model="cond.value"
|
|
116
|
+
size="mini"
|
|
117
|
+
placeholder="输入比较值"
|
|
118
|
+
class="cell-value"
|
|
119
|
+
:disabled="op_noValue(cond.operator)"
|
|
120
|
+
></el-input>
|
|
121
|
+
<el-button
|
|
122
|
+
type="text"
|
|
123
|
+
icon="el-icon-remove-outline"
|
|
124
|
+
class="danger-text row-remove"
|
|
125
|
+
aria-label="删除条件"
|
|
126
|
+
@click="removeCondition(rule, cIdx)"
|
|
127
|
+
></el-button>
|
|
128
|
+
</div>
|
|
129
|
+
<el-button
|
|
130
|
+
type="text"
|
|
131
|
+
icon="el-icon-plus"
|
|
132
|
+
@click="addCondition(rule)"
|
|
133
|
+
>添加条件</el-button
|
|
134
|
+
>
|
|
135
|
+
</div>
|
|
136
|
+
|
|
137
|
+
<div class="rule-section">
|
|
138
|
+
<div class="rule-section-title"><span>则设置字段/容器</span></div>
|
|
139
|
+
<div
|
|
140
|
+
v-for="(t, tIdx) in rule.targets"
|
|
141
|
+
:key="tIdx"
|
|
142
|
+
class="rule-row target-row"
|
|
143
|
+
>
|
|
144
|
+
<el-select
|
|
145
|
+
v-model="t.field"
|
|
146
|
+
filterable
|
|
147
|
+
size="mini"
|
|
148
|
+
placeholder="目标字段/容器"
|
|
149
|
+
class="cell-field"
|
|
150
|
+
>
|
|
151
|
+
<el-option
|
|
152
|
+
v-for="(n, idx) in treeOptions"
|
|
153
|
+
:key="n.value + '#' + idx"
|
|
154
|
+
:value="n.value"
|
|
155
|
+
:label="optPlainLabel(n)"
|
|
156
|
+
:disabled="n.isContainer && !n.hasName"
|
|
157
|
+
>
|
|
158
|
+
<span
|
|
159
|
+
:style="{ paddingLeft: n.depth * 14 + 'px' }"
|
|
160
|
+
:class="{ 'opt-container': n.isContainer }"
|
|
161
|
+
>
|
|
162
|
+
<span v-if="n.isContainer" class="opt-tag"
|
|
163
|
+
>[{{ containerTypeLabel(n.type) }}]</span
|
|
164
|
+
>{{ n.baseLabel }}
|
|
165
|
+
</span>
|
|
166
|
+
</el-option>
|
|
167
|
+
</el-select>
|
|
168
|
+
<span class="target-attr">
|
|
169
|
+
<span class="attr-label">显示</span>
|
|
170
|
+
<el-select
|
|
171
|
+
v-model="t.visible"
|
|
172
|
+
size="mini"
|
|
173
|
+
class="cell-tri"
|
|
174
|
+
clearable
|
|
175
|
+
placeholder="不变"
|
|
176
|
+
>
|
|
177
|
+
<el-option label="显示" :value="true"></el-option>
|
|
178
|
+
<el-option label="隐藏" :value="false"></el-option>
|
|
179
|
+
</el-select>
|
|
180
|
+
</span>
|
|
181
|
+
<span class="target-attr">
|
|
182
|
+
<span class="attr-label">必填</span>
|
|
183
|
+
<el-select
|
|
184
|
+
v-model="t.required"
|
|
185
|
+
size="mini"
|
|
186
|
+
class="cell-tri"
|
|
187
|
+
clearable
|
|
188
|
+
placeholder="不变"
|
|
189
|
+
>
|
|
190
|
+
<el-option label="必填" :value="true"></el-option>
|
|
191
|
+
<el-option label="非必填" :value="false"></el-option>
|
|
192
|
+
</el-select>
|
|
193
|
+
</span>
|
|
194
|
+
<span class="target-attr">
|
|
195
|
+
<span class="attr-label">只读</span>
|
|
196
|
+
<el-select
|
|
197
|
+
v-model="t.readonly"
|
|
198
|
+
size="mini"
|
|
199
|
+
class="cell-tri"
|
|
200
|
+
clearable
|
|
201
|
+
placeholder="不变"
|
|
202
|
+
>
|
|
203
|
+
<el-option label="只读" :value="true"></el-option>
|
|
204
|
+
<el-option label="可编辑" :value="false"></el-option>
|
|
205
|
+
</el-select>
|
|
206
|
+
</span>
|
|
207
|
+
<span class="target-attr">
|
|
208
|
+
<span class="attr-label">禁用</span>
|
|
209
|
+
<el-select
|
|
210
|
+
v-model="t.disabled"
|
|
211
|
+
size="mini"
|
|
212
|
+
class="cell-tri"
|
|
213
|
+
clearable
|
|
214
|
+
placeholder="不变"
|
|
215
|
+
>
|
|
216
|
+
<el-option label="禁用" :value="true"></el-option>
|
|
217
|
+
<el-option label="启用" :value="false"></el-option>
|
|
218
|
+
</el-select>
|
|
219
|
+
</span>
|
|
220
|
+
<el-button
|
|
221
|
+
type="text"
|
|
222
|
+
icon="el-icon-remove-outline"
|
|
223
|
+
class="danger-text row-remove"
|
|
224
|
+
aria-label="删除目标字段"
|
|
225
|
+
@click="removeTarget(rule, tIdx)"
|
|
226
|
+
></el-button>
|
|
227
|
+
</div>
|
|
228
|
+
<el-button type="text" icon="el-icon-plus" @click="addTarget(rule)"
|
|
229
|
+
>添加目标字段</el-button
|
|
230
|
+
>
|
|
231
|
+
<div class="tip-text">
|
|
232
|
+
目标为容器时仅「显示」生效,必填/只读/禁用将被忽略
|
|
233
|
+
</div>
|
|
234
|
+
</div>
|
|
235
|
+
</div>
|
|
236
|
+
|
|
237
|
+
<el-button
|
|
238
|
+
type="primary"
|
|
239
|
+
plain
|
|
240
|
+
icon="el-icon-plus"
|
|
241
|
+
size="mini"
|
|
242
|
+
@click="addRule"
|
|
243
|
+
style="width: 100%"
|
|
244
|
+
>
|
|
245
|
+
添加规则
|
|
246
|
+
</el-button>
|
|
247
|
+
</div>
|
|
248
|
+
|
|
249
|
+
<div slot="footer" class="rule-dialog-footer">
|
|
250
|
+
<span class="rule-count">共 {{ editingRules.length }} 条规则</span>
|
|
251
|
+
<el-button size="mini" @click="ruleDialogVisible = false"
|
|
252
|
+
>取消</el-button
|
|
253
|
+
>
|
|
254
|
+
<el-button size="mini" type="primary" @click="saveRules"
|
|
255
|
+
>确定</el-button
|
|
256
|
+
>
|
|
257
|
+
</div>
|
|
258
|
+
</el-dialog>
|
|
259
|
+
|
|
260
|
+
<el-dialog
|
|
261
|
+
title="额外参数"
|
|
262
|
+
:visible.sync="scriptParamDialogVisible"
|
|
263
|
+
v-if="scriptParamDialogVisible"
|
|
264
|
+
:show-close="true"
|
|
265
|
+
custom-class="dialog-style list-dialog"
|
|
266
|
+
v-dialog-drag
|
|
267
|
+
:close-on-click-modal="false"
|
|
268
|
+
:close-on-press-escape="false"
|
|
269
|
+
:destroy-on-close="true"
|
|
270
|
+
:append-to-body="true"
|
|
271
|
+
:modal-append-to-body="true"
|
|
272
|
+
>
|
|
273
|
+
<div class="cont">
|
|
274
|
+
<code-editor
|
|
275
|
+
:mode="'javascript'"
|
|
276
|
+
:readonly="false"
|
|
277
|
+
v-model="editingScriptParam"
|
|
278
|
+
ref="scriptParamEditor"
|
|
279
|
+
></code-editor>
|
|
280
|
+
</div>
|
|
281
|
+
<div slot="footer" class="dialog-footer">
|
|
282
|
+
<el-button
|
|
283
|
+
@click="scriptParamDialogVisible = false"
|
|
284
|
+
class="button-sty"
|
|
285
|
+
icon="el-icon-close"
|
|
286
|
+
>
|
|
287
|
+
{{ i18nt("designer.hint.cancel") }}
|
|
288
|
+
</el-button>
|
|
289
|
+
<el-button
|
|
290
|
+
type="primary"
|
|
291
|
+
@click="saveDynamicFieldScriptParam"
|
|
292
|
+
class="button-sty"
|
|
293
|
+
icon="el-icon-check"
|
|
294
|
+
>
|
|
295
|
+
{{ i18nt("designer.hint.confirm") }}
|
|
296
|
+
</el-button>
|
|
297
|
+
</div>
|
|
298
|
+
</el-dialog>
|
|
299
|
+
</div>
|
|
300
|
+
</template>
|
|
301
|
+
|
|
302
|
+
<script>
|
|
303
|
+
import { fieldControlTreeOptions, commitLocalFieldRules } from "@base/components/xform/form-render/fieldControlEngine";
|
|
304
|
+
import i18n from "../../../../components/xform/utils/i18n";
|
|
305
|
+
|
|
306
|
+
const NO_VALUE_OPERATORS = ["empty", "notEmpty"];
|
|
307
|
+
|
|
308
|
+
export default {
|
|
309
|
+
name: "form-dynamicField-setting",
|
|
310
|
+
mixins: [i18n],
|
|
311
|
+
props: {
|
|
312
|
+
designer: Object,
|
|
313
|
+
formConfig: Object,
|
|
314
|
+
},
|
|
315
|
+
data() {
|
|
316
|
+
return {
|
|
317
|
+
ruleDialogVisible: false,
|
|
318
|
+
scriptParamDialogVisible: false,
|
|
319
|
+
editingScriptParam: "",
|
|
320
|
+
editingRules: [],
|
|
321
|
+
operatorOptions: [
|
|
322
|
+
{ label: "等于", value: "eq" },
|
|
323
|
+
{ label: "不等于", value: "ne" },
|
|
324
|
+
{ label: "大于", value: "gt" },
|
|
325
|
+
{ label: "小于", value: "lt" },
|
|
326
|
+
{ label: "大于等于", value: "ge" },
|
|
327
|
+
{ label: "小于等于", value: "le" },
|
|
328
|
+
{ label: "属于(逗号分隔)", value: "in" },
|
|
329
|
+
{ label: "不属于(逗号分隔)", value: "nin" },
|
|
330
|
+
{ label: "包含", value: "includes" },
|
|
331
|
+
{ label: "为空", value: "empty" },
|
|
332
|
+
{ label: "不为空", value: "notEmpty" },
|
|
333
|
+
],
|
|
334
|
+
};
|
|
335
|
+
},
|
|
336
|
+
computed: {
|
|
337
|
+
fieldControlTreeState() {
|
|
338
|
+
const list = (this.designer && this.designer.widgetList) || [];
|
|
339
|
+
try {
|
|
340
|
+
return { options: fieldControlTreeOptions(list), error: "" };
|
|
341
|
+
} catch (error) {
|
|
342
|
+
return { options: [], error: error.message || "动态规则目标无效" };
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
// 带层级的字段/容器候选(整个表单)
|
|
346
|
+
treeOptions() {
|
|
347
|
+
return this.fieldControlTreeState.options;
|
|
348
|
+
},
|
|
349
|
+
},
|
|
350
|
+
methods: {
|
|
351
|
+
op_noValue(operator) {
|
|
352
|
+
return NO_VALUE_OPERATORS.indexOf(operator) > -1;
|
|
353
|
+
},
|
|
354
|
+
// 选中态/过滤用的纯文本标签
|
|
355
|
+
optPlainLabel(n) {
|
|
356
|
+
if (n.isContainer) {
|
|
357
|
+
return "[" + this.containerTypeLabel(n.type) + "] " + n.baseLabel;
|
|
358
|
+
}
|
|
359
|
+
return n.baseLabel;
|
|
360
|
+
},
|
|
361
|
+
containerTypeLabel(type) {
|
|
362
|
+
const map = {
|
|
363
|
+
grid: "栅格",
|
|
364
|
+
table: "表格布局",
|
|
365
|
+
"h5-table": "H5表格",
|
|
366
|
+
tab: "标签页",
|
|
367
|
+
"tab-pane": "标签项",
|
|
368
|
+
card: "卡片",
|
|
369
|
+
"vf-box": "区块",
|
|
370
|
+
panel: "面板",
|
|
371
|
+
detail: "单据详情",
|
|
372
|
+
"detail-plain": "单据详情(简洁)",
|
|
373
|
+
"detail-pane": "详情面板",
|
|
374
|
+
"detail-h5": "H5详情",
|
|
375
|
+
"h5-card": "H5卡片",
|
|
376
|
+
"h5-card-pane": "H5卡片面板",
|
|
377
|
+
"sub-form": "子表单",
|
|
378
|
+
"grid-sub-form": "网格子表单",
|
|
379
|
+
};
|
|
380
|
+
return map[type] || type;
|
|
381
|
+
},
|
|
382
|
+
genId() {
|
|
383
|
+
return "fdr_" + Date.now() + "_" + Math.floor(Math.random() * 10000);
|
|
384
|
+
},
|
|
385
|
+
editDynamicFieldScriptParam() {
|
|
386
|
+
this.editingScriptParam = this.formConfig.dynamicFieldScriptParam || "";
|
|
387
|
+
this.scriptParamDialogVisible = true;
|
|
388
|
+
},
|
|
389
|
+
saveDynamicFieldScriptParam() {
|
|
390
|
+
const codeHints = this.$refs.scriptParamEditor.getEditorAnnotations();
|
|
391
|
+
let syntaxErrorFlag = false;
|
|
392
|
+
if (codeHints && codeHints.length > 0) {
|
|
393
|
+
codeHints.forEach((chItem) => {
|
|
394
|
+
if (chItem.type === "error") {
|
|
395
|
+
syntaxErrorFlag = true;
|
|
396
|
+
}
|
|
397
|
+
});
|
|
398
|
+
if (syntaxErrorFlag) {
|
|
399
|
+
this.$message.error(
|
|
400
|
+
this.i18nt("designer.setting.syntaxCheckWarning")
|
|
401
|
+
);
|
|
402
|
+
return;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
this.formConfig.dynamicFieldScriptParam = this.editingScriptParam;
|
|
406
|
+
this.scriptParamDialogVisible = false;
|
|
407
|
+
},
|
|
408
|
+
openRuleDialog() {
|
|
409
|
+
this.editingRules = JSON.parse(
|
|
410
|
+
JSON.stringify(this.formConfig.dynamicFieldRules || [])
|
|
411
|
+
);
|
|
412
|
+
this.editingRules.forEach((rule) => {
|
|
413
|
+
if (!rule.id) rule.id = this.genId();
|
|
414
|
+
if (!rule.logic) rule.logic = "and";
|
|
415
|
+
if (!rule.conditions) rule.conditions = [];
|
|
416
|
+
if (!rule.targets) rule.targets = [];
|
|
417
|
+
});
|
|
418
|
+
this.ruleDialogVisible = true;
|
|
419
|
+
},
|
|
420
|
+
addRule() {
|
|
421
|
+
this.editingRules.push({
|
|
422
|
+
id: this.genId(),
|
|
423
|
+
logic: "and",
|
|
424
|
+
conditions: [{ field: "", operator: "eq", value: "" }],
|
|
425
|
+
targets: [
|
|
426
|
+
{
|
|
427
|
+
field: "",
|
|
428
|
+
visible: undefined,
|
|
429
|
+
required: undefined,
|
|
430
|
+
readonly: undefined,
|
|
431
|
+
disabled: undefined,
|
|
432
|
+
},
|
|
433
|
+
],
|
|
434
|
+
});
|
|
435
|
+
},
|
|
436
|
+
removeRule(idx) {
|
|
437
|
+
this.editingRules.splice(idx, 1);
|
|
438
|
+
},
|
|
439
|
+
addCondition(rule) {
|
|
440
|
+
rule.conditions.push({ field: "", operator: "eq", value: "" });
|
|
441
|
+
},
|
|
442
|
+
removeCondition(rule, idx) {
|
|
443
|
+
rule.conditions.splice(idx, 1);
|
|
444
|
+
},
|
|
445
|
+
addTarget(rule) {
|
|
446
|
+
rule.targets.push({
|
|
447
|
+
field: "",
|
|
448
|
+
visible: undefined,
|
|
449
|
+
required: undefined,
|
|
450
|
+
readonly: undefined,
|
|
451
|
+
disabled: undefined,
|
|
452
|
+
});
|
|
453
|
+
},
|
|
454
|
+
removeTarget(rule, idx) {
|
|
455
|
+
rule.targets.splice(idx, 1);
|
|
456
|
+
},
|
|
457
|
+
saveRules() {
|
|
458
|
+
try {
|
|
459
|
+
this.formConfig.dynamicFieldRules = commitLocalFieldRules(
|
|
460
|
+
this.editingRules, this.designer?.widgetList || []);
|
|
461
|
+
this.ruleDialogVisible = false;
|
|
462
|
+
} catch (error) { this.$message.error(error.message); }
|
|
463
|
+
},
|
|
464
|
+
},
|
|
465
|
+
};
|
|
466
|
+
</script>
|
|
467
|
+
|
|
468
|
+
<style lang="scss" scoped>
|
|
469
|
+
.tip-text {
|
|
470
|
+
font-size: 12px;
|
|
471
|
+
color: #909399;
|
|
472
|
+
line-height: 1.4;
|
|
473
|
+
margin-top: 2px;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.tree-options-error {
|
|
477
|
+
color: #f56c6c;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.rule-list {
|
|
481
|
+
max-height: 56vh;
|
|
482
|
+
overflow-y: auto;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.rule-card {
|
|
486
|
+
border: 1px solid #ebeef5;
|
|
487
|
+
border-radius: 4px;
|
|
488
|
+
padding: 10px 12px;
|
|
489
|
+
margin-bottom: 12px;
|
|
490
|
+
background: #fafafa;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.rule-card-header {
|
|
494
|
+
display: flex;
|
|
495
|
+
justify-content: space-between;
|
|
496
|
+
align-items: center;
|
|
497
|
+
margin-bottom: 6px;
|
|
498
|
+
|
|
499
|
+
.rule-title {
|
|
500
|
+
font-weight: bold;
|
|
501
|
+
font-size: 13px;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.rule-section {
|
|
506
|
+
margin-top: 6px;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.rule-section-title {
|
|
510
|
+
display: flex;
|
|
511
|
+
align-items: center;
|
|
512
|
+
gap: 8px;
|
|
513
|
+
font-size: 13px;
|
|
514
|
+
color: #606266;
|
|
515
|
+
margin-bottom: 6px;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.rule-row {
|
|
519
|
+
display: flex;
|
|
520
|
+
align-items: center;
|
|
521
|
+
gap: 6px;
|
|
522
|
+
margin-bottom: 6px;
|
|
523
|
+
flex-wrap: wrap;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.cell-field {
|
|
527
|
+
width: 180px;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.cell-op {
|
|
531
|
+
width: 120px;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.cell-value {
|
|
535
|
+
width: 130px;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.cell-tri {
|
|
539
|
+
width: 92px;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.target-attr {
|
|
543
|
+
display: flex;
|
|
544
|
+
align-items: center;
|
|
545
|
+
gap: 2px;
|
|
546
|
+
|
|
547
|
+
.attr-label {
|
|
548
|
+
font-size: 12px;
|
|
549
|
+
color: #909399;
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.danger-text {
|
|
554
|
+
color: #f56c6c;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.opt-container {
|
|
558
|
+
color: #409eff;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.opt-tag {
|
|
562
|
+
color: #909399;
|
|
563
|
+
font-size: 12px;
|
|
564
|
+
margin-right: 4px;
|
|
565
|
+
}
|
|
566
|
+
</style>
|
|
567
|
+
|
|
568
|
+
<!-- 弹框挂载到 body,以独立类名隔离样式,并覆盖设置面板的控件宽度。 -->
|
|
569
|
+
<style lang="scss">
|
|
570
|
+
.el-dialog.dynamic-field-rule-dialog {
|
|
571
|
+
display: flex;
|
|
572
|
+
flex-direction: column;
|
|
573
|
+
max-width: calc(100vw - 32px);
|
|
574
|
+
max-height: 88vh;
|
|
575
|
+
margin-bottom: 0;
|
|
576
|
+
border-radius: 8px;
|
|
577
|
+
|
|
578
|
+
> .el-dialog__header {
|
|
579
|
+
flex: none;
|
|
580
|
+
padding: 20px 24px;
|
|
581
|
+
border-bottom: 1px solid #ebeef5;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
> .el-dialog__body {
|
|
585
|
+
display: flex;
|
|
586
|
+
flex-direction: column;
|
|
587
|
+
min-height: 0;
|
|
588
|
+
padding: 16px 24px;
|
|
589
|
+
overflow: hidden;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
> .el-dialog__footer {
|
|
593
|
+
flex: none;
|
|
594
|
+
padding: 14px 24px;
|
|
595
|
+
border-top: 1px solid #ebeef5;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.rule-dialog-summary {
|
|
599
|
+
flex: none;
|
|
600
|
+
margin-bottom: 14px;
|
|
601
|
+
color: #909399;
|
|
602
|
+
font-size: 13px;
|
|
603
|
+
line-height: 20px;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.rule-list {
|
|
607
|
+
min-height: 0;
|
|
608
|
+
max-height: none;
|
|
609
|
+
overflow-y: auto;
|
|
610
|
+
overflow-x: hidden;
|
|
611
|
+
padding-right: 4px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.rule-empty {
|
|
615
|
+
padding: 40px 12px;
|
|
616
|
+
text-align: center;
|
|
617
|
+
color: #909399;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.rule-card {
|
|
621
|
+
padding: 0 16px 16px;
|
|
622
|
+
margin-bottom: 16px;
|
|
623
|
+
border: 1px solid #e4e7ed;
|
|
624
|
+
border-radius: 6px;
|
|
625
|
+
background: #fff;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.rule-card-header {
|
|
629
|
+
min-height: 44px;
|
|
630
|
+
margin: 0 -16px 14px;
|
|
631
|
+
padding: 0 16px;
|
|
632
|
+
background: #f5f7fa;
|
|
633
|
+
border-bottom: 1px solid #ebeef5;
|
|
634
|
+
border-radius: 6px 6px 0 0;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.rule-title { font-size: 14px; color: #303133; }
|
|
638
|
+
.rule-section + .rule-section { margin-top: 14px; padding-top: 14px; border-top: 1px dashed #e4e7ed; }
|
|
639
|
+
.rule-section-title { margin-bottom: 12px; gap: 12px; }
|
|
640
|
+
|
|
641
|
+
.rule-row {
|
|
642
|
+
display: grid;
|
|
643
|
+
gap: 10px;
|
|
644
|
+
margin-bottom: 10px;
|
|
645
|
+
min-width: 0;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.condition-row { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) 28px; }
|
|
649
|
+
.target-row {
|
|
650
|
+
grid-template-columns: repeat(4, minmax(0, 1fr)) 28px;
|
|
651
|
+
padding: 12px;
|
|
652
|
+
background: #fafbfd;
|
|
653
|
+
border: 1px solid #ebeef5;
|
|
654
|
+
border-radius: 4px;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.target-row > .cell-field { grid-column: 1 / 5; }
|
|
658
|
+
.target-row > .row-remove { grid-column: 5; grid-row: 1; }
|
|
659
|
+
.target-attr { display: flex; flex-direction: column; align-items: stretch; gap: 6px; min-width: 0; }
|
|
660
|
+
.target-attr .attr-label { color: #606266; font-size: 12px; line-height: 18px; }
|
|
661
|
+
|
|
662
|
+
.rule-row .el-select,
|
|
663
|
+
.rule-row .el-input,
|
|
664
|
+
.rule-row .cell-field,
|
|
665
|
+
.rule-row .cell-op,
|
|
666
|
+
.rule-row .cell-value,
|
|
667
|
+
.rule-row .cell-tri { width: 100% !important; min-width: 0; margin: 0; }
|
|
668
|
+
|
|
669
|
+
.row-remove { width: 28px; margin: 0; padding: 8px 0; }
|
|
670
|
+
.rule-dialog-footer { display: flex; align-items: center; gap: 10px; }
|
|
671
|
+
.rule-dialog-footer .el-button { margin: 0; }
|
|
672
|
+
.rule-count { margin-right: auto; font-size: 13px; color: #909399; }
|
|
673
|
+
|
|
674
|
+
@media (max-width: 600px) {
|
|
675
|
+
> .el-dialog__body { padding: 12px; }
|
|
676
|
+
.condition-row { grid-template-columns: minmax(0, 1fr) 28px; }
|
|
677
|
+
.condition-row > .cell-field { grid-column: 1; }
|
|
678
|
+
.condition-row > .row-remove { grid-column: 2; grid-row: 1; }
|
|
679
|
+
.condition-row > .cell-op, .condition-row > .cell-value { grid-column: 1; }
|
|
680
|
+
.target-row { grid-template-columns: repeat(2, minmax(0, 1fr)) 28px; }
|
|
681
|
+
.target-row > .cell-field { grid-column: 1 / 3; }
|
|
682
|
+
.target-row > .row-remove { grid-column: 3; }
|
|
683
|
+
.target-attr:nth-of-type(odd) { grid-column: 1; }
|
|
684
|
+
.target-attr:nth-of-type(even) { grid-column: 2; }
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
</style>
|