@fecp/designer 5.3.12 → 5.3.14
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/es/designer.css +165 -87
- package/es/packages/designer/package.json.mjs +1 -1
- package/es/packages/designer/src/api/index.mjs +3 -3
- package/es/packages/designer/src/components/OnlyFLowConfigButton.vue2.mjs +8 -3
- package/es/packages/designer/src/packages/form/property/index.vue.mjs +6 -6
- package/es/packages/designer/src/packages/form/property/subTable.vue.mjs +211 -57
- package/es/packages/designer/src/packages/form/property/widgets.vue.mjs +21 -4
- package/es/packages/designer/src/packages/table/property/customBtn.vue.mjs +10 -0
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +2 -2
- package/es/packages/vue/src/components/forms/formItem/FormItem.vue.mjs +4 -3
- package/es/packages/vue/src/components/forms/subTable/SubTable.vue.mjs +58 -29
- package/es/packages/vue/src/components/table/CustomButtons.vue.mjs +29 -3
- package/es/packages/vue/src/components/table/DynamicQuery.vue.mjs +21 -2
- package/es/packages/vue/src/components/table/Table.vue.mjs +27 -12
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +26 -16
- package/lib/designer.css +165 -87
- package/lib/packages/designer/package.json.js +1 -1
- package/lib/packages/designer/src/api/index.js +3 -3
- package/lib/packages/designer/src/components/OnlyFLowConfigButton.vue2.js +8 -3
- package/lib/packages/designer/src/packages/form/property/subTable.vue.js +210 -56
- package/lib/packages/designer/src/packages/form/property/widgets.vue.js +44 -27
- package/lib/packages/designer/src/packages/table/property/customBtn.vue.js +10 -0
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +2 -2
- package/lib/packages/vue/src/components/forms/formItem/FormItem.vue.js +4 -3
- package/lib/packages/vue/src/components/forms/subTable/SubTable.vue.js +58 -29
- package/lib/packages/vue/src/components/table/CustomButtons.vue.js +29 -3
- package/lib/packages/vue/src/components/table/DynamicQuery.vue.js +21 -2
- package/lib/packages/vue/src/components/table/Table.vue.js +27 -12
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +25 -15
- package/package.json +1 -1
package/es/designer.css
CHANGED
|
@@ -1090,45 +1090,45 @@
|
|
|
1090
1090
|
height: 100%;
|
|
1091
1091
|
color: #909399;
|
|
1092
1092
|
font-size: 14px;
|
|
1093
|
-
}.condition-config-wrapper[data-v-
|
|
1093
|
+
}.condition-config-wrapper[data-v-b83e4b73] {
|
|
1094
1094
|
display: flex;
|
|
1095
1095
|
flex-direction: column;
|
|
1096
1096
|
width: 100%;
|
|
1097
1097
|
}
|
|
1098
|
-
.condition-desc[data-v-
|
|
1098
|
+
.condition-desc[data-v-b83e4b73] {
|
|
1099
1099
|
font-size: 12px;
|
|
1100
1100
|
font-weight: initial;
|
|
1101
1101
|
color: #aaaaaa;
|
|
1102
1102
|
}
|
|
1103
|
-
.setting-btn[data-v-
|
|
1103
|
+
.setting-btn[data-v-b83e4b73] {
|
|
1104
1104
|
padding-left: 12px;
|
|
1105
1105
|
position: relative;
|
|
1106
1106
|
}
|
|
1107
|
-
.setting-btn .edit-btn[data-v-
|
|
1108
|
-
.setting-btn .delete-btn[data-v-
|
|
1107
|
+
.setting-btn .edit-btn[data-v-b83e4b73],
|
|
1108
|
+
.setting-btn .delete-btn[data-v-b83e4b73] {
|
|
1109
1109
|
display: none;
|
|
1110
1110
|
position: absolute;
|
|
1111
1111
|
right: 12px;
|
|
1112
1112
|
}
|
|
1113
|
-
.setting-btn .delete-btn[data-v-
|
|
1114
|
-
right:
|
|
1113
|
+
.setting-btn .delete-btn[data-v-b83e4b73] {
|
|
1114
|
+
right: 30px;
|
|
1115
1115
|
color: #ff4d4f;
|
|
1116
1116
|
}
|
|
1117
|
-
.setting-btn.is-configured[data-v-
|
|
1117
|
+
.setting-btn.is-configured[data-v-b83e4b73] {
|
|
1118
1118
|
background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
|
|
1119
1119
|
border-color: #91d5ff;
|
|
1120
1120
|
color: #1890ff;
|
|
1121
1121
|
justify-content: flex-start;
|
|
1122
1122
|
}
|
|
1123
|
-
.setting-btn.is-configured[data-v-
|
|
1123
|
+
.setting-btn.is-configured[data-v-b83e4b73]:hover {
|
|
1124
1124
|
background: linear-gradient(135deg, #d6f0ff 0%, #e0f2ff 100%);
|
|
1125
1125
|
border-color: #409eff;
|
|
1126
1126
|
}
|
|
1127
|
-
.setting-btn.is-configured:hover .edit-btn[data-v-
|
|
1128
|
-
.setting-btn.is-configured:hover .delete-btn[data-v-
|
|
1127
|
+
.setting-btn.is-configured:hover .edit-btn[data-v-b83e4b73],
|
|
1128
|
+
.setting-btn.is-configured:hover .delete-btn[data-v-b83e4b73] {
|
|
1129
1129
|
display: inline-block;
|
|
1130
1130
|
}
|
|
1131
|
-
.setting-btn.is-configured .edit-btn[data-v-
|
|
1131
|
+
.setting-btn.is-configured .edit-btn[data-v-b83e4b73] {
|
|
1132
1132
|
display: inline-block;
|
|
1133
1133
|
}.field-variable[data-v-c2ceeb58] {
|
|
1134
1134
|
height: 100%;
|
|
@@ -3208,17 +3208,17 @@ to {
|
|
|
3208
3208
|
width: 100%;
|
|
3209
3209
|
}
|
|
3210
3210
|
|
|
3211
|
-
.collapse-header[data-v-
|
|
3211
|
+
.collapse-header[data-v-705ff290] {
|
|
3212
3212
|
display: flex;
|
|
3213
3213
|
align-items: center;
|
|
3214
3214
|
justify-content: space-between;
|
|
3215
3215
|
width: 100%;
|
|
3216
3216
|
padding-right: 20px;
|
|
3217
3217
|
}
|
|
3218
|
-
.setting[data-v-
|
|
3218
|
+
.setting[data-v-705ff290] .el-collapse-item__content {
|
|
3219
3219
|
position: relative;
|
|
3220
3220
|
}
|
|
3221
|
-
.field-type-select[data-v-
|
|
3221
|
+
.field-type-select[data-v-705ff290] {
|
|
3222
3222
|
position: absolute;
|
|
3223
3223
|
top: 11px;
|
|
3224
3224
|
right: 16px;
|
|
@@ -3229,43 +3229,121 @@ to {
|
|
|
3229
3229
|
transition: all 0.3s;
|
|
3230
3230
|
border-radius: 4px;
|
|
3231
3231
|
}
|
|
3232
|
-
.field-type-select[data-v-
|
|
3232
|
+
.field-type-select[data-v-705ff290] .el-select__wrapper {
|
|
3233
3233
|
background: transparent;
|
|
3234
3234
|
box-shadow: none;
|
|
3235
3235
|
}
|
|
3236
|
-
.field-type-select[data-v-
|
|
3236
|
+
.field-type-select[data-v-705ff290] .el-select__selected-item {
|
|
3237
3237
|
text-align: center;
|
|
3238
3238
|
}
|
|
3239
|
-
.width-input[data-v-
|
|
3239
|
+
.width-input[data-v-705ff290] {
|
|
3240
3240
|
width: 100%;
|
|
3241
3241
|
}
|
|
3242
|
-
.data-source-fields[data-v-
|
|
3242
|
+
.data-source-fields[data-v-705ff290] {
|
|
3243
3243
|
display: flex;
|
|
3244
3244
|
flex-direction: column;
|
|
3245
3245
|
gap: 8px;
|
|
3246
3246
|
margin-bottom: 18px;
|
|
3247
3247
|
}
|
|
3248
|
-
.data-source-fields .field-item[data-v-
|
|
3248
|
+
.data-source-fields .field-item[data-v-705ff290] {
|
|
3249
3249
|
display: flex;
|
|
3250
3250
|
align-items: center;
|
|
3251
3251
|
gap: 8px;
|
|
3252
3252
|
}
|
|
3253
|
-
.data-source-fields .field-item .field-label[data-v-
|
|
3253
|
+
.data-source-fields .field-item .field-label[data-v-705ff290] {
|
|
3254
3254
|
width: 80px;
|
|
3255
3255
|
font-size: 13px;
|
|
3256
3256
|
color: #606266;
|
|
3257
3257
|
text-align: right;
|
|
3258
3258
|
flex-shrink: 0;
|
|
3259
3259
|
}
|
|
3260
|
-
.data-source-fields .field-item .field-label[data-v-
|
|
3260
|
+
.data-source-fields .field-item .field-label[data-v-705ff290]::after {
|
|
3261
3261
|
content: ":";
|
|
3262
3262
|
}
|
|
3263
|
-
.data-source-fields .field-item .el-input[data-v-
|
|
3263
|
+
.data-source-fields .field-item .el-input[data-v-705ff290] {
|
|
3264
3264
|
flex: 1;
|
|
3265
3265
|
}
|
|
3266
|
-
[data-v-
|
|
3266
|
+
[data-v-705ff290] .el-form-item__content {
|
|
3267
3267
|
flex-wrap: wrap !important;
|
|
3268
|
-
}
|
|
3268
|
+
}
|
|
3269
|
+
.buttons-table[data-v-8ebdd5a8] {
|
|
3270
|
+
width: 100%;
|
|
3271
|
+
border: 1px solid #dcdfe6;
|
|
3272
|
+
border-radius: 4px;
|
|
3273
|
+
overflow: hidden;
|
|
3274
|
+
}
|
|
3275
|
+
.buttons-header[data-v-8ebdd5a8] {
|
|
3276
|
+
display: flex;
|
|
3277
|
+
background-color: #f5f7fa;
|
|
3278
|
+
height: 26px;
|
|
3279
|
+
line-height: 26px;
|
|
3280
|
+
}
|
|
3281
|
+
.buttons-cell[data-v-8ebdd5a8] {
|
|
3282
|
+
padding: 0px 12px;
|
|
3283
|
+
font-weight: 500;
|
|
3284
|
+
font-size: 13px;
|
|
3285
|
+
color: #606266;
|
|
3286
|
+
border-right: 1px solid #dcdfe6;
|
|
3287
|
+
display: flex;
|
|
3288
|
+
align-items: center;
|
|
3289
|
+
}
|
|
3290
|
+
.buttons-cell[data-v-8ebdd5a8]:last-child {
|
|
3291
|
+
border-right: none;
|
|
3292
|
+
}
|
|
3293
|
+
.name-header[data-v-8ebdd5a8] {
|
|
3294
|
+
flex: 1;
|
|
3295
|
+
min-width: 100px;
|
|
3296
|
+
font-size: 12px;
|
|
3297
|
+
}
|
|
3298
|
+
.action-header[data-v-8ebdd5a8] {
|
|
3299
|
+
width: 180px;
|
|
3300
|
+
text-align: center;
|
|
3301
|
+
}
|
|
3302
|
+
.buttons-row[data-v-8ebdd5a8] {
|
|
3303
|
+
display: flex;
|
|
3304
|
+
border-top: 1px solid #ebeef5;
|
|
3305
|
+
}
|
|
3306
|
+
.name-cell[data-v-8ebdd5a8] {
|
|
3307
|
+
flex: 1;
|
|
3308
|
+
min-width: 100px;
|
|
3309
|
+
}
|
|
3310
|
+
.action-cell[data-v-8ebdd5a8] {
|
|
3311
|
+
width: 180px;
|
|
3312
|
+
display: flex;
|
|
3313
|
+
align-items: center;
|
|
3314
|
+
justify-content: center;
|
|
3315
|
+
gap: 4px;
|
|
3316
|
+
padding: 5px;
|
|
3317
|
+
}
|
|
3318
|
+
.buttons-footer[data-v-8ebdd5a8] {
|
|
3319
|
+
padding: 8px 0;
|
|
3320
|
+
display: flex;
|
|
3321
|
+
gap: 8px;
|
|
3322
|
+
}
|
|
3323
|
+
.buttons-config-container[data-v-8ebdd5a8] {
|
|
3324
|
+
width: 100%;
|
|
3325
|
+
}
|
|
3326
|
+
.button-dropdown-item[data-v-8ebdd5a8] {
|
|
3327
|
+
padding: 8px 12px;
|
|
3328
|
+
}
|
|
3329
|
+
.button-dropdown-content[data-v-8ebdd5a8] {
|
|
3330
|
+
display: flex;
|
|
3331
|
+
justify-content: space-between;
|
|
3332
|
+
align-items: center;
|
|
3333
|
+
width: 100%;
|
|
3334
|
+
min-width: 200px;
|
|
3335
|
+
}
|
|
3336
|
+
.button-name[data-v-8ebdd5a8] {
|
|
3337
|
+
font-size: 13px;
|
|
3338
|
+
color: #606266;
|
|
3339
|
+
}
|
|
3340
|
+
.button-type[data-v-8ebdd5a8] {
|
|
3341
|
+
font-size: 11px;
|
|
3342
|
+
color: #909399;
|
|
3343
|
+
padding: 2px 4px;
|
|
3344
|
+
margin: 2px 0;
|
|
3345
|
+
}
|
|
3346
|
+
.root-property[data-v-e88c3a83] {
|
|
3269
3347
|
width: 300px;
|
|
3270
3348
|
background-color: #fff;
|
|
3271
3349
|
}
|
|
@@ -5104,12 +5182,12 @@ body,
|
|
|
5104
5182
|
font-size: 13px;
|
|
5105
5183
|
color: #606266;
|
|
5106
5184
|
margin-left: 8px;
|
|
5107
|
-
}.custom-buttons[data-v-
|
|
5185
|
+
}.custom-buttons[data-v-d1552802] {
|
|
5108
5186
|
display: flex;
|
|
5109
5187
|
align-items: center;
|
|
5110
5188
|
margin: 0 0 0 0;
|
|
5111
5189
|
}
|
|
5112
|
-
.back-icon[data-v-
|
|
5190
|
+
.back-icon[data-v-d1552802] {
|
|
5113
5191
|
display: flex;
|
|
5114
5192
|
align-items: center;
|
|
5115
5193
|
justify-content: center;
|
|
@@ -5123,14 +5201,14 @@ body,
|
|
|
5123
5201
|
margin-right: -6px;
|
|
5124
5202
|
margin-bottom: 8px;
|
|
5125
5203
|
}
|
|
5126
|
-
.back-icon .el-icon[data-v-
|
|
5204
|
+
.back-icon .el-icon[data-v-d1552802] {
|
|
5127
5205
|
font-size: 16px;
|
|
5128
5206
|
font-weight: bold;
|
|
5129
5207
|
}
|
|
5130
|
-
.back-icon[data-v-
|
|
5208
|
+
.back-icon[data-v-d1552802]:hover {
|
|
5131
5209
|
opacity: 0.7;
|
|
5132
5210
|
}
|
|
5133
|
-
.template-name[data-v-
|
|
5211
|
+
.template-name[data-v-d1552802] {
|
|
5134
5212
|
font-size: 16px;
|
|
5135
5213
|
font-weight: 600;
|
|
5136
5214
|
color: #303133;
|
|
@@ -5491,21 +5569,21 @@ body,
|
|
|
5491
5569
|
outline: none;
|
|
5492
5570
|
box-shadow: 0 1px 0 0 #c0c4cc inset, 0 -1px 0 0 #c0c4cc inset, -1px 0 0 0 #c0c4cc inset;
|
|
5493
5571
|
}
|
|
5494
|
-
.info-icon[data-v-
|
|
5572
|
+
.info-icon[data-v-bac36800] {
|
|
5495
5573
|
margin-left: 4px;
|
|
5496
5574
|
color: #f5b041;
|
|
5497
5575
|
cursor: help;
|
|
5498
5576
|
font-size: 14px;
|
|
5499
5577
|
}
|
|
5500
|
-
.credit-icon[data-v-
|
|
5578
|
+
.credit-icon[data-v-bac36800] {
|
|
5501
5579
|
color: #2e8bff;
|
|
5502
5580
|
margin-right: 2px;
|
|
5503
5581
|
}
|
|
5504
|
-
.regulation-icon[data-v-
|
|
5582
|
+
.regulation-icon[data-v-bac36800] {
|
|
5505
5583
|
color: #f56c6c;
|
|
5506
5584
|
margin-right: 2px;
|
|
5507
5585
|
}
|
|
5508
|
-
[data-v-
|
|
5586
|
+
[data-v-bac36800] .el-form-item__label {
|
|
5509
5587
|
padding: 0 8px 0 0;
|
|
5510
5588
|
}
|
|
5511
5589
|
.el-page-header.is-contentful .el-page-header__main{border-top:1px solid var(--el-border-color-light);margin-top:16px}.el-page-header__header{align-items:center;display:flex;justify-content:space-between;line-height:24px}.el-page-header__left{align-items:center;display:flex;margin-right:40px;position:relative}.el-page-header__back{align-items:center;cursor:pointer;display:flex}.el-page-header__left .el-divider--vertical{margin:0 16px}.el-page-header__icon{align-items:center;display:flex;font-size:16px;margin-right:10px}.el-page-header__icon .el-icon{font-size:inherit}.el-page-header__title{font-size:14px;font-weight:500}.el-page-header__content{color:var(--el-text-color-primary);font-size:18px}.el-page-header__breadcrumb{margin-bottom:16px}.fec-header[data-v-93e082c1] {
|
|
@@ -5562,32 +5640,32 @@ body,
|
|
|
5562
5640
|
width: 80px;
|
|
5563
5641
|
font-size: var(--el-font-size-extra-small);
|
|
5564
5642
|
}
|
|
5565
|
-
.fec-form[data-v-
|
|
5643
|
+
.fec-form[data-v-01bfaf4f] {
|
|
5566
5644
|
height: 100%;
|
|
5567
5645
|
}
|
|
5568
|
-
[data-v-
|
|
5646
|
+
[data-v-01bfaf4f] .vgl-item {
|
|
5569
5647
|
transition: none;
|
|
5570
5648
|
}
|
|
5571
|
-
[data-v-
|
|
5649
|
+
[data-v-01bfaf4f] .vgl-item > .el-form-item {
|
|
5572
5650
|
width: 100%;
|
|
5573
5651
|
padding: 12px 8px 0 8px;
|
|
5574
5652
|
height: calc(100% - 15px);
|
|
5575
5653
|
display: flex;
|
|
5576
5654
|
}
|
|
5577
|
-
[data-v-
|
|
5655
|
+
[data-v-01bfaf4f] .vgl-item > .el-form-item.el-form-item--label-top {
|
|
5578
5656
|
flex-direction: column;
|
|
5579
5657
|
}
|
|
5580
|
-
[data-v-
|
|
5658
|
+
[data-v-01bfaf4f] .vgl-item > .el-form-item .el-form-item__label {
|
|
5581
5659
|
line-height: 20px;
|
|
5582
5660
|
display: flex;
|
|
5583
5661
|
align-items: center;
|
|
5584
5662
|
}
|
|
5585
|
-
[data-v-
|
|
5663
|
+
[data-v-01bfaf4f] .vgl-item > .el-container {
|
|
5586
5664
|
height: auto !important;
|
|
5587
|
-
}.cell-content .cell-text[data-v-
|
|
5665
|
+
}.cell-content .cell-text[data-v-77ad8323] {
|
|
5588
5666
|
display: inline-block;
|
|
5589
5667
|
}
|
|
5590
|
-
.cell-content .copy-icon[data-v-
|
|
5668
|
+
.cell-content .copy-icon[data-v-77ad8323] {
|
|
5591
5669
|
cursor: pointer;
|
|
5592
5670
|
color: #909399;
|
|
5593
5671
|
font-size: 14px;
|
|
@@ -5595,7 +5673,7 @@ body,
|
|
|
5595
5673
|
top: 4px;
|
|
5596
5674
|
margin-left: 4px;
|
|
5597
5675
|
}
|
|
5598
|
-
.cell-content .copy-icon[data-v-
|
|
5676
|
+
.cell-content .copy-icon[data-v-77ad8323]:hover {
|
|
5599
5677
|
color: #409eff;
|
|
5600
5678
|
}.fec-table-filter[data-v-366e01c3] {
|
|
5601
5679
|
display: flex;
|
|
@@ -5695,11 +5773,11 @@ body,
|
|
|
5695
5773
|
}
|
|
5696
5774
|
.filter-divider[data-v-366e01c3] .el-icon {
|
|
5697
5775
|
transition: transform 0.3s ease;
|
|
5698
|
-
}.dynamic-mode-config .dynamic-row[data-v-
|
|
5776
|
+
}.dynamic-mode-config .dynamic-row[data-v-bb55debf] {
|
|
5699
5777
|
display: flex;
|
|
5700
5778
|
align-items: center;
|
|
5701
5779
|
}
|
|
5702
|
-
.dynamic-mode-config .back-icon[data-v-
|
|
5780
|
+
.dynamic-mode-config .back-icon[data-v-bb55debf] {
|
|
5703
5781
|
display: flex;
|
|
5704
5782
|
align-items: center;
|
|
5705
5783
|
justify-content: center;
|
|
@@ -5713,11 +5791,11 @@ body,
|
|
|
5713
5791
|
margin-right: -6px;
|
|
5714
5792
|
margin-bottom: 8px;
|
|
5715
5793
|
}
|
|
5716
|
-
.dynamic-mode-config .back-icon .el-icon[data-v-
|
|
5794
|
+
.dynamic-mode-config .back-icon .el-icon[data-v-bb55debf] {
|
|
5717
5795
|
font-size: 16px;
|
|
5718
5796
|
font-weight: bold;
|
|
5719
5797
|
}
|
|
5720
|
-
.dynamic-mode-config .template-name[data-v-
|
|
5798
|
+
.dynamic-mode-config .template-name[data-v-bb55debf] {
|
|
5721
5799
|
font-size: 16px;
|
|
5722
5800
|
font-weight: 600;
|
|
5723
5801
|
color: #303133;
|
|
@@ -5729,42 +5807,42 @@ body,
|
|
|
5729
5807
|
position: relative;
|
|
5730
5808
|
margin-bottom: 8px;
|
|
5731
5809
|
}
|
|
5732
|
-
.dynamic-mode-config .tab-display-section[data-v-
|
|
5810
|
+
.dynamic-mode-config .tab-display-section[data-v-bb55debf] {
|
|
5733
5811
|
flex: 1;
|
|
5734
5812
|
min-width: 0;
|
|
5735
5813
|
margin-bottom: 8px;
|
|
5736
5814
|
}
|
|
5737
|
-
.dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-
|
|
5815
|
+
.dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-bb55debf] .el-tabs__header {
|
|
5738
5816
|
margin: 0;
|
|
5739
5817
|
}
|
|
5740
|
-
.dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-
|
|
5818
|
+
.dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-bb55debf] .el-tabs__nav-wrap::after {
|
|
5741
5819
|
height: 0;
|
|
5742
5820
|
}
|
|
5743
|
-
.dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-
|
|
5821
|
+
.dynamic-mode-config .tab-display-section .dynamic-tabs[data-v-bb55debf] .el-tabs__item {
|
|
5744
5822
|
padding: 0 12px;
|
|
5745
5823
|
}
|
|
5746
|
-
.dynamic-mode-config .search-display-section[data-v-
|
|
5824
|
+
.dynamic-mode-config .search-display-section[data-v-bb55debf] {
|
|
5747
5825
|
flex-shrink: 0;
|
|
5748
5826
|
display: flex;
|
|
5749
5827
|
align-items: center;
|
|
5750
5828
|
gap: 12px;
|
|
5751
5829
|
margin-left: auto;
|
|
5752
5830
|
}
|
|
5753
|
-
.dynamic-mode-config .search-display-section .search-input-group[data-v-
|
|
5831
|
+
.dynamic-mode-config .search-display-section .search-input-group[data-v-bb55debf] {
|
|
5754
5832
|
margin-bottom: 8px;
|
|
5755
5833
|
}
|
|
5756
|
-
.dynamic-mode-config .search-display-section .search-input-group .search-input[data-v-
|
|
5834
|
+
.dynamic-mode-config .search-display-section .search-input-group .search-input[data-v-bb55debf] {
|
|
5757
5835
|
width: 300px;
|
|
5758
5836
|
}
|
|
5759
|
-
.dynamic-mode-config .search-display-section .optBtnDraggable[data-v-
|
|
5837
|
+
.dynamic-mode-config .search-display-section .optBtnDraggable[data-v-bb55debf] {
|
|
5760
5838
|
display: flex;
|
|
5761
5839
|
align-items: center;
|
|
5762
5840
|
gap: 8px;
|
|
5763
5841
|
}
|
|
5764
|
-
.dynamic-mode-config .search-display-section .optBtn[data-v-
|
|
5842
|
+
.dynamic-mode-config .search-display-section .optBtn[data-v-bb55debf] {
|
|
5765
5843
|
position: relative;
|
|
5766
5844
|
}
|
|
5767
|
-
.dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-
|
|
5845
|
+
.dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-bb55debf] {
|
|
5768
5846
|
position: absolute;
|
|
5769
5847
|
top: -10px;
|
|
5770
5848
|
right: -10px;
|
|
@@ -5781,31 +5859,31 @@ body,
|
|
|
5781
5859
|
font-size: 12px;
|
|
5782
5860
|
z-index: 1;
|
|
5783
5861
|
}
|
|
5784
|
-
.dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-
|
|
5862
|
+
.dynamic-mode-config .search-display-section .optBtn .delete-icon[data-v-bb55debf]:hover {
|
|
5785
5863
|
background-color: #f56c6c;
|
|
5786
5864
|
}
|
|
5787
|
-
.dynamic-mode-config .search-display-section .optBtn.is-hover .delete-icon[data-v-
|
|
5865
|
+
.dynamic-mode-config .search-display-section .optBtn.is-hover .delete-icon[data-v-bb55debf] {
|
|
5788
5866
|
display: flex;
|
|
5789
5867
|
}
|
|
5790
|
-
.dynamic-mode-config .search-display-section .optBtn .elBtn[data-v-
|
|
5868
|
+
.dynamic-mode-config .search-display-section .optBtn .elBtn[data-v-bb55debf] {
|
|
5791
5869
|
pointer-events: none;
|
|
5792
5870
|
}
|
|
5793
|
-
.dynamic-mode-config .search-display-section .addLink .el-icon[data-v-
|
|
5871
|
+
.dynamic-mode-config .search-display-section .addLink .el-icon[data-v-bb55debf] {
|
|
5794
5872
|
margin-right: 4px;
|
|
5795
5873
|
}
|
|
5796
|
-
.dynamic-mode-config .expand-filter-section[data-v-
|
|
5874
|
+
.dynamic-mode-config .expand-filter-section[data-v-bb55debf] {
|
|
5797
5875
|
padding-top: 4px;
|
|
5798
5876
|
border-top: 1px solid #ebeef5;
|
|
5799
5877
|
margin-top: 4px;
|
|
5800
5878
|
}
|
|
5801
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section[data-v-
|
|
5879
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section[data-v-bb55debf] {
|
|
5802
5880
|
width: 100%;
|
|
5803
5881
|
}
|
|
5804
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form .form-items-draggable[data-v-
|
|
5882
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form .form-items-draggable[data-v-bb55debf] {
|
|
5805
5883
|
display: flex;
|
|
5806
5884
|
flex-wrap: wrap;
|
|
5807
5885
|
}
|
|
5808
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5886
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item {
|
|
5809
5887
|
padding: 2px;
|
|
5810
5888
|
border: 2px solid transparent;
|
|
5811
5889
|
border-radius: 2px;
|
|
@@ -5814,20 +5892,20 @@ body,
|
|
|
5814
5892
|
cursor: move;
|
|
5815
5893
|
margin-bottom: 4px;
|
|
5816
5894
|
}
|
|
5817
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5895
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item .el-form-item__label-wrap {
|
|
5818
5896
|
margin: 0 0 0 8px !important;
|
|
5819
5897
|
}
|
|
5820
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5898
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item .el-form-item__content {
|
|
5821
5899
|
min-width: 150px;
|
|
5822
5900
|
}
|
|
5823
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5901
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item .form-item-label {
|
|
5824
5902
|
display: flex;
|
|
5825
5903
|
align-items: center;
|
|
5826
5904
|
}
|
|
5827
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5905
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item .el-input {
|
|
5828
5906
|
width: 150px;
|
|
5829
5907
|
}
|
|
5830
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5908
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item .delete-icon {
|
|
5831
5909
|
position: absolute;
|
|
5832
5910
|
top: -10px;
|
|
5833
5911
|
right: -10px;
|
|
@@ -5844,19 +5922,19 @@ body,
|
|
|
5844
5922
|
font-size: 12px;
|
|
5845
5923
|
z-index: 1;
|
|
5846
5924
|
}
|
|
5847
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5925
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item .delete-icon:hover {
|
|
5848
5926
|
background-color: #f56c6c;
|
|
5849
5927
|
}
|
|
5850
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5928
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item.is-hover {
|
|
5851
5929
|
border: 2px dashed #7b99cb !important;
|
|
5852
5930
|
}
|
|
5853
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5931
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item.is-hover .delete-icon {
|
|
5854
5932
|
display: flex;
|
|
5855
5933
|
}
|
|
5856
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5934
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item.is-select {
|
|
5857
5935
|
border: 2px dashed #efa53a !important;
|
|
5858
5936
|
}
|
|
5859
|
-
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-
|
|
5937
|
+
.dynamic-mode-config .expand-filter-section .filter-form-section .filter-form[data-v-bb55debf] .el-form-item__label {
|
|
5860
5938
|
font-size: 13px;
|
|
5861
5939
|
color: #606266;
|
|
5862
5940
|
pointer-events: none;
|
|
@@ -5865,17 +5943,17 @@ body,
|
|
|
5865
5943
|
display: flex;
|
|
5866
5944
|
align-items: center;
|
|
5867
5945
|
}
|
|
5868
|
-
[data-v-
|
|
5946
|
+
[data-v-bb55debf] .el-checkbox-group {
|
|
5869
5947
|
display: flex;
|
|
5870
5948
|
gap: 12px;
|
|
5871
5949
|
}
|
|
5872
|
-
[data-v-
|
|
5950
|
+
[data-v-bb55debf] .el-checkbox-group .el-checkbox-button__inner {
|
|
5873
5951
|
border-radius: 4px;
|
|
5874
|
-
}.fec-table[data-v-
|
|
5952
|
+
}.fec-table[data-v-3c129bed] {
|
|
5875
5953
|
height: 100%;
|
|
5876
5954
|
flex-grow: 1;
|
|
5877
5955
|
}
|
|
5878
|
-
.fec-table-container[data-v-
|
|
5956
|
+
.fec-table-container[data-v-3c129bed] {
|
|
5879
5957
|
width: 100%;
|
|
5880
5958
|
background: #fff;
|
|
5881
5959
|
box-sizing: border-box;
|
|
@@ -5885,30 +5963,30 @@ body,
|
|
|
5885
5963
|
overflow: hidden;
|
|
5886
5964
|
flex-grow: 1;
|
|
5887
5965
|
}
|
|
5888
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
5966
|
+
.fec-table-container .fec-vxe-table[data-v-3c129bed] {
|
|
5889
5967
|
flex: 1;
|
|
5890
5968
|
min-height: 0;
|
|
5891
5969
|
overflow: hidden;
|
|
5892
5970
|
}
|
|
5893
|
-
.fec-table-container[data-v-
|
|
5971
|
+
.fec-table-container[data-v-3c129bed] .vxe-table {
|
|
5894
5972
|
font-size: 14px;
|
|
5895
5973
|
}
|
|
5896
|
-
.fec-table-container[data-v-
|
|
5974
|
+
.fec-table-container[data-v-3c129bed] .vxe-table .vxe-table--body-wrapper {
|
|
5897
5975
|
overflow: auto;
|
|
5898
5976
|
}
|
|
5899
|
-
.fec-table-container[data-v-
|
|
5977
|
+
.fec-table-container[data-v-3c129bed] .vxe-table .vxe-header--column {
|
|
5900
5978
|
background-color: #f5f7fa;
|
|
5901
5979
|
}
|
|
5902
|
-
.fec-table-container[data-v-
|
|
5980
|
+
.fec-table-container[data-v-3c129bed] .vxe-table .vxe-header--column .vxe-cell {
|
|
5903
5981
|
height: 40px !important;
|
|
5904
5982
|
min-height: 40px !important;
|
|
5905
5983
|
}
|
|
5906
|
-
.fec-table-container[data-v-
|
|
5984
|
+
.fec-table-container[data-v-3c129bed] .vxe-table .vxe-body--column .vxe-cell {
|
|
5907
5985
|
padding: 6px !important;
|
|
5908
5986
|
min-height: 40px !important;
|
|
5909
5987
|
}
|
|
5910
|
-
.fec-table-container[data-v-
|
|
5911
|
-
.fec-table-container[data-v-
|
|
5988
|
+
.fec-table-container[data-v-3c129bed] .vxe-table .vxe-body--column .c--tooltip,
|
|
5989
|
+
.fec-table-container[data-v-3c129bed] .vxe-table .vxe-body--column .c--title {
|
|
5912
5990
|
height: 40px !important;
|
|
5913
5991
|
min-height: 40px !important;
|
|
5914
5992
|
}:root,:host{--van-black: #000;--van-white: #fff;--van-gray-1: #f7f8fa;--van-gray-2: #f2f3f5;--van-gray-3: #ebedf0;--van-gray-4: #dcdee0;--van-gray-5: #c8c9cc;--van-gray-6: #969799;--van-gray-7: #646566;--van-gray-8: #323233;--van-red: #ee0a24;--van-blue: #1989fa;--van-orange: #ff976a;--van-orange-dark: #ed6a0c;--van-orange-light: #fffbe8;--van-green: #07c160;--van-gradient-red: linear-gradient(to right, #ff6034, #ee0a24);--van-gradient-orange: linear-gradient(to right, #ffd01e, #ff8917);--van-primary-color: var(--van-blue);--van-success-color: var(--van-green);--van-danger-color: var(--van-red);--van-warning-color: var(--van-orange);--van-text-color: var(--van-gray-8);--van-text-color-2: var(--van-gray-6);--van-text-color-3: var(--van-gray-5);--van-active-color: var(--van-gray-2);--van-active-opacity: .6;--van-disabled-opacity: .5;--van-background: var(--van-gray-1);--van-background-2: var(--van-white);--van-background-3: var(--van-white);--van-padding-base: 4px;--van-padding-xs: 8px;--van-padding-sm: 12px;--van-padding-md: 16px;--van-padding-lg: 24px;--van-padding-xl: 32px;--van-font-bold: 600;--van-font-size-xs: 10px;--van-font-size-sm: 12px;--van-font-size-md: 14px;--van-font-size-lg: 16px;--van-line-height-xs: 14px;--van-line-height-sm: 18px;--van-line-height-md: 20px;--van-line-height-lg: 22px;--van-base-font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", "miui", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;--van-price-font: avenir-heavy, "PingFang SC", helvetica neue, arial, sans-serif;--van-duration-base: .3s;--van-duration-fast: .2s;--van-ease-out: ease-out;--van-ease-in: ease-in;--van-border-color: var(--van-gray-3);--van-border-width: 1px;--van-radius-sm: 2px;--van-radius-md: 4px;--van-radius-lg: 8px;--van-radius-max: 999px}.van-theme-dark{--van-text-color: #f5f5f5;--van-text-color-2: #707070;--van-text-color-3: #4d4d4d;--van-border-color: #3a3a3c;--van-active-color: #3a3a3c;--van-background: #000;--van-background-2: #1c1c1e;--van-background-3: #37363b}html{-webkit-tap-highlight-color:transparent}body{margin:0;font-family:var(--van-base-font)}a{text-decoration:none}input,button,textarea{color:inherit;font:inherit}a:focus,input:focus,button:focus,textarea:focus,[class*=van-]:focus{outline:none}ol,ul{margin:0;padding:0;list-style:none}@keyframes van-slide-up-enter{0%{transform:translate3d(0,100%,0)}}@keyframes van-slide-up-leave{to{transform:translate3d(0,100%,0)}}@keyframes van-slide-down-enter{0%{transform:translate3d(0,-100%,0)}}@keyframes van-slide-down-leave{to{transform:translate3d(0,-100%,0)}}@keyframes van-slide-left-enter{0%{transform:translate3d(-100%,0,0)}}@keyframes van-slide-left-leave{to{transform:translate3d(-100%,0,0)}}@keyframes van-slide-right-enter{0%{transform:translate3d(100%,0,0)}}@keyframes van-slide-right-leave{to{transform:translate3d(100%,0,0)}}@keyframes van-fade-in{0%{opacity:0}to{opacity:1}}@keyframes van-fade-out{0%{opacity:1}to{opacity:0}}@keyframes van-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.van-fade-enter-active{animation:var(--van-duration-base) van-fade-in both var(--van-ease-out)}.van-fade-leave-active{animation:var(--van-duration-base) van-fade-out both var(--van-ease-in)}.van-slide-up-enter-active{animation:van-slide-up-enter var(--van-duration-base) both var(--van-ease-out)}.van-slide-up-leave-active{animation:van-slide-up-leave var(--van-duration-base) both var(--van-ease-in)}.van-slide-down-enter-active{animation:van-slide-down-enter var(--van-duration-base) both var(--van-ease-out)}.van-slide-down-leave-active{animation:van-slide-down-leave var(--van-duration-base) both var(--van-ease-in)}.van-slide-left-enter-active{animation:van-slide-left-enter var(--van-duration-base) both var(--van-ease-out)}.van-slide-left-leave-active{animation:van-slide-left-leave var(--van-duration-base) both var(--van-ease-in)}.van-slide-right-enter-active{animation:van-slide-right-enter var(--van-duration-base) both var(--van-ease-out)}.van-slide-right-leave-active{animation:van-slide-right-leave var(--van-duration-base) both var(--van-ease-in)}.van-clearfix:after{display:table;clear:both;content:""}.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;line-break:anywhere;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;line-break:anywhere;-webkit-box-orient:vertical}.van-safe-area-top{padding-top:constant(safe-area-inset-top);padding-top:env(safe-area-inset-top)}.van-safe-area-bottom{padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.van-haptics-feedback{cursor:pointer}.van-haptics-feedback:active{opacity:var(--van-active-opacity)}[class*=van-hairline]:after{position:absolute;box-sizing:border-box;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid var(--van-border-color);transform:scale(.5)}.van-hairline,.van-hairline--top,.van-hairline--left,.van-hairline--right,.van-hairline--bottom,.van-hairline--surround,.van-hairline--top-bottom{position:relative}.van-hairline--top:after{border-top-width:var(--van-border-width)}.van-hairline--left:after{border-left-width:var(--van-border-width)}.van-hairline--right:after{border-right-width:var(--van-border-width)}.van-hairline--bottom:after{border-bottom-width:var(--van-border-width)}.van-hairline--top-bottom:after,.van-hairline-unset--top-bottom:after{border-width:var(--van-border-width) 0}.van-hairline--surround:after{border-width:var(--van-border-width)}
|
|
@@ -19,16 +19,16 @@ const api = {
|
|
|
19
19
|
return post(`${$servers.base}/template/sysTemplate/findByPagePopV5`, data);
|
|
20
20
|
},
|
|
21
21
|
getDataDicArea4Cascader: () => {
|
|
22
|
-
return post(`${$servers.base}/parm/sysParmDic/getDataDicArea4Cascader
|
|
22
|
+
return post(`${$servers.base}/parm/sysParmDic/getDataDicArea4Cascader`, null, false);
|
|
23
23
|
},
|
|
24
24
|
getDataDicTrade4Cascader: () => {
|
|
25
|
-
return post(`${$servers.base}/parm/sysParmDic/getDataDicTrade4Cascader
|
|
25
|
+
return post(`${$servers.base}/parm/sysParmDic/getDataDicTrade4Cascader`, null, false);
|
|
26
26
|
},
|
|
27
27
|
saveTemplateDialog: (data) => {
|
|
28
28
|
return post(`${$servers.base}/template/sysTemplateDialog/save`, data);
|
|
29
29
|
},
|
|
30
30
|
getAllTemplateDialog: () => {
|
|
31
|
-
return post(`${$servers.base}/template/sysTemplateDialog/getAllTemplate
|
|
31
|
+
return post(`${$servers.base}/template/sysTemplateDialog/getAllTemplate`, null, false);
|
|
32
32
|
},
|
|
33
33
|
deleteTemplateDialog: (id) => {
|
|
34
34
|
return postForm(`${$servers.base}/template/sysTemplateDialog/deleteById`, { id });
|
|
@@ -36,6 +36,10 @@ const _sfc_main = {
|
|
|
36
36
|
type: String,
|
|
37
37
|
default: "100%"
|
|
38
38
|
},
|
|
39
|
+
size: {
|
|
40
|
+
type: String,
|
|
41
|
+
default: "default"
|
|
42
|
+
},
|
|
39
43
|
onConfirm: Function
|
|
40
44
|
},
|
|
41
45
|
setup(__props) {
|
|
@@ -77,7 +81,8 @@ const _sfc_main = {
|
|
|
77
81
|
style: normalizeStyle({ width: __props.width }),
|
|
78
82
|
icon: unref(setting_default),
|
|
79
83
|
class: normalizeClass(["setting-btn", { "is-configured": unref(isConfigured) }]),
|
|
80
|
-
onClick: unref(openOnlyFlowDialog)
|
|
84
|
+
onClick: unref(openOnlyFlowDialog),
|
|
85
|
+
size: __props.size
|
|
81
86
|
}, {
|
|
82
87
|
default: withCtx(() => [
|
|
83
88
|
createTextVNode(toDisplayString(unref(buttonText)) + " ", 1),
|
|
@@ -98,7 +103,7 @@ const _sfc_main = {
|
|
|
98
103
|
})
|
|
99
104
|
]),
|
|
100
105
|
_: 1
|
|
101
|
-
}, 8, ["style", "icon", "class", "onClick"]),
|
|
106
|
+
}, 8, ["style", "icon", "class", "onClick", "size"]),
|
|
102
107
|
__props.description ? (openBlock(), createElementBlock("div", _hoisted_2, toDisplayString(__props.description), 1)) : createCommentVNode("", true)
|
|
103
108
|
]),
|
|
104
109
|
createVNode(unref(OnlyFlowDialog), {
|
|
@@ -112,7 +117,7 @@ const _sfc_main = {
|
|
|
112
117
|
};
|
|
113
118
|
}
|
|
114
119
|
};
|
|
115
|
-
const OnlyFLowConfigButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
120
|
+
const OnlyFLowConfigButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b83e4b73"]]);
|
|
116
121
|
export {
|
|
117
122
|
OnlyFLowConfigButton as default
|
|
118
123
|
};
|
|
@@ -7,9 +7,9 @@ import _sfc_main$2 from "./pageHeaderBtn.vue.mjs";
|
|
|
7
7
|
import _sfc_main$1 from "./pageFooterBtn.vue.mjs";
|
|
8
8
|
import _sfc_main$3 from "./subTitleH2.vue.mjs";
|
|
9
9
|
import _sfc_main$4 from "./subForm.vue.mjs";
|
|
10
|
-
import
|
|
11
|
-
import _sfc_main$
|
|
12
|
-
import _sfc_main$
|
|
10
|
+
import subTable from "./subTable.vue.mjs";
|
|
11
|
+
import _sfc_main$5 from "./blank.vue.mjs";
|
|
12
|
+
import _sfc_main$6 from "./approvalHistory.vue.mjs";
|
|
13
13
|
import { ElScrollbar } from "../../../../../../node_modules/.pnpm/element-plus@2.13.2_vue@3.5.13_typescript@5.7.3_/node_modules/element-plus/es/components/scrollbar/index.mjs";
|
|
14
14
|
const _sfc_main = {
|
|
15
15
|
__name: "index",
|
|
@@ -26,11 +26,11 @@ const _sfc_main = {
|
|
|
26
26
|
} else if (((_d = currentItem.value) == null ? void 0 : _d.fieldType) == "subForm") {
|
|
27
27
|
return _sfc_main$4;
|
|
28
28
|
} else if (((_e = currentItem.value) == null ? void 0 : _e.fieldType) == "subTable") {
|
|
29
|
-
return
|
|
29
|
+
return subTable;
|
|
30
30
|
} else if (((_f = currentItem.value) == null ? void 0 : _f.fieldType) == "blank") {
|
|
31
|
-
return _sfc_main$
|
|
31
|
+
return _sfc_main$5;
|
|
32
32
|
} else if (((_g = currentItem.value) == null ? void 0 : _g.fieldType) == "approvalHistory") {
|
|
33
|
-
return _sfc_main$
|
|
33
|
+
return _sfc_main$6;
|
|
34
34
|
} else if (((_h = currentItem.value) == null ? void 0 : _h.fieldType) == "divider") {
|
|
35
35
|
return null;
|
|
36
36
|
} else {
|