@fecp/designer 5.5.50 → 5.5.53
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/package.json.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/index.vue.mjs +1 -1
- package/es/designer/src/packages/form/aside/index.mjs +2 -0
- package/es/designer/src/packages/form/property/subTable.vue.mjs +78 -16
- package/es/designer.css +48 -48
- package/es/packages/vue/src/components/forms/subTable/SubTable.vue.mjs +10 -9
- package/es/packages/vue/src/components/table/Table.vue.mjs +75 -16
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue.js +1 -1
- package/lib/designer/src/packages/form/aside/index.js +2 -0
- package/lib/designer/src/packages/form/property/subTable.vue.js +78 -16
- package/lib/designer.css +48 -48
- package/lib/packages/vue/src/components/forms/subTable/SubTable.vue.js +10 -9
- package/lib/packages/vue/src/components/table/Table.vue.js +74 -15
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import "../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
5
5
|
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
|
-
import { ref, getCurrentInstance, computed, reactive, watch, onMounted, onUnmounted, createBlock, openBlock, normalizeClass, withCtx, createElementBlock, createCommentVNode,
|
|
8
|
+
import { ref, getCurrentInstance, computed, reactive, watch, onMounted, onUnmounted, createBlock, openBlock, normalizeClass, withCtx, createElementBlock, createCommentVNode, createElementVNode, Fragment, createVNode, unref, createSlots, renderList, renderSlot, normalizeProps, guardReactiveProps, nextTick } from "vue";
|
|
9
9
|
import { VxeTable } from "vxe-table";
|
|
10
10
|
import XEUtils from "xe-utils";
|
|
11
11
|
/* empty css */
|
|
@@ -92,10 +92,18 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
92
92
|
type: Boolean,
|
|
93
93
|
default: false
|
|
94
94
|
},
|
|
95
|
+
heightMode: {
|
|
96
|
+
type: String,
|
|
97
|
+
default: ""
|
|
98
|
+
},
|
|
95
99
|
height: {
|
|
96
100
|
type: Number,
|
|
97
101
|
default: null
|
|
98
102
|
},
|
|
103
|
+
maxHeight: {
|
|
104
|
+
type: Number,
|
|
105
|
+
default: null
|
|
106
|
+
},
|
|
99
107
|
readonly: {
|
|
100
108
|
type: Boolean,
|
|
101
109
|
default: false
|
|
@@ -121,11 +129,13 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
121
129
|
"selection-change",
|
|
122
130
|
"sort-change",
|
|
123
131
|
"page-change",
|
|
124
|
-
"loaded"
|
|
132
|
+
"loaded",
|
|
133
|
+
"height-loaded"
|
|
125
134
|
],
|
|
126
135
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
127
136
|
const props = __props;
|
|
128
137
|
const emit = __emit;
|
|
138
|
+
const fecTableContainerRef = ref(null);
|
|
129
139
|
const tableRef = ref(null);
|
|
130
140
|
const tableContainer = ref(null);
|
|
131
141
|
const currentMode = ref("");
|
|
@@ -187,13 +197,43 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
187
197
|
};
|
|
188
198
|
});
|
|
189
199
|
const autoResize = computed(() => {
|
|
190
|
-
|
|
200
|
+
if (props.isSubTable) {
|
|
201
|
+
if (props.heightMode) {
|
|
202
|
+
return props.heightMode == "auto";
|
|
203
|
+
} else {
|
|
204
|
+
return false;
|
|
205
|
+
}
|
|
206
|
+
} else {
|
|
207
|
+
return localConfig.value.heightMode == "auto";
|
|
208
|
+
}
|
|
191
209
|
});
|
|
192
210
|
const tableHeight = computed(() => {
|
|
193
|
-
if (
|
|
194
|
-
|
|
211
|
+
if (props.isSubTable) {
|
|
212
|
+
if (props.heightMode == "fixed" && props.height) {
|
|
213
|
+
return props.height;
|
|
214
|
+
} else {
|
|
215
|
+
return "";
|
|
216
|
+
}
|
|
217
|
+
} else {
|
|
218
|
+
if (localConfig.value.heightMode === "auto") {
|
|
219
|
+
return "100%";
|
|
220
|
+
}
|
|
221
|
+
return localConfig.value.height || 500;
|
|
222
|
+
}
|
|
223
|
+
});
|
|
224
|
+
const tableMaxHeight = computed(() => {
|
|
225
|
+
if (props.isSubTable) {
|
|
226
|
+
if (props.heightMode == "max" && props.maxHeight) {
|
|
227
|
+
return props.maxHeight;
|
|
228
|
+
} else {
|
|
229
|
+
return "";
|
|
230
|
+
}
|
|
231
|
+
} else {
|
|
232
|
+
if (localConfig.value.heightMode === "max") {
|
|
233
|
+
return localConfig.value.maxHeight || 500;
|
|
234
|
+
}
|
|
235
|
+
return "";
|
|
195
236
|
}
|
|
196
|
-
return localConfig.value.height || 500;
|
|
197
237
|
});
|
|
198
238
|
const summaryConfig = computed(() => {
|
|
199
239
|
return localConfig.value.summaryConfig || {
|
|
@@ -506,6 +546,19 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
506
546
|
const handleRadioChange = (checked) => {
|
|
507
547
|
emit("selection-change", [checked.row]);
|
|
508
548
|
};
|
|
549
|
+
const handleInitRendered = ({ visibleColumn, visibleData, $event }) => {
|
|
550
|
+
const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
|
|
551
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
552
|
+
};
|
|
553
|
+
const handleDataRendered = ({
|
|
554
|
+
isReload,
|
|
555
|
+
visibleColumn,
|
|
556
|
+
visibleData,
|
|
557
|
+
$event
|
|
558
|
+
}) => {
|
|
559
|
+
const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
|
|
560
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
561
|
+
};
|
|
509
562
|
const handleFilterSearch = (filters) => {
|
|
510
563
|
var _a, _b;
|
|
511
564
|
if (dataSourceManager.value) {
|
|
@@ -706,8 +759,12 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
706
759
|
}
|
|
707
760
|
});
|
|
708
761
|
initHandleEvent();
|
|
709
|
-
emit("loaded", localConfig.value);
|
|
710
762
|
configLoading.value = false;
|
|
763
|
+
nextTick(() => {
|
|
764
|
+
var _a2;
|
|
765
|
+
const offsetHeight = ((_a2 = fecTableContainerRef.value) == null ? void 0 : _a2.$el.offsetHeight) || 300;
|
|
766
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
767
|
+
});
|
|
711
768
|
return;
|
|
712
769
|
}
|
|
713
770
|
configLoading.value = true;
|
|
@@ -800,7 +857,9 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
800
857
|
"data-id": localConfig.value.templateKey,
|
|
801
858
|
"data-name": localConfig.value.templateName,
|
|
802
859
|
"data-pkId": localConfig.value.pkId,
|
|
803
|
-
"data-version": "v5"
|
|
860
|
+
"data-version": "v5",
|
|
861
|
+
ref_key: "fecTableContainerRef",
|
|
862
|
+
ref: fecTableContainerRef
|
|
804
863
|
}, {
|
|
805
864
|
default: withCtx(() => {
|
|
806
865
|
var _a, _b, _c, _d;
|
|
@@ -809,10 +868,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
809
868
|
key: 0,
|
|
810
869
|
ref_key: "tableContainer",
|
|
811
870
|
ref: tableContainer,
|
|
812
|
-
class: "fec-table-container"
|
|
813
|
-
style: normalizeStyle(
|
|
814
|
-
props.height && props.height > 0 ? { height: `${props.height}px` } : {}
|
|
815
|
-
)
|
|
871
|
+
class: "fec-table-container"
|
|
816
872
|
}, [
|
|
817
873
|
((_b = (_a = localConfig.value) == null ? void 0 : _a.queryConfig) == null ? void 0 : _b.mode) == "fixed" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
818
874
|
createVNode(TableFilter, {
|
|
@@ -850,6 +906,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
850
906
|
data: displayData.value,
|
|
851
907
|
"auto-resize": autoResize.value,
|
|
852
908
|
height: tableHeight.value,
|
|
909
|
+
maxHeight: tableMaxHeight.value,
|
|
853
910
|
"empty-text": "暂无数据",
|
|
854
911
|
"export-config": unref(exportConfig),
|
|
855
912
|
"row-config": rowConfig.value,
|
|
@@ -861,7 +918,9 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
861
918
|
onSortChange: handleSortChange,
|
|
862
919
|
onCheckboxChange: handleCheckboxChange,
|
|
863
920
|
onCheckboxAll: handleCheckboxAll,
|
|
864
|
-
onRadioChange: handleRadioChange
|
|
921
|
+
onRadioChange: handleRadioChange,
|
|
922
|
+
onInitRendered: handleInitRendered,
|
|
923
|
+
onDataRendered: handleDataRendered
|
|
865
924
|
}, {
|
|
866
925
|
default: withCtx(() => {
|
|
867
926
|
var _a2;
|
|
@@ -896,7 +955,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
896
955
|
];
|
|
897
956
|
}),
|
|
898
957
|
_: 3
|
|
899
|
-
}, 8, ["data", "auto-resize", "height", "export-config", "row-config", "radio-config", "checkbox-config", "sort-config", "show-footer", "footer-data"])
|
|
958
|
+
}, 8, ["data", "auto-resize", "height", "maxHeight", "export-config", "row-config", "radio-config", "checkbox-config", "sort-config", "show-footer", "footer-data"])
|
|
900
959
|
]),
|
|
901
960
|
isPagination.value && displayData.value.length > 0 ? (openBlock(), createBlock(Pagination, {
|
|
902
961
|
key: 2,
|
|
@@ -904,7 +963,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
904
963
|
pagination: displayPagination.value,
|
|
905
964
|
onChange: handlePageChange
|
|
906
965
|
}, null, 8, ["config", "pagination"])) : createCommentVNode("", true)
|
|
907
|
-
],
|
|
966
|
+
], 512)) : createCommentVNode("", true)
|
|
908
967
|
];
|
|
909
968
|
}),
|
|
910
969
|
_: 3
|
|
@@ -912,7 +971,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
912
971
|
};
|
|
913
972
|
}
|
|
914
973
|
});
|
|
915
|
-
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
974
|
+
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b224babf"]]);
|
|
916
975
|
export {
|
|
917
976
|
_Table as default
|
|
918
977
|
};
|
|
@@ -86,7 +86,7 @@ const widgets = require("../table/property/widgets.vue.js");
|
|
|
86
86
|
require("../../../../node_modules/element-plus/theme-chalk/el-tab-pane.css.js");
|
|
87
87
|
;/* empty css */
|
|
88
88
|
;/* empty css */
|
|
89
|
-
;/* empty css
|
|
89
|
+
;/* empty css */
|
|
90
90
|
;/* empty css */
|
|
91
91
|
;/* empty css */
|
|
92
92
|
;/* empty css */
|
|
@@ -63,6 +63,12 @@ const _sfc_main = {
|
|
|
63
63
|
if (!item.btnRollback) {
|
|
64
64
|
item.btnRollback = [];
|
|
65
65
|
}
|
|
66
|
+
if (!item.subTableHeightType) {
|
|
67
|
+
item.subTableHeightType = "auto";
|
|
68
|
+
}
|
|
69
|
+
if (!item.subTableMaxHeight) {
|
|
70
|
+
item.subTableMaxHeight = 300;
|
|
71
|
+
}
|
|
66
72
|
return item;
|
|
67
73
|
});
|
|
68
74
|
const activeName = Vue.ref(["common"]);
|
|
@@ -150,7 +156,7 @@ const _sfc_main = {
|
|
|
150
156
|
return Vue.openBlock(), Vue.createBlock(_component_el_collapse, {
|
|
151
157
|
class: "setting",
|
|
152
158
|
modelValue: activeName.value,
|
|
153
|
-
"onUpdate:modelValue": _cache[
|
|
159
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => activeName.value = $event)
|
|
154
160
|
}, {
|
|
155
161
|
default: Vue.withCtx(() => [
|
|
156
162
|
Vue.createVNode(_component_el_collapse_item, {
|
|
@@ -187,19 +193,19 @@ const _sfc_main = {
|
|
|
187
193
|
}, {
|
|
188
194
|
default: Vue.withCtx(() => [
|
|
189
195
|
Vue.createVNode(_component_el_radio_button, { value: "none" }, {
|
|
190
|
-
default: Vue.withCtx(() => _cache[
|
|
196
|
+
default: Vue.withCtx(() => _cache[17] || (_cache[17] = [
|
|
191
197
|
Vue.createTextVNode("无")
|
|
192
198
|
])),
|
|
193
199
|
_: 1
|
|
194
200
|
}),
|
|
195
201
|
Vue.createVNode(_component_el_radio_button, { value: "label" }, {
|
|
196
|
-
default: Vue.withCtx(() => _cache[
|
|
202
|
+
default: Vue.withCtx(() => _cache[18] || (_cache[18] = [
|
|
197
203
|
Vue.createTextVNode("标题")
|
|
198
204
|
])),
|
|
199
205
|
_: 1
|
|
200
206
|
}),
|
|
201
207
|
Vue.createVNode(_component_el_radio_button, { value: "subLabel" }, {
|
|
202
|
-
default: Vue.withCtx(() => _cache[
|
|
208
|
+
default: Vue.withCtx(() => _cache[19] || (_cache[19] = [
|
|
203
209
|
Vue.createTextVNode("子标题")
|
|
204
210
|
])),
|
|
205
211
|
_: 1
|
|
@@ -236,13 +242,13 @@ const _sfc_main = {
|
|
|
236
242
|
}, {
|
|
237
243
|
default: Vue.withCtx(() => [
|
|
238
244
|
Vue.createVNode(_component_el_radio_button, { value: "main" }, {
|
|
239
|
-
default: Vue.withCtx(() => _cache[
|
|
245
|
+
default: Vue.withCtx(() => _cache[20] || (_cache[20] = [
|
|
240
246
|
Vue.createTextVNode("主页面获取")
|
|
241
247
|
])),
|
|
242
248
|
_: 1
|
|
243
249
|
}),
|
|
244
250
|
Vue.createVNode(_component_el_radio_button, { value: "self" }, {
|
|
245
|
-
default: Vue.withCtx(() => _cache[
|
|
251
|
+
default: Vue.withCtx(() => _cache[21] || (_cache[21] = [
|
|
246
252
|
Vue.createTextVNode("子列表自加载")
|
|
247
253
|
])),
|
|
248
254
|
_: 1
|
|
@@ -323,29 +329,85 @@ const _sfc_main = {
|
|
|
323
329
|
]),
|
|
324
330
|
_: 1
|
|
325
331
|
}),
|
|
326
|
-
Vue.createVNode(_component_el_form_item, { label: "
|
|
332
|
+
Vue.createVNode(_component_el_form_item, { label: "列表高度" }, {
|
|
333
|
+
default: Vue.withCtx(() => [
|
|
334
|
+
Vue.createVNode(_component_el_radio_group, {
|
|
335
|
+
modelValue: currentItem.value.subTableHeightType,
|
|
336
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => currentItem.value.subTableHeightType = $event),
|
|
337
|
+
size: "small"
|
|
338
|
+
}, {
|
|
339
|
+
default: Vue.withCtx(() => [
|
|
340
|
+
Vue.createVNode(_component_el_radio_button, { value: "auto" }, {
|
|
341
|
+
default: Vue.withCtx(() => _cache[22] || (_cache[22] = [
|
|
342
|
+
Vue.createTextVNode("自适应")
|
|
343
|
+
])),
|
|
344
|
+
_: 1
|
|
345
|
+
}),
|
|
346
|
+
Vue.createVNode(_component_el_radio_button, { value: "max" }, {
|
|
347
|
+
default: Vue.withCtx(() => _cache[23] || (_cache[23] = [
|
|
348
|
+
Vue.createTextVNode("最大高度")
|
|
349
|
+
])),
|
|
350
|
+
_: 1
|
|
351
|
+
}),
|
|
352
|
+
Vue.createVNode(_component_el_radio_button, { value: "fixed" }, {
|
|
353
|
+
default: Vue.withCtx(() => _cache[24] || (_cache[24] = [
|
|
354
|
+
Vue.createTextVNode("固定高度")
|
|
355
|
+
])),
|
|
356
|
+
_: 1
|
|
357
|
+
})
|
|
358
|
+
]),
|
|
359
|
+
_: 1
|
|
360
|
+
}, 8, ["modelValue"])
|
|
361
|
+
]),
|
|
362
|
+
_: 1
|
|
363
|
+
}),
|
|
364
|
+
currentItem.value.subTableHeightType == "max" ? (Vue.openBlock(), Vue.createBlock(_component_el_form_item, {
|
|
365
|
+
key: 0,
|
|
366
|
+
label: "最大高度"
|
|
367
|
+
}, {
|
|
368
|
+
default: Vue.withCtx(() => [
|
|
369
|
+
Vue.createVNode(_component_el_input_number, {
|
|
370
|
+
modelValue: currentItem.value.subTableMaxHeight,
|
|
371
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => currentItem.value.subTableMaxHeight = $event),
|
|
372
|
+
min: 100,
|
|
373
|
+
"controls-position": "right",
|
|
374
|
+
controls: false,
|
|
375
|
+
style: { "width": "100%" }
|
|
376
|
+
}, {
|
|
377
|
+
suffix: Vue.withCtx(() => _cache[25] || (_cache[25] = [
|
|
378
|
+
Vue.createTextVNode("px")
|
|
379
|
+
])),
|
|
380
|
+
_: 1
|
|
381
|
+
}, 8, ["modelValue"])
|
|
382
|
+
]),
|
|
383
|
+
_: 1
|
|
384
|
+
})) : Vue.createCommentVNode("", true),
|
|
385
|
+
currentItem.value.subTableHeightType == "fixed" ? (Vue.openBlock(), Vue.createBlock(_component_el_form_item, {
|
|
386
|
+
key: 1,
|
|
387
|
+
label: "固定高度"
|
|
388
|
+
}, {
|
|
327
389
|
default: Vue.withCtx(() => [
|
|
328
390
|
Vue.createVNode(_component_el_input_number, {
|
|
329
391
|
modelValue: currentItem.value.subTableHeight,
|
|
330
|
-
"onUpdate:modelValue": _cache[
|
|
331
|
-
min:
|
|
392
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => currentItem.value.subTableHeight = $event),
|
|
393
|
+
min: 100,
|
|
332
394
|
"controls-position": "right",
|
|
333
395
|
controls: false,
|
|
334
396
|
style: { "width": "100%" }
|
|
335
397
|
}, {
|
|
336
|
-
suffix: Vue.withCtx(() => _cache[
|
|
398
|
+
suffix: Vue.withCtx(() => _cache[26] || (_cache[26] = [
|
|
337
399
|
Vue.createTextVNode("px")
|
|
338
400
|
])),
|
|
339
401
|
_: 1
|
|
340
402
|
}, 8, ["modelValue"])
|
|
341
403
|
]),
|
|
342
404
|
_: 1
|
|
343
|
-
}),
|
|
405
|
+
})) : Vue.createCommentVNode("", true),
|
|
344
406
|
Vue.createVNode(_component_el_form_item, { label: "是否翻页" }, {
|
|
345
407
|
default: Vue.withCtx(() => [
|
|
346
408
|
Vue.createVNode(_component_el_switch, {
|
|
347
409
|
modelValue: currentItem.value.isSubTablePagination,
|
|
348
|
-
"onUpdate:modelValue": _cache[
|
|
410
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => currentItem.value.isSubTablePagination = $event)
|
|
349
411
|
}, null, 8, ["modelValue"])
|
|
350
412
|
]),
|
|
351
413
|
_: 1
|
|
@@ -354,7 +416,7 @@ const _sfc_main = {
|
|
|
354
416
|
default: Vue.withCtx(() => [
|
|
355
417
|
Vue.createVNode(_component_el_switch, {
|
|
356
418
|
modelValue: currentItem.value.isSubTableReadOnly,
|
|
357
|
-
"onUpdate:modelValue": _cache[
|
|
419
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => currentItem.value.isSubTableReadOnly = $event)
|
|
358
420
|
}, null, 8, ["modelValue"])
|
|
359
421
|
]),
|
|
360
422
|
_: 1
|
|
@@ -363,7 +425,7 @@ const _sfc_main = {
|
|
|
363
425
|
default: Vue.withCtx(() => [
|
|
364
426
|
Vue.createElementVNode("div", _hoisted_1, [
|
|
365
427
|
currentItem.value.btnRollback && currentItem.value.btnRollback.length > 0 ? (Vue.openBlock(), Vue.createElementBlock("div", _hoisted_2, [
|
|
366
|
-
_cache[
|
|
428
|
+
_cache[27] || (_cache[27] = Vue.createElementVNode("div", { class: "buttons-header" }, [
|
|
367
429
|
Vue.createElementVNode("div", { class: "buttons-cell name-header" }, "按钮"),
|
|
368
430
|
Vue.createElementVNode("div", { class: "buttons-cell action-header" }, "回调事件")
|
|
369
431
|
], -1)),
|
|
@@ -432,7 +494,7 @@ const _sfc_main = {
|
|
|
432
494
|
icon: "Plus",
|
|
433
495
|
link: ""
|
|
434
496
|
}, {
|
|
435
|
-
default: Vue.withCtx(() => _cache[
|
|
497
|
+
default: Vue.withCtx(() => _cache[28] || (_cache[28] = [
|
|
436
498
|
Vue.createTextVNode(" 新增按钮 ")
|
|
437
499
|
])),
|
|
438
500
|
_: 1
|
|
@@ -458,5 +520,5 @@ const _sfc_main = {
|
|
|
458
520
|
};
|
|
459
521
|
}
|
|
460
522
|
};
|
|
461
|
-
const subTable = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
523
|
+
const subTable = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-f81c0a82"]]);
|
|
462
524
|
exports.default = subTable;
|
package/lib/designer.css
CHANGED
|
@@ -3307,19 +3307,19 @@ to {
|
|
|
3307
3307
|
[data-v-d42788bd] .el-form-item__content {
|
|
3308
3308
|
flex-wrap: wrap !important;
|
|
3309
3309
|
}
|
|
3310
|
-
.buttons-table[data-v-
|
|
3310
|
+
.buttons-table[data-v-f81c0a82] {
|
|
3311
3311
|
width: 100%;
|
|
3312
3312
|
border: 1px solid #dcdfe6;
|
|
3313
3313
|
border-radius: 4px;
|
|
3314
3314
|
overflow: hidden;
|
|
3315
3315
|
}
|
|
3316
|
-
.buttons-header[data-v-
|
|
3316
|
+
.buttons-header[data-v-f81c0a82] {
|
|
3317
3317
|
display: flex;
|
|
3318
3318
|
background-color: #f5f7fa;
|
|
3319
3319
|
height: 26px;
|
|
3320
3320
|
line-height: 26px;
|
|
3321
3321
|
}
|
|
3322
|
-
.buttons-cell[data-v-
|
|
3322
|
+
.buttons-cell[data-v-f81c0a82] {
|
|
3323
3323
|
padding: 0px 12px;
|
|
3324
3324
|
font-weight: 500;
|
|
3325
3325
|
font-size: 13px;
|
|
@@ -3328,27 +3328,27 @@ to {
|
|
|
3328
3328
|
display: flex;
|
|
3329
3329
|
align-items: center;
|
|
3330
3330
|
}
|
|
3331
|
-
.buttons-cell[data-v-
|
|
3331
|
+
.buttons-cell[data-v-f81c0a82]:last-child {
|
|
3332
3332
|
border-right: none;
|
|
3333
3333
|
}
|
|
3334
|
-
.name-header[data-v-
|
|
3334
|
+
.name-header[data-v-f81c0a82] {
|
|
3335
3335
|
flex: 1;
|
|
3336
3336
|
min-width: 100px;
|
|
3337
3337
|
font-size: 12px;
|
|
3338
3338
|
}
|
|
3339
|
-
.action-header[data-v-
|
|
3339
|
+
.action-header[data-v-f81c0a82] {
|
|
3340
3340
|
width: 180px;
|
|
3341
3341
|
text-align: center;
|
|
3342
3342
|
}
|
|
3343
|
-
.buttons-row[data-v-
|
|
3343
|
+
.buttons-row[data-v-f81c0a82] {
|
|
3344
3344
|
display: flex;
|
|
3345
3345
|
border-top: 1px solid #ebeef5;
|
|
3346
3346
|
}
|
|
3347
|
-
.name-cell[data-v-
|
|
3347
|
+
.name-cell[data-v-f81c0a82] {
|
|
3348
3348
|
flex: 1;
|
|
3349
3349
|
min-width: 100px;
|
|
3350
3350
|
}
|
|
3351
|
-
.action-cell[data-v-
|
|
3351
|
+
.action-cell[data-v-f81c0a82] {
|
|
3352
3352
|
width: 180px;
|
|
3353
3353
|
display: flex;
|
|
3354
3354
|
align-items: center;
|
|
@@ -3356,29 +3356,29 @@ to {
|
|
|
3356
3356
|
gap: 4px;
|
|
3357
3357
|
padding: 5px;
|
|
3358
3358
|
}
|
|
3359
|
-
.buttons-footer[data-v-
|
|
3359
|
+
.buttons-footer[data-v-f81c0a82] {
|
|
3360
3360
|
padding: 8px 0;
|
|
3361
3361
|
display: flex;
|
|
3362
3362
|
gap: 8px;
|
|
3363
3363
|
}
|
|
3364
|
-
.buttons-config-container[data-v-
|
|
3364
|
+
.buttons-config-container[data-v-f81c0a82] {
|
|
3365
3365
|
width: 100%;
|
|
3366
3366
|
}
|
|
3367
|
-
.button-dropdown-item[data-v-
|
|
3367
|
+
.button-dropdown-item[data-v-f81c0a82] {
|
|
3368
3368
|
padding: 8px 12px;
|
|
3369
3369
|
}
|
|
3370
|
-
.button-dropdown-content[data-v-
|
|
3370
|
+
.button-dropdown-content[data-v-f81c0a82] {
|
|
3371
3371
|
display: flex;
|
|
3372
3372
|
justify-content: space-between;
|
|
3373
3373
|
align-items: center;
|
|
3374
3374
|
width: 100%;
|
|
3375
3375
|
min-width: 200px;
|
|
3376
3376
|
}
|
|
3377
|
-
.button-name[data-v-
|
|
3377
|
+
.button-name[data-v-f81c0a82] {
|
|
3378
3378
|
font-size: 13px;
|
|
3379
3379
|
color: #606266;
|
|
3380
3380
|
}
|
|
3381
|
-
.button-type[data-v-
|
|
3381
|
+
.button-type[data-v-f81c0a82] {
|
|
3382
3382
|
font-size: 11px;
|
|
3383
3383
|
color: #909399;
|
|
3384
3384
|
padding: 2px 4px;
|
|
@@ -6620,12 +6620,12 @@ body,
|
|
|
6620
6620
|
}
|
|
6621
6621
|
[data-v-e95c842d] .el-checkbox-group .el-checkbox-button__inner {
|
|
6622
6622
|
border-radius: 4px;
|
|
6623
|
-
}.fec-table[data-v-
|
|
6623
|
+
}.fec-table[data-v-b224babf] {
|
|
6624
6624
|
height: 100%;
|
|
6625
6625
|
flex-grow: 1;
|
|
6626
6626
|
padding: 0 16px;
|
|
6627
6627
|
}
|
|
6628
|
-
.fec-table-container[data-v-
|
|
6628
|
+
.fec-table-container[data-v-b224babf] {
|
|
6629
6629
|
width: 100%;
|
|
6630
6630
|
background: #fff;
|
|
6631
6631
|
box-sizing: border-box;
|
|
@@ -6635,87 +6635,87 @@ body,
|
|
|
6635
6635
|
overflow: hidden;
|
|
6636
6636
|
flex-grow: 1;
|
|
6637
6637
|
}
|
|
6638
|
-
.fec-table-container .fec-vxe-table[data-v-
|
|
6638
|
+
.fec-table-container .fec-vxe-table[data-v-b224babf] {
|
|
6639
6639
|
flex: 1;
|
|
6640
6640
|
min-height: 0;
|
|
6641
6641
|
overflow: hidden;
|
|
6642
6642
|
margin-bottom: 16px;
|
|
6643
6643
|
}
|
|
6644
|
-
.fec-table-container[data-v-
|
|
6644
|
+
.fec-table-container[data-v-b224babf] .vxe-table {
|
|
6645
6645
|
font-size: 14px;
|
|
6646
6646
|
font-family: inherit;
|
|
6647
6647
|
}
|
|
6648
|
-
.fec-table-container[data-v-
|
|
6649
|
-
.fec-table-container[data-v-
|
|
6648
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-sort--asc-btn,
|
|
6649
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-sort--desc-btn {
|
|
6650
6650
|
color: #dcdcdc;
|
|
6651
6651
|
}
|
|
6652
|
-
.fec-table-container[data-v-
|
|
6653
|
-
.fec-table-container[data-v-
|
|
6652
|
+
.fec-table-container[data-v-b224babf] .vxe-table .serverSort .vxe-sort--asc-btn,
|
|
6653
|
+
.fec-table-container[data-v-b224babf] .vxe-table .serverSort .vxe-sort--desc-btn {
|
|
6654
6654
|
color: #d3edf9;
|
|
6655
6655
|
}
|
|
6656
|
-
.fec-table-container[data-v-
|
|
6656
|
+
.fec-table-container[data-v-b224babf] .vxe-table .serverSort .sort--active {
|
|
6657
6657
|
color: var(--el-color-primary);
|
|
6658
6658
|
}
|
|
6659
|
-
.fec-table-container[data-v-
|
|
6659
|
+
.fec-table-container[data-v-b224babf] .vxe-table .sort--active {
|
|
6660
6660
|
color: var(--el-color-primary);
|
|
6661
6661
|
}
|
|
6662
|
-
.fec-table-container[data-v-
|
|
6662
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--body-wrapper {
|
|
6663
6663
|
overflow: auto;
|
|
6664
6664
|
}
|
|
6665
|
-
.fec-table-container[data-v-
|
|
6666
|
-
.fec-table-container[data-v-
|
|
6667
|
-
.fec-table-container[data-v-
|
|
6665
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--body,
|
|
6666
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--header,
|
|
6667
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--footer {
|
|
6668
6668
|
width: 100% !important;
|
|
6669
6669
|
}
|
|
6670
|
-
.fec-table-container[data-v-
|
|
6670
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-header--column {
|
|
6671
6671
|
background-color: #fff;
|
|
6672
6672
|
}
|
|
6673
|
-
.fec-table-container[data-v-
|
|
6673
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-header--column .vxe-cell {
|
|
6674
6674
|
height: 40px !important;
|
|
6675
6675
|
min-height: 40px !important;
|
|
6676
6676
|
color: #333;
|
|
6677
6677
|
}
|
|
6678
|
-
.fec-table-container[data-v-
|
|
6678
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--header-inner-wrapper {
|
|
6679
6679
|
height: 40px !important;
|
|
6680
6680
|
}
|
|
6681
|
-
.fec-table-container[data-v-
|
|
6681
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-body--column .vxe-cell {
|
|
6682
6682
|
padding: 6px !important;
|
|
6683
6683
|
min-height: 32px !important;
|
|
6684
6684
|
color: #666;
|
|
6685
6685
|
font-size: 13px;
|
|
6686
6686
|
}
|
|
6687
|
-
.fec-table-container[data-v-
|
|
6688
|
-
.fec-table-container[data-v-
|
|
6687
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-body--column .c--tooltip,
|
|
6688
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-body--column .c--title {
|
|
6689
6689
|
height: 32px !important;
|
|
6690
6690
|
min-height: 32px !important;
|
|
6691
6691
|
}
|
|
6692
|
-
.fec-table-container[data-v-
|
|
6692
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--border-line {
|
|
6693
6693
|
border: none;
|
|
6694
6694
|
border-bottom: 1px solid #ebeef5;
|
|
6695
6695
|
border-top: 1px solid #ebeef5;
|
|
6696
6696
|
}
|
|
6697
|
-
.fec-table-container[data-v-
|
|
6698
|
-
.fec-table-container[data-v-
|
|
6697
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--scroll-y-handle-appearance,
|
|
6698
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--scroll-y-wrapper:after {
|
|
6699
6699
|
border: none !important;
|
|
6700
6700
|
}
|
|
6701
|
-
.fec-table-container[data-v-
|
|
6701
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-table--scroll-y-top-corner {
|
|
6702
6702
|
display: none !important;
|
|
6703
6703
|
}
|
|
6704
|
-
.fec-table-container[data-v-
|
|
6704
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-cell--sort {
|
|
6705
6705
|
font-size: 14px;
|
|
6706
6706
|
}
|
|
6707
|
-
.fec-table-container[data-v-
|
|
6708
|
-
.fec-table-container[data-v-
|
|
6709
|
-
.fec-table-container[data-v-
|
|
6710
|
-
.fec-table-container[data-v-
|
|
6711
|
-
.fec-table-container[data-v-
|
|
6712
|
-
.fec-table-container[data-v-
|
|
6707
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-body--column,
|
|
6708
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-footer--column,
|
|
6709
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-header--column,
|
|
6710
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-body--column,
|
|
6711
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-footer--column,
|
|
6712
|
+
.fec-table-container[data-v-b224babf] .vxe-table .vxe-header--column {
|
|
6713
6713
|
background-image: linear-gradient(#ebeef5, #ebeef5) !important;
|
|
6714
6714
|
}
|
|
6715
|
-
.fec-table-container[data-v-
|
|
6715
|
+
.fec-table-container[data-v-b224babf] .vxe-table .el-button.is-disabled {
|
|
6716
6716
|
color: #ccc !important;
|
|
6717
6717
|
}
|
|
6718
|
-
.fec-table-sub[data-v-
|
|
6718
|
+
.fec-table-sub[data-v-b224babf] .vxe-table .vxe-table--border-line {
|
|
6719
6719
|
border-top: none;
|
|
6720
6720
|
}
|
|
6721
6721
|
.fec-layout-card[data-v-a6236024] {
|