@fecp/designer 5.2.2 → 5.2.4
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 +34 -34
- package/es/packages/designer/src/packages/form/aside/index.mjs +1 -0
- package/es/packages/designer/src/packages/form/property/widgets.vue.mjs +98 -74
- package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +10 -8
- package/es/packages/vue/src/components/dialog/index.mjs +2 -2
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +16 -2
- package/es/packages/vue/src/components/table/Table.vue.mjs +12 -5
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +7 -3
- package/es/packages/vue/src/utils/eventFlow/actionHandlers.mjs +23 -16
- package/lib/designer.css +34 -34
- package/lib/packages/designer/src/packages/form/aside/index.js +1 -0
- package/lib/packages/designer/src/packages/form/property/widgets.vue.js +98 -74
- package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +10 -8
- package/lib/packages/vue/src/components/dialog/index.js +2 -2
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +16 -2
- package/lib/packages/vue/src/components/table/Table.vue.js +11 -4
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +7 -3
- package/lib/packages/vue/src/utils/eventFlow/actionHandlers.js +23 -16
- package/package.json +1 -1
|
@@ -217,6 +217,7 @@ const _sfc_main = {
|
|
|
217
217
|
props.formData,
|
|
218
218
|
props.fieldsList
|
|
219
219
|
);
|
|
220
|
+
console.log("🚀 ~ params:", params);
|
|
220
221
|
return params;
|
|
221
222
|
}
|
|
222
223
|
return {};
|
|
@@ -287,14 +288,15 @@ const _sfc_main = {
|
|
|
287
288
|
});
|
|
288
289
|
return btnArr;
|
|
289
290
|
});
|
|
290
|
-
function formFooterClick(button) {
|
|
291
|
+
async function formFooterClick(button) {
|
|
291
292
|
var _a;
|
|
292
293
|
const formData = dialogFormRef.value.getFormData();
|
|
293
|
-
handleEvent.value(
|
|
294
|
+
await handleEvent.value(
|
|
294
295
|
formData,
|
|
295
296
|
button,
|
|
296
297
|
(_a = button.eventConfig) == null ? void 0 : _a.find((item) => item.name == "Click")
|
|
297
298
|
);
|
|
299
|
+
emit("confirm");
|
|
298
300
|
}
|
|
299
301
|
return (_ctx, _cache) => {
|
|
300
302
|
const _component_el_button = ElButton;
|
|
@@ -326,7 +328,7 @@ const _sfc_main = {
|
|
|
326
328
|
_: 1
|
|
327
329
|
}),
|
|
328
330
|
((_a = __props.dialogConfig) == null ? void 0 : _a.contentSource) === "table" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
329
|
-
!__props.dialogConfig.isSubTableReadOnly ? (openBlock(), createBlock(_component_el_button, {
|
|
331
|
+
!__props.dialogConfig.isSubTableReadOnly && __props.dialogConfig.selectionMode != "none" ? (openBlock(), createBlock(_component_el_button, {
|
|
330
332
|
key: 0,
|
|
331
333
|
type: "primary",
|
|
332
334
|
onClick: handleConfirm
|
|
@@ -365,24 +367,24 @@ const _sfc_main = {
|
|
|
365
367
|
mode: __props.dialogConfig.subTableMode,
|
|
366
368
|
isDialog: "",
|
|
367
369
|
hasPagination: __props.dialogConfig.isSubTablePagination,
|
|
368
|
-
|
|
370
|
+
initHiddenData: initDialogParams.value,
|
|
369
371
|
readonly: __props.dialogConfig.isSubTableReadOnly,
|
|
370
372
|
selectMode: __props.dialogConfig.selectionMode,
|
|
371
373
|
onSelectionChange: tableSelectionChange,
|
|
372
374
|
ref_key: "dialogTableRef",
|
|
373
375
|
ref: dialogTableRef
|
|
374
|
-
}, null, 8, ["templateKey", "mode", "hasPagination", "
|
|
376
|
+
}, null, 8, ["templateKey", "mode", "hasPagination", "initHiddenData", "readonly", "selectMode"])) : __props.dialogConfig.tableContent === "custom" ? (openBlock(), createBlock(unref(Table), {
|
|
375
377
|
key: 1,
|
|
376
378
|
initOption: __props.dialogConfig.customTableConfig,
|
|
377
379
|
isDialog: "",
|
|
378
380
|
hasPagination: __props.dialogConfig.isSubTablePagination,
|
|
379
|
-
|
|
381
|
+
initHiddenData: initDialogParams.value,
|
|
380
382
|
readonly: __props.dialogConfig.isSubTableReadOnly,
|
|
381
383
|
selectMode: __props.dialogConfig.selectionMode,
|
|
382
384
|
onSelectionChange: tableSelectionChange,
|
|
383
385
|
ref_key: "dialogTableRef",
|
|
384
386
|
ref: dialogTableRef
|
|
385
|
-
}, null, 8, ["initOption", "hasPagination", "
|
|
387
|
+
}, null, 8, ["initOption", "hasPagination", "initHiddenData", "readonly", "selectMode"])) : createCommentVNode("", true)
|
|
386
388
|
], 64)) : ((_c = __props.dialogConfig) == null ? void 0 : _c.contentSource) === "form" ? (openBlock(), createBlock(unref(Form), {
|
|
387
389
|
key: 1,
|
|
388
390
|
templateKey: __props.dialogConfig.subFormKey,
|
|
@@ -409,7 +411,7 @@ const _sfc_main = {
|
|
|
409
411
|
};
|
|
410
412
|
}
|
|
411
413
|
};
|
|
412
|
-
const DialogRenderer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
414
|
+
const DialogRenderer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4237f08b"]]);
|
|
413
415
|
export {
|
|
414
416
|
DialogRenderer as default
|
|
415
417
|
};
|
|
@@ -43,12 +43,12 @@ function openDialog(displayField, dialogConfig, instance, componentCtx, fieldsLi
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
onConfirm: (data) => {
|
|
46
|
-
resolve(data);
|
|
47
46
|
cleanupDialog();
|
|
47
|
+
resolve(data);
|
|
48
48
|
},
|
|
49
49
|
onCancel: () => {
|
|
50
|
-
reject(new Error("用户取消"));
|
|
51
50
|
cleanupDialog();
|
|
51
|
+
reject(new Error("用户取消"));
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
vnode.appContext = instance.appContext;
|
|
@@ -502,9 +502,23 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
502
502
|
result[fieldName] = value.join("|");
|
|
503
503
|
}
|
|
504
504
|
} else if (fieldName && fieldType === "date" && value) {
|
|
505
|
+
const dateValueType = field.dateValueType;
|
|
505
506
|
const valueFormat = valueFormatMap[field.dateType] || "YYYYMMDD";
|
|
506
507
|
const formValueFormat = formValueFormatMap[field.dateType] || "YYYY-MM-DD";
|
|
507
|
-
|
|
508
|
+
switch (dateValueType) {
|
|
509
|
+
case "date":
|
|
510
|
+
result[fieldName] = hooks(value, formValueFormat).toDate();
|
|
511
|
+
break;
|
|
512
|
+
case "timestamp":
|
|
513
|
+
result[fieldName] = hooks(value, formValueFormat).valueOf();
|
|
514
|
+
break;
|
|
515
|
+
case "string":
|
|
516
|
+
default:
|
|
517
|
+
result[fieldName] = hooks(value, formValueFormat).format(
|
|
518
|
+
valueFormat
|
|
519
|
+
);
|
|
520
|
+
break;
|
|
521
|
+
}
|
|
508
522
|
}
|
|
509
523
|
};
|
|
510
524
|
if (fieldsData.value) {
|
|
@@ -666,7 +680,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
666
680
|
};
|
|
667
681
|
}
|
|
668
682
|
});
|
|
669
|
-
const _Form = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
683
|
+
const _Form = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-42af7e52"]]);
|
|
670
684
|
export {
|
|
671
685
|
_Form as default
|
|
672
686
|
};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
|
-
import { ref, getCurrentInstance, computed, reactive, watch, onMounted, onUnmounted, createBlock, openBlock, withCtx, createElementBlock, createCommentVNode, normalizeStyle, createElementVNode, Fragment, createVNode, unref, createSlots, renderList, renderSlot, normalizeProps, guardReactiveProps } from "vue";
|
|
7
|
+
import { ref, getCurrentInstance, computed, reactive, watch, onMounted, onUnmounted, createBlock, openBlock, withCtx, createTextVNode, createElementBlock, createCommentVNode, toDisplayString, normalizeStyle, createElementVNode, Fragment, createVNode, unref, createSlots, renderList, renderSlot, normalizeProps, guardReactiveProps } from "vue";
|
|
8
8
|
import "../../../../../node_modules/.pnpm/vxe-table@4.17.47_vue@3.5.13_typescript@5.7.3_/node_modules/vxe-table/es/components.mjs";
|
|
9
9
|
/* empty css */
|
|
10
10
|
import { createDataSource } from "../../utils/datasource.mjs";
|
|
@@ -90,6 +90,10 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
90
90
|
type: String,
|
|
91
91
|
default: "",
|
|
92
92
|
validator: (value) => ["", "none", "single", "multiple"].includes(value)
|
|
93
|
+
},
|
|
94
|
+
initHiddenData: {
|
|
95
|
+
type: Object,
|
|
96
|
+
default: {}
|
|
93
97
|
}
|
|
94
98
|
},
|
|
95
99
|
emits: [
|
|
@@ -113,6 +117,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
113
117
|
const configLoading = ref(true);
|
|
114
118
|
const localConfig = ref({});
|
|
115
119
|
const fieldsData = ref({});
|
|
120
|
+
const hiddenFormData = ref(props.initHiddenData);
|
|
116
121
|
const dataSourceOptions = ref({});
|
|
117
122
|
const dictionaryOptions = ref({});
|
|
118
123
|
const displayData = computed(() => {
|
|
@@ -295,7 +300,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
295
300
|
default:
|
|
296
301
|
(_b = handleFlowEvent.value) == null ? void 0 : _b.call(
|
|
297
302
|
handleFlowEvent,
|
|
298
|
-
|
|
303
|
+
hiddenFormData.value,
|
|
299
304
|
btn,
|
|
300
305
|
(_a = btn.eventConfig) == null ? void 0 : _a.find((item) => item.name == "Click")
|
|
301
306
|
);
|
|
@@ -527,6 +532,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
527
532
|
"data-version": "v5"
|
|
528
533
|
}, {
|
|
529
534
|
default: withCtx(() => [
|
|
535
|
+
createTextVNode(toDisplayString(__props.initHiddenData) + " ", 1),
|
|
530
536
|
!configLoading.value ? (openBlock(), createElementBlock("div", {
|
|
531
537
|
key: 0,
|
|
532
538
|
ref_key: "tableContainer",
|
|
@@ -591,7 +597,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
591
597
|
"table-ref": (_a = unref(instance)) == null ? void 0 : _a.proxy,
|
|
592
598
|
"table-data": displayData.value,
|
|
593
599
|
readonly: __props.readonly,
|
|
594
|
-
isDialog: __props.isDialog
|
|
600
|
+
isDialog: __props.isDialog,
|
|
601
|
+
hiddenFormData: hiddenFormData.value
|
|
595
602
|
}, createSlots({ _: 2 }, [
|
|
596
603
|
renderList(fieldsData.value, (field) => {
|
|
597
604
|
return {
|
|
@@ -601,7 +608,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
601
608
|
])
|
|
602
609
|
};
|
|
603
610
|
})
|
|
604
|
-
]), 1032, ["fields-data", "show-index", "select-mode", "is-opt-btns", "opt-btns", "mode-key", "modes", "data-source-options", "dictionary-options", "localConfig", "table-ref", "table-data", "readonly", "isDialog"])
|
|
611
|
+
]), 1032, ["fields-data", "show-index", "select-mode", "is-opt-btns", "opt-btns", "mode-key", "modes", "data-source-options", "dictionary-options", "localConfig", "table-ref", "table-data", "readonly", "isDialog", "hiddenFormData"])
|
|
605
612
|
];
|
|
606
613
|
}),
|
|
607
614
|
_: 3
|
|
@@ -620,7 +627,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
620
627
|
};
|
|
621
628
|
}
|
|
622
629
|
});
|
|
623
|
-
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
630
|
+
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-10045481"]]);
|
|
624
631
|
export {
|
|
625
632
|
_Table as default
|
|
626
633
|
};
|
|
@@ -98,6 +98,10 @@ const _sfc_main = {
|
|
|
98
98
|
isDialog: {
|
|
99
99
|
type: Boolean,
|
|
100
100
|
default: false
|
|
101
|
+
},
|
|
102
|
+
hiddenFormData: {
|
|
103
|
+
type: Object,
|
|
104
|
+
default: {}
|
|
101
105
|
}
|
|
102
106
|
},
|
|
103
107
|
setup(__props) {
|
|
@@ -255,7 +259,7 @@ const _sfc_main = {
|
|
|
255
259
|
};
|
|
256
260
|
const optColumnWidth = computed(() => {
|
|
257
261
|
const padding = 20;
|
|
258
|
-
const btnWidth =
|
|
262
|
+
const btnWidth = 60;
|
|
259
263
|
if (!props.tableData || props.tableData.length === 0) {
|
|
260
264
|
return props.optBtns.length * btnWidth + padding;
|
|
261
265
|
}
|
|
@@ -272,7 +276,7 @@ const _sfc_main = {
|
|
|
272
276
|
table: props.tableRef
|
|
273
277
|
}
|
|
274
278
|
});
|
|
275
|
-
const getEventHandlers = (row, item, eventConfig) => createEventHandlers(item, row, eventConfig);
|
|
279
|
+
const getEventHandlers = (row, item, eventConfig) => createEventHandlers(item, { ...row, ...props.hiddenFormData }, eventConfig);
|
|
276
280
|
return (_ctx, _cache) => {
|
|
277
281
|
const _component_el_link = ElLink;
|
|
278
282
|
const _component_el_icon = ElIcon;
|
|
@@ -377,7 +381,7 @@ const _sfc_main = {
|
|
|
377
381
|
};
|
|
378
382
|
}
|
|
379
383
|
};
|
|
380
|
-
const TableColumn = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
384
|
+
const TableColumn = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-93ba698c"]]);
|
|
381
385
|
export {
|
|
382
386
|
TableColumn as default
|
|
383
387
|
};
|
|
@@ -459,22 +459,29 @@ async function handleDialog(node, data, fields, context) {
|
|
|
459
459
|
console.error("ui-dialog: 未找到匹配的弹层配置," + (basic == null ? void 0 : basic.dialogId));
|
|
460
460
|
return;
|
|
461
461
|
}
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
462
|
+
try {
|
|
463
|
+
await openDialog(
|
|
464
|
+
basic.displayFieldName,
|
|
465
|
+
dialog,
|
|
466
|
+
context.instance,
|
|
467
|
+
context.ctx,
|
|
468
|
+
fields,
|
|
469
|
+
data
|
|
470
|
+
);
|
|
471
|
+
return {
|
|
472
|
+
success: true,
|
|
473
|
+
message: "用户已确认",
|
|
474
|
+
shouldShowError: false
|
|
475
|
+
};
|
|
476
|
+
} catch (error) {
|
|
477
|
+
return {
|
|
478
|
+
success: false,
|
|
479
|
+
message: "用户已取消",
|
|
480
|
+
confirmed: false,
|
|
481
|
+
shouldShowError: false
|
|
482
|
+
// 用户取消不提示错误
|
|
483
|
+
};
|
|
484
|
+
}
|
|
478
485
|
}
|
|
479
486
|
const defaultActionHandlers = {
|
|
480
487
|
"page-jump": handlePageJump,
|
package/lib/designer.css
CHANGED
|
@@ -3115,17 +3115,17 @@ to {
|
|
|
3115
3115
|
width: 100%;
|
|
3116
3116
|
}
|
|
3117
3117
|
|
|
3118
|
-
.collapse-header[data-v-
|
|
3118
|
+
.collapse-header[data-v-e7b8302c] {
|
|
3119
3119
|
display: flex;
|
|
3120
3120
|
align-items: center;
|
|
3121
3121
|
justify-content: space-between;
|
|
3122
3122
|
width: 100%;
|
|
3123
3123
|
padding-right: 20px;
|
|
3124
3124
|
}
|
|
3125
|
-
.setting[data-v-
|
|
3125
|
+
.setting[data-v-e7b8302c] .el-collapse-item__content {
|
|
3126
3126
|
position: relative;
|
|
3127
3127
|
}
|
|
3128
|
-
.field-type-select[data-v-
|
|
3128
|
+
.field-type-select[data-v-e7b8302c] {
|
|
3129
3129
|
position: absolute;
|
|
3130
3130
|
top: 11px;
|
|
3131
3131
|
right: 16px;
|
|
@@ -3136,38 +3136,38 @@ to {
|
|
|
3136
3136
|
transition: all 0.3s;
|
|
3137
3137
|
border-radius: 4px;
|
|
3138
3138
|
}
|
|
3139
|
-
.field-type-select[data-v-
|
|
3139
|
+
.field-type-select[data-v-e7b8302c] .el-select__wrapper {
|
|
3140
3140
|
background: transparent;
|
|
3141
3141
|
box-shadow: none;
|
|
3142
3142
|
}
|
|
3143
|
-
.field-type-select[data-v-
|
|
3143
|
+
.field-type-select[data-v-e7b8302c] .el-select__selected-item {
|
|
3144
3144
|
text-align: center;
|
|
3145
3145
|
}
|
|
3146
|
-
.width-input[data-v-
|
|
3146
|
+
.width-input[data-v-e7b8302c] {
|
|
3147
3147
|
width: 100%;
|
|
3148
3148
|
}
|
|
3149
|
-
.data-source-fields[data-v-
|
|
3149
|
+
.data-source-fields[data-v-e7b8302c] {
|
|
3150
3150
|
display: flex;
|
|
3151
3151
|
flex-direction: column;
|
|
3152
3152
|
gap: 8px;
|
|
3153
3153
|
margin-bottom: 18px;
|
|
3154
3154
|
}
|
|
3155
|
-
.data-source-fields .field-item[data-v-
|
|
3155
|
+
.data-source-fields .field-item[data-v-e7b8302c] {
|
|
3156
3156
|
display: flex;
|
|
3157
3157
|
align-items: center;
|
|
3158
3158
|
gap: 8px;
|
|
3159
3159
|
}
|
|
3160
|
-
.data-source-fields .field-item .field-label[data-v-
|
|
3160
|
+
.data-source-fields .field-item .field-label[data-v-e7b8302c] {
|
|
3161
3161
|
width: 80px;
|
|
3162
3162
|
font-size: 13px;
|
|
3163
3163
|
color: #606266;
|
|
3164
3164
|
text-align: right;
|
|
3165
3165
|
flex-shrink: 0;
|
|
3166
3166
|
}
|
|
3167
|
-
.data-source-fields .field-item .field-label[data-v-
|
|
3167
|
+
.data-source-fields .field-item .field-label[data-v-e7b8302c]::after {
|
|
3168
3168
|
content: ":";
|
|
3169
3169
|
}
|
|
3170
|
-
.data-source-fields .field-item .el-input[data-v-
|
|
3170
|
+
.data-source-fields .field-item .el-input[data-v-e7b8302c] {
|
|
3171
3171
|
flex: 1;
|
|
3172
3172
|
}.root-property[data-v-e88c3a83] {
|
|
3173
3173
|
width: 300px;
|
|
@@ -5305,18 +5305,18 @@ body,
|
|
|
5305
5305
|
}
|
|
5306
5306
|
.approval-history-content.flowChart[data-v-7be2a6d2] {
|
|
5307
5307
|
background-color: #f9fafc;
|
|
5308
|
-
}.dialog-header-content[data-v-
|
|
5308
|
+
}.dialog-header-content[data-v-4237f08b] {
|
|
5309
5309
|
font-size: 16px;
|
|
5310
5310
|
font-weight: 600;
|
|
5311
5311
|
color: #303133;
|
|
5312
5312
|
}
|
|
5313
|
-
.dialog-content-wrapper[data-v-
|
|
5313
|
+
.dialog-content-wrapper[data-v-4237f08b] {
|
|
5314
5314
|
min-height: 500px;
|
|
5315
5315
|
flex-grow: 1;
|
|
5316
5316
|
display: flex;
|
|
5317
5317
|
flex-direction: column;
|
|
5318
5318
|
}
|
|
5319
|
-
.empty-content[data-v-
|
|
5319
|
+
.empty-content[data-v-4237f08b] {
|
|
5320
5320
|
display: flex;
|
|
5321
5321
|
align-items: center;
|
|
5322
5322
|
justify-content: center;
|
|
@@ -5324,13 +5324,13 @@ body,
|
|
|
5324
5324
|
color: #909399;
|
|
5325
5325
|
font-size: 14px;
|
|
5326
5326
|
}
|
|
5327
|
-
.component-error[data-v-
|
|
5327
|
+
.component-error[data-v-4237f08b] {
|
|
5328
5328
|
padding: 40px 20px;
|
|
5329
5329
|
text-align: center;
|
|
5330
5330
|
color: #f56c6c;
|
|
5331
5331
|
font-size: 14px;
|
|
5332
5332
|
}
|
|
5333
|
-
.fec-dialog-table[data-v-
|
|
5333
|
+
.fec-dialog-table[data-v-4237f08b] .table-pagination {
|
|
5334
5334
|
padding: 8px 0 0 0;
|
|
5335
5335
|
}.text-field-wrapper[data-v-b0c0d80f] {
|
|
5336
5336
|
width: 100%;
|
|
@@ -5501,29 +5501,29 @@ body,
|
|
|
5501
5501
|
width: 80px;
|
|
5502
5502
|
font-size: var(--el-font-size-extra-small);
|
|
5503
5503
|
}
|
|
5504
|
-
.fec-form[data-v-
|
|
5504
|
+
.fec-form[data-v-42af7e52] {
|
|
5505
5505
|
height: 100%;
|
|
5506
5506
|
}
|
|
5507
|
-
[data-v-
|
|
5507
|
+
[data-v-42af7e52] .vgl-item > .el-form-item {
|
|
5508
5508
|
width: 100%;
|
|
5509
5509
|
padding: 12px 8px 0 8px;
|
|
5510
5510
|
height: calc(100% - 15px);
|
|
5511
5511
|
display: flex;
|
|
5512
5512
|
}
|
|
5513
|
-
[data-v-
|
|
5513
|
+
[data-v-42af7e52] .vgl-item > .el-form-item.el-form-item--label-top {
|
|
5514
5514
|
flex-direction: column;
|
|
5515
5515
|
}
|
|
5516
|
-
[data-v-
|
|
5516
|
+
[data-v-42af7e52] .vgl-item > .el-form-item .el-form-item__label {
|
|
5517
5517
|
line-height: 20px;
|
|
5518
5518
|
display: flex;
|
|
5519
5519
|
align-items: center;
|
|
5520
5520
|
}
|
|
5521
|
-
[data-v-
|
|
5521
|
+
[data-v-42af7e52] .vgl-item > .el-container {
|
|
5522
5522
|
height: auto !important;
|
|
5523
|
-
}.cell-content .cell-text[data-v-
|
|
5523
|
+
}.cell-content .cell-text[data-v-93ba698c] {
|
|
5524
5524
|
display: inline-block;
|
|
5525
5525
|
}
|
|
5526
|
-
.cell-content .copy-icon[data-v-
|
|
5526
|
+
.cell-content .copy-icon[data-v-93ba698c] {
|
|
5527
5527
|
cursor: pointer;
|
|
5528
5528
|
color: #909399;
|
|
5529
5529
|
font-size: 14px;
|
|
@@ -5531,7 +5531,7 @@ body,
|
|
|
5531
5531
|
top: 4px;
|
|
5532
5532
|
margin-left: 4px;
|
|
5533
5533
|
}
|
|
5534
|
-
.cell-content .copy-icon[data-v-
|
|
5534
|
+
.cell-content .copy-icon[data-v-93ba698c]:hover {
|
|
5535
5535
|
color: #409eff;
|
|
5536
5536
|
}.fec-table-filter[data-v-366e01c3] {
|
|
5537
5537
|
display: flex;
|
|
@@ -5800,11 +5800,11 @@ body,
|
|
|
5800
5800
|
}
|
|
5801
5801
|
[data-v-66d8d7cb] .el-checkbox-group .el-checkbox-button__inner {
|
|
5802
5802
|
border-radius: 4px;
|
|
5803
|
-
}.fec-table[data-v-
|
|
5803
|
+
}.fec-table[data-v-10045481] {
|
|
5804
5804
|
height: 100%;
|
|
5805
5805
|
flex-grow: 1;
|
|
5806
5806
|
}
|
|
5807
|
-
.fec-table-container[data-v-
|
|
5807
|
+
.fec-table-container[data-v-10045481] {
|
|
5808
5808
|
width: 100%;
|
|
5809
5809
|
background: #fff;
|
|
5810
5810
|
box-sizing: border-box;
|
|
@@ -5814,30 +5814,30 @@ body,
|
|
|
5814
5814
|
overflow: hidden;
|
|
5815
5815
|
flex-grow: 1;
|
|
5816
5816
|
}
|
|
5817
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
5817
|
+
.fec-table-container .fec-vxe-table[data-v-10045481] {
|
|
5818
5818
|
flex: 1;
|
|
5819
5819
|
min-height: 0;
|
|
5820
5820
|
overflow: hidden;
|
|
5821
5821
|
}
|
|
5822
|
-
.fec-table-container[data-v-
|
|
5822
|
+
.fec-table-container[data-v-10045481] .vxe-table {
|
|
5823
5823
|
font-size: 14px;
|
|
5824
5824
|
}
|
|
5825
|
-
.fec-table-container[data-v-
|
|
5825
|
+
.fec-table-container[data-v-10045481] .vxe-table .vxe-table--body-wrapper {
|
|
5826
5826
|
overflow: auto;
|
|
5827
5827
|
}
|
|
5828
|
-
.fec-table-container[data-v-
|
|
5828
|
+
.fec-table-container[data-v-10045481] .vxe-table .vxe-header--column {
|
|
5829
5829
|
background-color: #f5f7fa;
|
|
5830
5830
|
}
|
|
5831
|
-
.fec-table-container[data-v-
|
|
5831
|
+
.fec-table-container[data-v-10045481] .vxe-table .vxe-header--column .vxe-cell {
|
|
5832
5832
|
height: 40px !important;
|
|
5833
5833
|
min-height: 40px !important;
|
|
5834
5834
|
}
|
|
5835
|
-
.fec-table-container[data-v-
|
|
5835
|
+
.fec-table-container[data-v-10045481] .vxe-table .vxe-body--column .vxe-cell {
|
|
5836
5836
|
padding: 6px !important;
|
|
5837
5837
|
min-height: 40px !important;
|
|
5838
5838
|
}
|
|
5839
|
-
.fec-table-container[data-v-
|
|
5840
|
-
.fec-table-container[data-v-
|
|
5839
|
+
.fec-table-container[data-v-10045481] .vxe-table .vxe-body--column .c--tooltip,
|
|
5840
|
+
.fec-table-container[data-v-10045481] .vxe-table .vxe-body--column .c--title {
|
|
5841
5841
|
height: 40px !important;
|
|
5842
5842
|
min-height: 40px !important;
|
|
5843
5843
|
}: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)}
|