@fecp/designer 5.5.50 → 5.5.51
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/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.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/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer.css +48 -48
- package/es/packages/vue/src/components/forms/subTable/SubTable.vue.mjs +7 -9
- package/es/packages/vue/src/components/table/Table.vue.mjs +72 -15
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.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/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer.css +48 -48
- package/lib/packages/vue/src/components/forms/subTable/SubTable.vue.js +7 -9
- package/lib/packages/vue/src/components/table/Table.vue.js +71 -14
- 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 } 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
|
|
@@ -126,6 +134,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
126
134
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
127
135
|
const props = __props;
|
|
128
136
|
const emit = __emit;
|
|
137
|
+
const fecTableContainerRef = ref(null);
|
|
129
138
|
const tableRef = ref(null);
|
|
130
139
|
const tableContainer = ref(null);
|
|
131
140
|
const currentMode = ref("");
|
|
@@ -187,13 +196,43 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
187
196
|
};
|
|
188
197
|
});
|
|
189
198
|
const autoResize = computed(() => {
|
|
190
|
-
|
|
199
|
+
if (props.isSubTable) {
|
|
200
|
+
if (props.heightMode) {
|
|
201
|
+
return props.heightMode == "auto";
|
|
202
|
+
} else {
|
|
203
|
+
return false;
|
|
204
|
+
}
|
|
205
|
+
} else {
|
|
206
|
+
return localConfig.value.heightMode == "auto";
|
|
207
|
+
}
|
|
191
208
|
});
|
|
192
209
|
const tableHeight = computed(() => {
|
|
193
|
-
if (
|
|
194
|
-
|
|
210
|
+
if (props.isSubTable) {
|
|
211
|
+
if (props.heightMode == "fixed" && props.height) {
|
|
212
|
+
return props.height;
|
|
213
|
+
} else {
|
|
214
|
+
return "";
|
|
215
|
+
}
|
|
216
|
+
} else {
|
|
217
|
+
if (localConfig.value.heightMode === "auto") {
|
|
218
|
+
return "100%";
|
|
219
|
+
}
|
|
220
|
+
return localConfig.value.height || 500;
|
|
221
|
+
}
|
|
222
|
+
});
|
|
223
|
+
const tableMaxHeight = computed(() => {
|
|
224
|
+
if (props.isSubTable) {
|
|
225
|
+
if (props.heightMode == "max" && props.maxHeight) {
|
|
226
|
+
return props.maxHeight;
|
|
227
|
+
} else {
|
|
228
|
+
return "";
|
|
229
|
+
}
|
|
230
|
+
} else {
|
|
231
|
+
if (localConfig.value.heightMode === "max") {
|
|
232
|
+
return localConfig.value.maxHeight || 500;
|
|
233
|
+
}
|
|
234
|
+
return "";
|
|
195
235
|
}
|
|
196
|
-
return localConfig.value.height || 500;
|
|
197
236
|
});
|
|
198
237
|
const summaryConfig = computed(() => {
|
|
199
238
|
return localConfig.value.summaryConfig || {
|
|
@@ -506,6 +545,23 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
506
545
|
const handleRadioChange = (checked) => {
|
|
507
546
|
emit("selection-change", [checked.row]);
|
|
508
547
|
};
|
|
548
|
+
const handleInitRendered = ({ visibleColumn, visibleData, $event }) => {
|
|
549
|
+
if ((visibleData == null ? void 0 : visibleData.length) > 0) {
|
|
550
|
+
const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
|
|
551
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
552
|
+
}
|
|
553
|
+
};
|
|
554
|
+
const handleDataRendered = ({
|
|
555
|
+
isReload,
|
|
556
|
+
visibleColumn,
|
|
557
|
+
visibleData,
|
|
558
|
+
$event
|
|
559
|
+
}) => {
|
|
560
|
+
if ((visibleData == null ? void 0 : visibleData.length) > 0) {
|
|
561
|
+
const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
|
|
562
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
563
|
+
}
|
|
564
|
+
};
|
|
509
565
|
const handleFilterSearch = (filters) => {
|
|
510
566
|
var _a, _b;
|
|
511
567
|
if (dataSourceManager.value) {
|
|
@@ -706,7 +762,6 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
706
762
|
}
|
|
707
763
|
});
|
|
708
764
|
initHandleEvent();
|
|
709
|
-
emit("loaded", localConfig.value);
|
|
710
765
|
configLoading.value = false;
|
|
711
766
|
return;
|
|
712
767
|
}
|
|
@@ -800,7 +855,9 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
800
855
|
"data-id": localConfig.value.templateKey,
|
|
801
856
|
"data-name": localConfig.value.templateName,
|
|
802
857
|
"data-pkId": localConfig.value.pkId,
|
|
803
|
-
"data-version": "v5"
|
|
858
|
+
"data-version": "v5",
|
|
859
|
+
ref_key: "fecTableContainerRef",
|
|
860
|
+
ref: fecTableContainerRef
|
|
804
861
|
}, {
|
|
805
862
|
default: withCtx(() => {
|
|
806
863
|
var _a, _b, _c, _d;
|
|
@@ -809,10 +866,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
809
866
|
key: 0,
|
|
810
867
|
ref_key: "tableContainer",
|
|
811
868
|
ref: tableContainer,
|
|
812
|
-
class: "fec-table-container"
|
|
813
|
-
style: normalizeStyle(
|
|
814
|
-
props.height && props.height > 0 ? { height: `${props.height}px` } : {}
|
|
815
|
-
)
|
|
869
|
+
class: "fec-table-container"
|
|
816
870
|
}, [
|
|
817
871
|
((_b = (_a = localConfig.value) == null ? void 0 : _a.queryConfig) == null ? void 0 : _b.mode) == "fixed" ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
818
872
|
createVNode(TableFilter, {
|
|
@@ -850,6 +904,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
850
904
|
data: displayData.value,
|
|
851
905
|
"auto-resize": autoResize.value,
|
|
852
906
|
height: tableHeight.value,
|
|
907
|
+
maxHeight: tableMaxHeight.value,
|
|
853
908
|
"empty-text": "暂无数据",
|
|
854
909
|
"export-config": unref(exportConfig),
|
|
855
910
|
"row-config": rowConfig.value,
|
|
@@ -861,7 +916,9 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
861
916
|
onSortChange: handleSortChange,
|
|
862
917
|
onCheckboxChange: handleCheckboxChange,
|
|
863
918
|
onCheckboxAll: handleCheckboxAll,
|
|
864
|
-
onRadioChange: handleRadioChange
|
|
919
|
+
onRadioChange: handleRadioChange,
|
|
920
|
+
onInitRendered: handleInitRendered,
|
|
921
|
+
onDataRendered: handleDataRendered
|
|
865
922
|
}, {
|
|
866
923
|
default: withCtx(() => {
|
|
867
924
|
var _a2;
|
|
@@ -896,7 +953,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
896
953
|
];
|
|
897
954
|
}),
|
|
898
955
|
_: 3
|
|
899
|
-
}, 8, ["data", "auto-resize", "height", "export-config", "row-config", "radio-config", "checkbox-config", "sort-config", "show-footer", "footer-data"])
|
|
956
|
+
}, 8, ["data", "auto-resize", "height", "maxHeight", "export-config", "row-config", "radio-config", "checkbox-config", "sort-config", "show-footer", "footer-data"])
|
|
900
957
|
]),
|
|
901
958
|
isPagination.value && displayData.value.length > 0 ? (openBlock(), createBlock(Pagination, {
|
|
902
959
|
key: 2,
|
|
@@ -904,7 +961,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
904
961
|
pagination: displayPagination.value,
|
|
905
962
|
onChange: handlePageChange
|
|
906
963
|
}, null, 8, ["config", "pagination"])) : createCommentVNode("", true)
|
|
907
|
-
],
|
|
964
|
+
], 512)) : createCommentVNode("", true)
|
|
908
965
|
];
|
|
909
966
|
}),
|
|
910
967
|
_: 3
|
|
@@ -912,7 +969,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
912
969
|
};
|
|
913
970
|
}
|
|
914
971
|
});
|
|
915
|
-
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
972
|
+
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b4cfc848"]]);
|
|
916
973
|
export {
|
|
917
974
|
_Table as default
|
|
918
975
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogDialog() {
|
|
6
6
|
const dialogDialogVisible = Vue.ref(false);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogGlobalDialog() {
|
|
6
6
|
const dialogGlobalDialogVisible = Vue.ref(false);
|
|
@@ -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;
|
|
@@ -54,8 +54,8 @@ const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_exp
|
|
|
54
54
|
require("../../../components/TemplateSelector.vue.js");
|
|
55
55
|
require("../../table/default.js");
|
|
56
56
|
;/* empty css */
|
|
57
|
-
;/* empty css
|
|
58
|
-
;/* empty css
|
|
57
|
+
;/* empty css */
|
|
58
|
+
;/* empty css */
|
|
59
59
|
require("../../../store/index.js");
|
|
60
60
|
;/* empty css */
|
|
61
61
|
const index$2 = require("../../../../../node_modules/element-plus/es/components/collapse/index.js");
|
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-b4cfc848] {
|
|
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-b4cfc848] {
|
|
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-b4cfc848] {
|
|
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-b4cfc848] .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-b4cfc848] .vxe-table .vxe-sort--asc-btn,
|
|
6649
|
+
.fec-table-container[data-v-b4cfc848] .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-b4cfc848] .vxe-table .serverSort .vxe-sort--asc-btn,
|
|
6653
|
+
.fec-table-container[data-v-b4cfc848] .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-b4cfc848] .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-b4cfc848] .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-b4cfc848] .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-b4cfc848] .vxe-table .vxe-table--body,
|
|
6666
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-table--header,
|
|
6667
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-table--footer {
|
|
6668
6668
|
width: 100% !important;
|
|
6669
6669
|
}
|
|
6670
|
-
.fec-table-container[data-v-
|
|
6670
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-header--column {
|
|
6671
6671
|
background-color: #fff;
|
|
6672
6672
|
}
|
|
6673
|
-
.fec-table-container[data-v-
|
|
6673
|
+
.fec-table-container[data-v-b4cfc848] .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-b4cfc848] .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-b4cfc848] .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-b4cfc848] .vxe-table .vxe-body--column .c--tooltip,
|
|
6688
|
+
.fec-table-container[data-v-b4cfc848] .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-b4cfc848] .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-b4cfc848] .vxe-table .vxe-table--scroll-y-handle-appearance,
|
|
6698
|
+
.fec-table-container[data-v-b4cfc848] .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-b4cfc848] .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-b4cfc848] .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-b4cfc848] .vxe-table .vxe-body--column,
|
|
6708
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-footer--column,
|
|
6709
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-header--column,
|
|
6710
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-body--column,
|
|
6711
|
+
.fec-table-container[data-v-b4cfc848] .vxe-table .vxe-footer--column,
|
|
6712
|
+
.fec-table-container[data-v-b4cfc848] .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-b4cfc848] .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-b4cfc848] .vxe-table .vxe-table--border-line {
|
|
6719
6719
|
border-top: none;
|
|
6720
6720
|
}
|
|
6721
6721
|
.fec-layout-card[data-v-a6236024] {
|