super-page-designer 2.0.92 → 2.0.96
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/dist/es/components/design/utils/assemblys-config.js +2494 -2034
- package/dist/es/components/design/utils/interfaces/page-design-types.d.ts +1 -0
- package/dist/es/components/design/views/assemblys/data/component/column-config.vue.js +0 -1
- package/dist/es/components/design/views/assemblys/data/component/configuration-value.vue.js +30 -19
- package/dist/es/components/design/views/assemblys/data/component/dynamic-column.vue.js +14 -3
- package/dist/es/components/design/views/assemblys/data/table/table-attr-advanced.vue.js +2 -3
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue2.js +69 -534
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-dynamic-column.vue.js +731 -0
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-dynamic-column.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/form/file-upload/fileupload-design.vue2.js +1 -0
- package/dist/es/components/design/views/assemblys/object-design.vue.js +13 -2
- package/dist/es/components/design/views/assemblys/page/page-attr-advanced.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/workflow/workflow-button/workflowbutton-attr-base.vue.js +7 -34
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-base.vue.js +85 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-base.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-event.vue.js +30 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-event.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-style.vue.js +51 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr-style.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr.vue.js +5 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr.vue2.js +42 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-attr.vue3.js +1 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-design.vue.js +4 -0
- package/dist/es/components/design/views/assemblys/workflow/workflow-node/workflownode-design.vue2.js +58 -0
- package/dist/es/components/design/views/design/view/components/quick-add-dialog.vue.js +1 -1
- package/dist/es/components/design/views/design/view/components/quick-add-fields.vue.js +53 -10
- package/dist/es/style.css +726 -107
- package/package.json +5 -5
|
@@ -1,35 +1,28 @@
|
|
|
1
|
-
import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createCommentVNode, createTextVNode, unref, createElementBlock, Fragment, renderList,
|
|
2
|
-
import { Setting, Search
|
|
1
|
+
import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createCommentVNode, createTextVNode, unref, createElementBlock, Fragment, renderList, withDirectives, vShow } from "vue";
|
|
2
|
+
import { Setting, Search } from "@element-plus/icons-vue";
|
|
3
3
|
import { getFormComponentOptions } from "../../../../utils/assemblys-config.js";
|
|
4
|
-
import _sfc_main$
|
|
4
|
+
import _sfc_main$6 from "../component/querySetting.vue.js";
|
|
5
5
|
import DataOrigin from "../../form/common/data-origin.vue.js";
|
|
6
6
|
import BindVariable from "../../common/common-variable-bind.vue.js";
|
|
7
7
|
import { setGroupHeaderDataDisplayOrder, deleteGroupHeaderByColumnUuid } from "../../../../utils/data-table-util.js";
|
|
8
8
|
import { getUuidv4 } from "../../../../utils/common-util.js";
|
|
9
9
|
import eventBus from "../../../../utils/eventBus.js";
|
|
10
10
|
import _sfc_main$1 from "../component/variate-select.vue.js";
|
|
11
|
-
import _sfc_main$
|
|
12
|
-
import "../../form/common/icon-set-dialog.vue3.js";
|
|
11
|
+
import _sfc_main$4 from "../../form/common/suffixmodule.vue.js";
|
|
13
12
|
import _sfc_main$2 from "../../common/common-function-code.vue.js";
|
|
14
|
-
import _sfc_main$
|
|
13
|
+
import _sfc_main$7 from "../../common/common-select-table.vue.js";
|
|
15
14
|
import { queryTableFields, tableResetConfigIndo } from "../../../../utils/page-table-util.js";
|
|
16
15
|
import { usePageContextStore } from "../../../../../../stores/page-store.js";
|
|
17
|
-
import _sfc_main$
|
|
18
|
-
import
|
|
19
|
-
import _sfc_main$
|
|
20
|
-
import http from "agilebuilder-ui/src/utils/request";
|
|
21
|
-
import _sfc_main$3 from "../../common/page-permission-select.vue.js";
|
|
22
|
-
const _withScopeId = (n) => (pushScopeId("data-v-9d69c477"), n = n(), popScopeId(), n);
|
|
16
|
+
import _sfc_main$5 from "../component/formatting-icon-label.vue.js";
|
|
17
|
+
import "agilebuilder-ui/src/utils/request";
|
|
18
|
+
import _sfc_main$3 from "./tablecolumn-dynamic-column.vue.js";
|
|
23
19
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
24
20
|
const _hoisted_2 = { class: "amb-design-attr-item-inline" };
|
|
25
21
|
const _hoisted_3 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
26
|
-
const _hoisted_4 =
|
|
27
|
-
const _hoisted_5 =
|
|
22
|
+
const _hoisted_4 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
23
|
+
const _hoisted_5 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
28
24
|
const _hoisted_6 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
29
25
|
const _hoisted_7 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
30
|
-
const _hoisted_8 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
31
|
-
const _hoisted_9 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
32
|
-
const _hoisted_10 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
33
26
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
34
27
|
__name: "tablecolumn-attr-base",
|
|
35
28
|
props: {
|
|
@@ -71,7 +64,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
71
64
|
const operationColumn = ref(false);
|
|
72
65
|
onMounted(() => {
|
|
73
66
|
var _a;
|
|
74
|
-
debugger;
|
|
75
67
|
if (((_a = props.configure.props.base) == null ? void 0 : _a.prop) === "dynamicColumnSelect") {
|
|
76
68
|
if (props.configure.props.dynamicColumnData && props.configure.props.dynamicColumnData.tableName) {
|
|
77
69
|
selectTableType.value == "masterTable";
|
|
@@ -106,25 +98,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
106
98
|
}
|
|
107
99
|
}
|
|
108
100
|
const selectTableType = ref("");
|
|
109
|
-
function selectTable(type) {
|
|
110
|
-
selectTableDialog.value.openDialog();
|
|
111
|
-
selectTableType.value = type;
|
|
112
|
-
}
|
|
113
|
-
function clearTable(type) {
|
|
114
|
-
if (type == "masterTable") {
|
|
115
|
-
props.configure.props.dynamicColumnData.tableName = "";
|
|
116
|
-
props.configure.props.dynamicColumnData.tableAlias = "";
|
|
117
|
-
props.configure.props.dynamicColumnData.dataTableCode = null;
|
|
118
|
-
props.configure.props.dynamicColumnData.tableSysVersion = null;
|
|
119
|
-
} else {
|
|
120
|
-
props.configure.props.dynamicColumnData.settingDataName = "";
|
|
121
|
-
props.configure.props.dynamicColumnData.settingDataAlias = "";
|
|
122
|
-
props.configure.props.dynamicColumnData.settingDataTableCode = null;
|
|
123
|
-
props.configure.props.dynamicColumnData.settingDataSysVersion = null;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
101
|
function onSelectTable(tableInfo) {
|
|
127
|
-
debugger;
|
|
128
102
|
if (selectTableType.value == "masterTable") {
|
|
129
103
|
let hisKey = props.configure.props.dynamicColumnData.dataTableCode ? props.configure.props.dynamicColumnData.dataTableCode : "";
|
|
130
104
|
hisKey += "_";
|
|
@@ -241,49 +215,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
241
215
|
function updateOrder() {
|
|
242
216
|
eventBus.$emit("reloadTable-" + props.tableConfigure.uuid);
|
|
243
217
|
}
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
}
|
|
248
|
-
function addSortField() {
|
|
249
|
-
if (!props.configure.props.dynamicColumnData.dataTableSortTable) {
|
|
250
|
-
props.configure.props.dynamicColumnData.dataTableSortTable = [];
|
|
251
|
-
}
|
|
252
|
-
props.configure.props.dynamicColumnData.dataTableSortTable.push({ name: "", type: "" });
|
|
253
|
-
atPresentSortIndex.value = "";
|
|
254
|
-
}
|
|
255
|
-
function removeSortField() {
|
|
256
|
-
if (props.configure.props.dynamicColumnData.dataTableSortTable.length > 0) {
|
|
257
|
-
props.configure.props.dynamicColumnData.dataTableSortTable.splice(
|
|
258
|
-
props.configure.props.dynamicColumnData.dataTableSortTable.length - 1,
|
|
259
|
-
1
|
|
260
|
-
);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
const queryOptionGroupLoading = ref(false);
|
|
264
|
-
const optionGroups = ref([]);
|
|
265
|
-
function queryOptionGroups(query) {
|
|
266
|
-
queryOptionGroupLoading.value = true;
|
|
267
|
-
const param = {
|
|
268
|
-
query
|
|
269
|
-
};
|
|
270
|
-
http.post(window.$vueApp.config.globalProperties.baseAPI + "/component/option-groups/query", param).then((result) => {
|
|
271
|
-
queryOptionGroupLoading.value = false;
|
|
272
|
-
optionGroups.value = result;
|
|
273
|
-
}).catch((error) => {
|
|
274
|
-
queryOptionGroupLoading.value = false;
|
|
275
|
-
console.log("查询选项组出错", error);
|
|
276
|
-
});
|
|
277
|
-
}
|
|
278
|
-
function afterSelectService(type, code, name) {
|
|
279
|
-
props.configure.props.dynamicColumnData.service.simpleCode = code;
|
|
280
|
-
props.configure.props.dynamicColumnData.service.name = name;
|
|
281
|
-
}
|
|
282
|
-
function dynamicColumnDataSourcesChange(value) {
|
|
283
|
-
if (value === "service" && !props.configure.props.dynamicColumnData.service) {
|
|
284
|
-
props.configure.props.dynamicColumnData.service = {};
|
|
285
|
-
}
|
|
286
|
-
}
|
|
218
|
+
ref("");
|
|
219
|
+
ref(false);
|
|
220
|
+
ref([]);
|
|
287
221
|
return (_ctx, _cache) => {
|
|
288
222
|
const _component_el_input = resolveComponent("el-input");
|
|
289
223
|
const _component_el_form_item = resolveComponent("el-form-item");
|
|
@@ -294,9 +228,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
294
228
|
const _component_el_select = resolveComponent("el-select");
|
|
295
229
|
const _component_el_icon = resolveComponent("el-icon");
|
|
296
230
|
const _component_el_collapse_item = resolveComponent("el-collapse-item");
|
|
297
|
-
const _component_el_button = resolveComponent("el-button");
|
|
298
|
-
const _component_el_divider = resolveComponent("el-divider");
|
|
299
231
|
const _component_el_input_number = resolveComponent("el-input-number");
|
|
232
|
+
const _component_el_button = resolveComponent("el-button");
|
|
300
233
|
const _component_el_checkbox = resolveComponent("el-checkbox");
|
|
301
234
|
const _component_el_checkbox_group = resolveComponent("el-checkbox-group");
|
|
302
235
|
const _component_el_col = resolveComponent("el-col");
|
|
@@ -309,7 +242,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
309
242
|
default: withCtx(() => [
|
|
310
243
|
createVNode(_component_el_collapse, {
|
|
311
244
|
modelValue: openCollapseItems.value,
|
|
312
|
-
"onUpdate:modelValue": _cache[
|
|
245
|
+
"onUpdate:modelValue": _cache[46] || (_cache[46] = ($event) => openCollapseItems.value = $event),
|
|
313
246
|
style: { "margin-top": "6px" }
|
|
314
247
|
}, {
|
|
315
248
|
default: withCtx(() => [
|
|
@@ -545,418 +478,20 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
545
478
|
isDynamicColumn: __props.configure.props.base.prop === "dynamicColumnSelect",
|
|
546
479
|
remote: true
|
|
547
480
|
}, null, 8, ["configure", "isDynamicColumn"])) : createCommentVNode("", true),
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
},
|
|
554
|
-
default: withCtx(() => [
|
|
555
|
-
createElementVNode("div", _hoisted_3, [
|
|
556
|
-
createVNode(_component_el_form_item, {
|
|
557
|
-
label: "数据来源",
|
|
558
|
-
class: "amb-design-attr-item"
|
|
559
|
-
}, {
|
|
560
|
-
default: withCtx(() => [
|
|
561
|
-
createVNode(_component_el_radio_group, {
|
|
562
|
-
modelValue: __props.configure.props.dynamicColumnData.dataSources,
|
|
563
|
-
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.dynamicColumnData.dataSources = $event),
|
|
564
|
-
onChange: dynamicColumnDataSourcesChange
|
|
565
|
-
}, {
|
|
566
|
-
default: withCtx(() => [
|
|
567
|
-
createVNode(_component_el_radio, { value: "dataTable" }, {
|
|
568
|
-
default: withCtx(() => [
|
|
569
|
-
createTextVNode("数据表/视图")
|
|
570
|
-
]),
|
|
571
|
-
_: 1
|
|
572
|
-
}),
|
|
573
|
-
createVNode(_component_el_radio, { value: "sql" }, {
|
|
574
|
-
default: withCtx(() => [
|
|
575
|
-
createTextVNode("SQL语句")
|
|
576
|
-
]),
|
|
577
|
-
_: 1
|
|
578
|
-
}),
|
|
579
|
-
createVNode(_component_el_radio, { value: "optionGroup" }, {
|
|
580
|
-
default: withCtx(() => [
|
|
581
|
-
createTextVNode("选项组")
|
|
582
|
-
]),
|
|
583
|
-
_: 1
|
|
584
|
-
}),
|
|
585
|
-
createVNode(_component_el_radio, { value: "bean" }, {
|
|
586
|
-
default: withCtx(() => [
|
|
587
|
-
createTextVNode("bean名称")
|
|
588
|
-
]),
|
|
589
|
-
_: 1
|
|
590
|
-
}),
|
|
591
|
-
createVNode(_component_el_radio, { value: "service" }, {
|
|
592
|
-
default: withCtx(() => [
|
|
593
|
-
createTextVNode("服务")
|
|
594
|
-
]),
|
|
595
|
-
_: 1
|
|
596
|
-
})
|
|
597
|
-
]),
|
|
598
|
-
_: 1
|
|
599
|
-
}, 8, ["modelValue"])
|
|
600
|
-
]),
|
|
601
|
-
_: 1
|
|
602
|
-
}),
|
|
603
|
-
__props.configure.props.dynamicColumnData.dataSources === "bean" ? (openBlock(), createBlock(_component_el_form_item, {
|
|
604
|
-
key: 0,
|
|
605
|
-
label: "bean名称",
|
|
606
|
-
class: "amb-design-attr-item"
|
|
607
|
-
}, {
|
|
608
|
-
default: withCtx(() => [
|
|
609
|
-
createVNode(_component_el_input, {
|
|
610
|
-
modelValue: __props.configure.props.dynamicColumnData.beanName,
|
|
611
|
-
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.dynamicColumnData.beanName = $event)
|
|
612
|
-
}, null, 8, ["modelValue"])
|
|
613
|
-
]),
|
|
614
|
-
_: 1
|
|
615
|
-
})) : createCommentVNode("", true),
|
|
616
|
-
__props.configure.props.dynamicColumnData.dataSources === "service" && __props.configure.props.dynamicColumnData.service ? (openBlock(), createBlock(_component_el_form_item, {
|
|
617
|
-
key: 1,
|
|
618
|
-
label: "服务名",
|
|
619
|
-
class: "amb-design-attr-item"
|
|
620
|
-
}, {
|
|
621
|
-
default: withCtx(() => [
|
|
622
|
-
createVNode(_sfc_main$3, {
|
|
623
|
-
pageDesign: __props.pageDesign,
|
|
624
|
-
rowObj: __props.configure.props.dynamicColumnData.service,
|
|
625
|
-
onlyService: "",
|
|
626
|
-
"onUpdate:modelValue": _cache[14] || (_cache[14] = (type, code, name) => afterSelectService(type, code, name))
|
|
627
|
-
}, null, 8, ["pageDesign", "rowObj"])
|
|
628
|
-
]),
|
|
629
|
-
_: 1
|
|
630
|
-
})) : createCommentVNode("", true),
|
|
631
|
-
createVNode(_component_el_form_item, {
|
|
632
|
-
label: "监控字段",
|
|
633
|
-
title: "监控主表字段",
|
|
634
|
-
class: "amb-design-attr-item"
|
|
635
|
-
}, {
|
|
636
|
-
default: withCtx(() => [
|
|
637
|
-
createVNode(_component_el_input, {
|
|
638
|
-
modelValue: __props.configure.props.dynamicColumnData.watchParentAttr,
|
|
639
|
-
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.dynamicColumnData.watchParentAttr = $event)
|
|
640
|
-
}, null, 8, ["modelValue"])
|
|
641
|
-
]),
|
|
642
|
-
_: 1
|
|
643
|
-
}),
|
|
644
|
-
__props.configure.props.dynamicColumnData.dataSources === "dataTable" ? (openBlock(), createBlock(_component_el_form_item, {
|
|
645
|
-
key: 2,
|
|
646
|
-
label: "数据表视图",
|
|
647
|
-
class: "amb-design-attr-item"
|
|
648
|
-
}, {
|
|
649
|
-
default: withCtx(() => [
|
|
650
|
-
createVNode(_component_el_input, {
|
|
651
|
-
modelValue: __props.configure.props.dynamicColumnData.tableName,
|
|
652
|
-
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => __props.configure.props.dynamicColumnData.tableName = $event),
|
|
653
|
-
title: __props.configure.props.dynamicColumnData.tableName,
|
|
654
|
-
onClick: _cache[19] || (_cache[19] = ($event) => selectTable("masterTable")),
|
|
655
|
-
clearable: "",
|
|
656
|
-
readonly: "true"
|
|
657
|
-
}, {
|
|
658
|
-
append: withCtx(() => [
|
|
659
|
-
createVNode(_component_el_button, {
|
|
660
|
-
icon: unref(Search),
|
|
661
|
-
onClick: _cache[16] || (_cache[16] = ($event) => selectTable("masterTable")),
|
|
662
|
-
size: "small"
|
|
663
|
-
}, null, 8, ["icon"]),
|
|
664
|
-
createVNode(_component_el_button, {
|
|
665
|
-
icon: unref(Close),
|
|
666
|
-
onClick: _cache[17] || (_cache[17] = ($event) => clearTable("masterTable")),
|
|
667
|
-
title: "Clear",
|
|
668
|
-
size: "small"
|
|
669
|
-
}, null, 8, ["icon"])
|
|
670
|
-
]),
|
|
671
|
-
_: 1
|
|
672
|
-
}, 8, ["modelValue", "title"])
|
|
673
|
-
]),
|
|
674
|
-
_: 1
|
|
675
|
-
})) : createCommentVNode("", true),
|
|
676
|
-
__props.configure.props.dynamicColumnData.dataSources === "dataTable" ? (openBlock(), createBlock(_component_el_form_item, {
|
|
677
|
-
key: 3,
|
|
678
|
-
label: "排序",
|
|
679
|
-
class: "amb-design-attr-item"
|
|
680
|
-
}, {
|
|
681
|
-
default: withCtx(() => [
|
|
682
|
-
createVNode(_component_el_button, {
|
|
683
|
-
type: "primary",
|
|
684
|
-
onClick: addSortField
|
|
685
|
-
}, {
|
|
686
|
-
default: withCtx(() => [
|
|
687
|
-
createTextVNode("添加")
|
|
688
|
-
]),
|
|
689
|
-
_: 1
|
|
690
|
-
}),
|
|
691
|
-
createVNode(_component_el_button, { onClick: removeSortField }, {
|
|
692
|
-
default: withCtx(() => [
|
|
693
|
-
createTextVNode("删除")
|
|
694
|
-
]),
|
|
695
|
-
_: 1
|
|
696
|
-
}),
|
|
697
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.configure.props.dynamicColumnData.dataTableSortTable, (item, index) => {
|
|
698
|
-
return openBlock(), createElementBlock("div", {
|
|
699
|
-
key: index,
|
|
700
|
-
onClick: ($event) => seleteSort(index),
|
|
701
|
-
style: { "margin-top": "6px" },
|
|
702
|
-
class: normalizeClass(
|
|
703
|
-
atPresentSortIndex.value === index ? "amb-design-attr-item-inline seleteSort" : "amb-design-attr-item-inline"
|
|
704
|
-
)
|
|
705
|
-
}, [
|
|
706
|
-
createVNode(_component_el_select, {
|
|
707
|
-
modelValue: item.sortColumn,
|
|
708
|
-
"onUpdate:modelValue": ($event) => item.sortColumn = $event,
|
|
709
|
-
filterable: "",
|
|
710
|
-
clearable: "",
|
|
711
|
-
placeholder: "请选择"
|
|
712
|
-
}, {
|
|
713
|
-
default: withCtx(() => [
|
|
714
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(modelTableFieldList.value, (field, index2) => {
|
|
715
|
-
return openBlock(), createBlock(_component_el_option, {
|
|
716
|
-
key: index2,
|
|
717
|
-
label: field.alias + "(" + field.dbColumnName + ")",
|
|
718
|
-
value: field.dbColumnName
|
|
719
|
-
}, null, 8, ["label", "value"]);
|
|
720
|
-
}), 128))
|
|
721
|
-
]),
|
|
722
|
-
_: 2
|
|
723
|
-
}, 1032, ["modelValue", "onUpdate:modelValue"]),
|
|
724
|
-
createVNode(_component_el_select, {
|
|
725
|
-
modelValue: item.sortOrder,
|
|
726
|
-
"onUpdate:modelValue": ($event) => item.sortOrder = $event,
|
|
727
|
-
style: { "margin-left": "10px" },
|
|
728
|
-
placeholder: "请选择"
|
|
729
|
-
}, {
|
|
730
|
-
default: withCtx(() => [
|
|
731
|
-
createVNode(_component_el_option, {
|
|
732
|
-
label: "升序",
|
|
733
|
-
value: "asc"
|
|
734
|
-
}),
|
|
735
|
-
createVNode(_component_el_option, {
|
|
736
|
-
label: "降序",
|
|
737
|
-
value: "desc"
|
|
738
|
-
})
|
|
739
|
-
]),
|
|
740
|
-
_: 2
|
|
741
|
-
}, 1032, ["modelValue", "onUpdate:modelValue"])
|
|
742
|
-
], 10, _hoisted_4);
|
|
743
|
-
}), 128))
|
|
744
|
-
]),
|
|
745
|
-
_: 1
|
|
746
|
-
})) : createCommentVNode("", true),
|
|
747
|
-
withDirectives(createVNode(_component_el_form_item, {
|
|
748
|
-
label: "查询条件",
|
|
749
|
-
class: "amb-design-attr-item"
|
|
750
|
-
}, {
|
|
751
|
-
default: withCtx(() => [
|
|
752
|
-
createVNode(_sfc_main$4, {
|
|
753
|
-
title: "查询条件",
|
|
754
|
-
list: __props.configure.props.dynamicColumnData.searchcondition,
|
|
755
|
-
ref_key: "queryConditionRef",
|
|
756
|
-
ref: queryConditionRef
|
|
757
|
-
}, null, 8, ["list"])
|
|
758
|
-
]),
|
|
759
|
-
_: 1
|
|
760
|
-
}, 512), [
|
|
761
|
-
[vShow, __props.configure.props.dynamicColumnData.dataSources === "dataTable"]
|
|
762
|
-
]),
|
|
763
|
-
withDirectives(createVNode(_component_el_form_item, {
|
|
764
|
-
label: "SQL",
|
|
765
|
-
class: "amb-design-attr-item"
|
|
766
|
-
}, {
|
|
767
|
-
default: withCtx(() => [
|
|
768
|
-
createVNode(_component_el_input, {
|
|
769
|
-
modelValue: __props.configure.props.dynamicColumnData.sql,
|
|
770
|
-
"onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => __props.configure.props.dynamicColumnData.sql = $event),
|
|
771
|
-
rows: 2,
|
|
772
|
-
type: "textarea"
|
|
773
|
-
}, null, 8, ["modelValue"])
|
|
774
|
-
]),
|
|
775
|
-
_: 1
|
|
776
|
-
}, 512), [
|
|
777
|
-
[vShow, __props.configure.props.dynamicColumnData.dataSources === "sql"]
|
|
778
|
-
]),
|
|
779
|
-
withDirectives(createVNode(_component_el_form_item, {
|
|
780
|
-
label: "选项组名",
|
|
781
|
-
class: "amb-design-attr-item"
|
|
782
|
-
}, {
|
|
783
|
-
default: withCtx(() => [
|
|
784
|
-
createVNode(_component_el_select, {
|
|
785
|
-
modelValue: __props.configure.props.dynamicColumnData.optionGroup,
|
|
786
|
-
"onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => __props.configure.props.dynamicColumnData.optionGroup = $event),
|
|
787
|
-
filterable: "",
|
|
788
|
-
remote: "",
|
|
789
|
-
"reserve-keyword": "",
|
|
790
|
-
clearable: "",
|
|
791
|
-
placeholder: "请选择",
|
|
792
|
-
"remote-show-suffix": "",
|
|
793
|
-
"remote-method": queryOptionGroups,
|
|
794
|
-
loading: queryOptionGroupLoading.value
|
|
795
|
-
}, {
|
|
796
|
-
default: withCtx(() => [
|
|
797
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(optionGroups.value, (item) => {
|
|
798
|
-
return openBlock(), createBlock(_component_el_option, {
|
|
799
|
-
key: item.code,
|
|
800
|
-
label: item.name + "(" + item.code + ")",
|
|
801
|
-
value: item.code
|
|
802
|
-
}, null, 8, ["label", "value"]);
|
|
803
|
-
}), 128))
|
|
804
|
-
]),
|
|
805
|
-
_: 1
|
|
806
|
-
}, 8, ["modelValue", "loading"])
|
|
807
|
-
]),
|
|
808
|
-
_: 1
|
|
809
|
-
}, 512), [
|
|
810
|
-
[vShow, __props.configure.props.dynamicColumnData.dataSources === "optionGroup"]
|
|
811
|
-
]),
|
|
812
|
-
createVNode(_component_el_divider, null, {
|
|
813
|
-
default: withCtx(() => [
|
|
814
|
-
_hoisted_5
|
|
815
|
-
]),
|
|
816
|
-
_: 1
|
|
817
|
-
}),
|
|
818
|
-
createVNode(_component_el_form_item, {
|
|
819
|
-
label: "数据表",
|
|
820
|
-
class: "amb-design-attr-item"
|
|
821
|
-
}, {
|
|
822
|
-
default: withCtx(() => [
|
|
823
|
-
createVNode(_component_el_input, {
|
|
824
|
-
modelValue: __props.configure.props.dynamicColumnData.settingDataName,
|
|
825
|
-
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => __props.configure.props.dynamicColumnData.settingDataName = $event),
|
|
826
|
-
title: __props.configure.props.dynamicColumnData.settingDataName,
|
|
827
|
-
clearable: "",
|
|
828
|
-
readonly: "true"
|
|
829
|
-
}, {
|
|
830
|
-
append: withCtx(() => [
|
|
831
|
-
createVNode(_component_el_button, {
|
|
832
|
-
icon: unref(Search),
|
|
833
|
-
onClick: _cache[22] || (_cache[22] = ($event) => selectTable("sublist")),
|
|
834
|
-
size: "small"
|
|
835
|
-
}, null, 8, ["icon"]),
|
|
836
|
-
createVNode(_component_el_button, {
|
|
837
|
-
icon: unref(Close),
|
|
838
|
-
onClick: _cache[23] || (_cache[23] = ($event) => clearTable("sublist")),
|
|
839
|
-
title: "Clear",
|
|
840
|
-
size: "small"
|
|
841
|
-
}, null, 8, ["icon"])
|
|
842
|
-
]),
|
|
843
|
-
_: 1
|
|
844
|
-
}, 8, ["modelValue", "title"])
|
|
845
|
-
]),
|
|
846
|
-
_: 1
|
|
847
|
-
}),
|
|
848
|
-
createVNode(_component_el_form_item, {
|
|
849
|
-
label: "关联字段",
|
|
850
|
-
title: "与主表关联字段",
|
|
851
|
-
class: "amb-design-attr-item"
|
|
852
|
-
}, {
|
|
853
|
-
default: withCtx(() => [
|
|
854
|
-
createVNode(_component_el_select, {
|
|
855
|
-
modelValue: __props.configure.props.dynamicColumnData.settingRelationColumn,
|
|
856
|
-
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => __props.configure.props.dynamicColumnData.settingRelationColumn = $event),
|
|
857
|
-
clearable: "",
|
|
858
|
-
filterable: ""
|
|
859
|
-
}, {
|
|
860
|
-
default: withCtx(() => [
|
|
861
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(clolumnTableFields), (item, index) => {
|
|
862
|
-
return openBlock(), createBlock(_component_el_option, {
|
|
863
|
-
key: index,
|
|
864
|
-
label: item.alias,
|
|
865
|
-
value: item.dbColumnName
|
|
866
|
-
}, null, 8, ["label", "value"]);
|
|
867
|
-
}), 128))
|
|
868
|
-
]),
|
|
869
|
-
_: 1
|
|
870
|
-
}, 8, ["modelValue"])
|
|
871
|
-
]),
|
|
872
|
-
_: 1
|
|
873
|
-
}),
|
|
874
|
-
createVNode(_component_el_form_item, {
|
|
875
|
-
label: "查询条件",
|
|
876
|
-
title: "查询附加条件",
|
|
877
|
-
class: "amb-design-attr-item"
|
|
878
|
-
}, {
|
|
879
|
-
default: withCtx(() => [
|
|
880
|
-
createVNode(_sfc_main$4, {
|
|
881
|
-
title: "查询条件",
|
|
882
|
-
list: __props.configure.props.dynamicColumnData.selectCondition,
|
|
883
|
-
ref_key: "selectConditionRef",
|
|
884
|
-
ref: selectConditionRef
|
|
885
|
-
}, null, 8, ["list"])
|
|
886
|
-
]),
|
|
887
|
-
_: 1
|
|
888
|
-
}),
|
|
889
|
-
createVNode(_component_el_form_item, {
|
|
890
|
-
label: "更新条件",
|
|
891
|
-
title: "更新附加条件",
|
|
892
|
-
class: "amb-design-attr-item"
|
|
893
|
-
}, {
|
|
894
|
-
default: withCtx(() => [
|
|
895
|
-
createVNode(_sfc_main$4, {
|
|
896
|
-
title: "更新条件",
|
|
897
|
-
list: __props.configure.props.dynamicColumnData.updateCondition,
|
|
898
|
-
ref_key: "updateConditionRef",
|
|
899
|
-
ref: updateConditionRef
|
|
900
|
-
}, null, 8, ["list"])
|
|
901
|
-
]),
|
|
902
|
-
_: 1
|
|
903
|
-
}),
|
|
904
|
-
createVNode(_component_el_form_item, {
|
|
905
|
-
label: "配置模型",
|
|
906
|
-
title: "配置模型",
|
|
907
|
-
class: "amb-design-attr-item"
|
|
908
|
-
}, {
|
|
909
|
-
default: withCtx(() => [
|
|
910
|
-
createVNode(_sfc_main$5, {
|
|
911
|
-
configure: __props.configure,
|
|
912
|
-
clolumnTableFields: unref(clolumnTableFields),
|
|
913
|
-
modelTableFieldList: modelTableFieldList.value
|
|
914
|
-
}, null, 8, ["configure", "clolumnTableFields", "modelTableFieldList"])
|
|
915
|
-
]),
|
|
916
|
-
_: 1
|
|
917
|
-
}),
|
|
918
|
-
createVNode(_component_el_form_item, {
|
|
919
|
-
label: "分组标题",
|
|
920
|
-
title: "分组标题类型",
|
|
921
|
-
class: "amb-design-attr-item"
|
|
922
|
-
}, {
|
|
923
|
-
default: withCtx(() => [
|
|
924
|
-
createVNode(_component_el_select, {
|
|
925
|
-
modelValue: __props.configure.props.dynamicColumnData.mergeFieldType,
|
|
926
|
-
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => __props.configure.props.dynamicColumnData.mergeFieldType = $event),
|
|
927
|
-
clearable: ""
|
|
928
|
-
}, {
|
|
929
|
-
default: withCtx(() => [
|
|
930
|
-
createVNode(_component_el_option, {
|
|
931
|
-
label: "不设置分组标题",
|
|
932
|
-
value: "no"
|
|
933
|
-
}),
|
|
934
|
-
createVNode(_component_el_option, {
|
|
935
|
-
label: "合并为一组",
|
|
936
|
-
value: "one"
|
|
937
|
-
}),
|
|
938
|
-
createVNode(_component_el_option, {
|
|
939
|
-
label: "分组字段",
|
|
940
|
-
value: "more"
|
|
941
|
-
})
|
|
942
|
-
]),
|
|
943
|
-
_: 1
|
|
944
|
-
}, 8, ["modelValue"])
|
|
945
|
-
]),
|
|
946
|
-
_: 1
|
|
947
|
-
})
|
|
948
|
-
])
|
|
949
|
-
]),
|
|
950
|
-
_: 1
|
|
951
|
-
})) : createCommentVNode("", true),
|
|
481
|
+
createVNode(_sfc_main$3, {
|
|
482
|
+
operationColumn: operationColumn.value,
|
|
483
|
+
configure: __props.configure,
|
|
484
|
+
tableConfigure: __props.tableConfigure,
|
|
485
|
+
pageDesign: __props.pageDesign
|
|
486
|
+
}, null, 8, ["operationColumn", "configure", "tableConfigure", "pageDesign"]),
|
|
952
487
|
!operationColumn.value ? (openBlock(), createBlock(_component_el_collapse_item, {
|
|
953
|
-
key:
|
|
488
|
+
key: 1,
|
|
954
489
|
title: "行编辑设置",
|
|
955
490
|
name: "editLine",
|
|
956
491
|
class: "amb-design-attr-group-header"
|
|
957
492
|
}, {
|
|
958
493
|
default: withCtx(() => [
|
|
959
|
-
createElementVNode("div",
|
|
494
|
+
createElementVNode("div", _hoisted_3, [
|
|
960
495
|
createVNode(_component_el_form_item, {
|
|
961
496
|
label: "是否编辑",
|
|
962
497
|
class: "amb-design-attr-item"
|
|
@@ -965,7 +500,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
965
500
|
createVNode(_component_el_switch, {
|
|
966
501
|
onChange: editChange,
|
|
967
502
|
modelValue: __props.configure.props.editLine.editable,
|
|
968
|
-
"onUpdate:modelValue": _cache[
|
|
503
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.editLine.editable = $event)
|
|
969
504
|
}, null, 8, ["modelValue"])
|
|
970
505
|
]),
|
|
971
506
|
_: 1
|
|
@@ -990,7 +525,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
990
525
|
default: withCtx(() => [
|
|
991
526
|
createVNode(_component_el_select, {
|
|
992
527
|
modelValue: __props.configure.name,
|
|
993
|
-
"onUpdate:modelValue": _cache[
|
|
528
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.name = $event),
|
|
994
529
|
placeholder: "请选择",
|
|
995
530
|
onChange: moduleChange
|
|
996
531
|
}, {
|
|
@@ -1015,7 +550,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1015
550
|
default: withCtx(() => [
|
|
1016
551
|
createVNode(_sfc_main$1, {
|
|
1017
552
|
prop: __props.configure.props.format.fileUuid,
|
|
1018
|
-
"onUpdate:prop": _cache[
|
|
553
|
+
"onUpdate:prop": _cache[14] || (_cache[14] = ($event) => __props.configure.props.format.fileUuid = $event),
|
|
1019
554
|
tableConfigure: __props.tableConfigure
|
|
1020
555
|
}, null, 8, ["prop", "tableConfigure"])
|
|
1021
556
|
]),
|
|
@@ -1028,13 +563,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1028
563
|
_: 1
|
|
1029
564
|
})) : createCommentVNode("", true),
|
|
1030
565
|
!operationColumn.value ? (openBlock(), createBlock(_component_el_collapse_item, {
|
|
1031
|
-
key:
|
|
566
|
+
key: 2,
|
|
1032
567
|
title: "格式设置",
|
|
1033
568
|
name: "formatting",
|
|
1034
569
|
class: "amb-design-attr-group-header"
|
|
1035
570
|
}, {
|
|
1036
571
|
default: withCtx(() => [
|
|
1037
|
-
createElementVNode("div",
|
|
572
|
+
createElementVNode("div", _hoisted_4, [
|
|
1038
573
|
createVNode(_component_el_form_item, {
|
|
1039
574
|
label: "格式化分类",
|
|
1040
575
|
class: "amb-design-attr-item"
|
|
@@ -1042,7 +577,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1042
577
|
default: withCtx(() => [
|
|
1043
578
|
createVNode(_component_el_select, {
|
|
1044
579
|
modelValue: __props.configure.props.format.type,
|
|
1045
|
-
"onUpdate:modelValue": _cache[
|
|
580
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.format.type = $event),
|
|
1046
581
|
clearable: "",
|
|
1047
582
|
placeholder: "请选择"
|
|
1048
583
|
}, {
|
|
@@ -1109,7 +644,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1109
644
|
default: withCtx(() => [
|
|
1110
645
|
createVNode(_component_el_input, {
|
|
1111
646
|
modelValue: __props.configure.props.format.decimalDigit,
|
|
1112
|
-
"onUpdate:modelValue": _cache[
|
|
647
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.configure.props.format.decimalDigit = $event)
|
|
1113
648
|
}, null, 8, ["modelValue"])
|
|
1114
649
|
]),
|
|
1115
650
|
_: 1
|
|
@@ -1122,7 +657,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1122
657
|
default: withCtx(() => [
|
|
1123
658
|
createVNode(_component_el_switch, {
|
|
1124
659
|
modelValue: __props.configure.props.format.scientific,
|
|
1125
|
-
"onUpdate:modelValue": _cache[
|
|
660
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => __props.configure.props.format.scientific = $event),
|
|
1126
661
|
"active-text": "使用",
|
|
1127
662
|
"inactive-text": "不使用"
|
|
1128
663
|
}, null, 8, ["modelValue"])
|
|
@@ -1137,7 +672,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1137
672
|
default: withCtx(() => [
|
|
1138
673
|
createVNode(_component_el_input, {
|
|
1139
674
|
modelValue: __props.configure.props.format.scientificNum,
|
|
1140
|
-
"onUpdate:modelValue": _cache[
|
|
675
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => __props.configure.props.format.scientificNum = $event)
|
|
1141
676
|
}, null, 8, ["modelValue"])
|
|
1142
677
|
]),
|
|
1143
678
|
_: 1
|
|
@@ -1150,7 +685,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1150
685
|
default: withCtx(() => [
|
|
1151
686
|
createVNode(_component_el_switch, {
|
|
1152
687
|
modelValue: __props.configure.props.format.thousandsSeparator,
|
|
1153
|
-
"onUpdate:modelValue": _cache[
|
|
688
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => __props.configure.props.format.thousandsSeparator = $event),
|
|
1154
689
|
"active-text": "使用",
|
|
1155
690
|
"inactive-text": "不使用"
|
|
1156
691
|
}, null, 8, ["modelValue"])
|
|
@@ -1165,7 +700,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1165
700
|
default: withCtx(() => [
|
|
1166
701
|
createVNode(_component_el_input, {
|
|
1167
702
|
modelValue: __props.configure.props.format.symbol,
|
|
1168
|
-
"onUpdate:modelValue": _cache[
|
|
703
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => __props.configure.props.format.symbol = $event)
|
|
1169
704
|
}, null, 8, ["modelValue"])
|
|
1170
705
|
]),
|
|
1171
706
|
_: 1
|
|
@@ -1178,7 +713,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1178
713
|
default: withCtx(() => [
|
|
1179
714
|
createVNode(_component_el_select, {
|
|
1180
715
|
modelValue: __props.configure.props.format.currencySymbol,
|
|
1181
|
-
"onUpdate:modelValue": _cache[
|
|
716
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => __props.configure.props.format.currencySymbol = $event),
|
|
1182
717
|
placeholder: "Select"
|
|
1183
718
|
}, {
|
|
1184
719
|
default: withCtx(() => [
|
|
@@ -1204,7 +739,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1204
739
|
default: withCtx(() => [
|
|
1205
740
|
createVNode(_component_el_select, {
|
|
1206
741
|
modelValue: __props.configure.props.format.dataType,
|
|
1207
|
-
"onUpdate:modelValue": _cache[
|
|
742
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => __props.configure.props.format.dataType = $event),
|
|
1208
743
|
placeholder: "Select"
|
|
1209
744
|
}, {
|
|
1210
745
|
default: withCtx(() => [
|
|
@@ -1258,7 +793,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1258
793
|
default: withCtx(() => [
|
|
1259
794
|
createVNode(_component_el_select, {
|
|
1260
795
|
modelValue: __props.configure.props.format.timeType,
|
|
1261
|
-
"onUpdate:modelValue": _cache[
|
|
796
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => __props.configure.props.format.timeType = $event),
|
|
1262
797
|
placeholder: "Select"
|
|
1263
798
|
}, {
|
|
1264
799
|
default: withCtx(() => [
|
|
@@ -1308,18 +843,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1308
843
|
default: withCtx(() => [
|
|
1309
844
|
createVNode(_component_el_input, {
|
|
1310
845
|
modelValue: __props.configure.props.format.customControl,
|
|
1311
|
-
"onUpdate:modelValue": _cache[
|
|
846
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => __props.configure.props.format.customControl = $event)
|
|
1312
847
|
}, null, 8, ["modelValue"])
|
|
1313
848
|
]),
|
|
1314
849
|
_: 1
|
|
1315
850
|
})) : createCommentVNode("", true),
|
|
1316
|
-
__props.configure.props.format.type === "hyperlinks" ? (openBlock(), createBlock(_sfc_main$
|
|
851
|
+
__props.configure.props.format.type === "hyperlinks" ? (openBlock(), createBlock(_sfc_main$4, {
|
|
1317
852
|
key: 9,
|
|
1318
853
|
pageDesign: __props.pageDesign,
|
|
1319
854
|
configure: __props.configure,
|
|
1320
855
|
tableConfigure: __props.tableConfigure
|
|
1321
856
|
}, null, 8, ["pageDesign", "configure", "tableConfigure"])) : createCommentVNode("", true),
|
|
1322
|
-
__props.configure.props.format.type === "icon" ? (openBlock(), createBlock(_sfc_main$
|
|
857
|
+
__props.configure.props.format.type === "icon" ? (openBlock(), createBlock(_sfc_main$5, {
|
|
1323
858
|
key: 10,
|
|
1324
859
|
setting: __props.configure.props.format
|
|
1325
860
|
}, null, 8, ["setting"])) : createCommentVNode("", true),
|
|
@@ -1331,7 +866,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1331
866
|
default: withCtx(() => [
|
|
1332
867
|
createVNode(_component_el_input, {
|
|
1333
868
|
modelValue: __props.configure.props.format.customControl,
|
|
1334
|
-
"onUpdate:modelValue": _cache[
|
|
869
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => __props.configure.props.format.customControl = $event)
|
|
1335
870
|
}, null, 8, ["modelValue"])
|
|
1336
871
|
]),
|
|
1337
872
|
_: 1
|
|
@@ -1344,7 +879,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1344
879
|
default: withCtx(() => [
|
|
1345
880
|
createVNode(_component_el_switch, {
|
|
1346
881
|
modelValue: __props.configure.props.format.multiple,
|
|
1347
|
-
"onUpdate:modelValue": _cache[
|
|
882
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => __props.configure.props.format.multiple = $event)
|
|
1348
883
|
}, null, 8, ["modelValue"])
|
|
1349
884
|
]),
|
|
1350
885
|
_: 1
|
|
@@ -1357,7 +892,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1357
892
|
default: withCtx(() => [
|
|
1358
893
|
createVNode(_component_el_input, {
|
|
1359
894
|
modelValue: __props.configure.props.format.accept,
|
|
1360
|
-
"onUpdate:modelValue": _cache[
|
|
895
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => __props.configure.props.format.accept = $event)
|
|
1361
896
|
}, null, 8, ["modelValue"])
|
|
1362
897
|
]),
|
|
1363
898
|
_: 1
|
|
@@ -1370,7 +905,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1370
905
|
default: withCtx(() => [
|
|
1371
906
|
createVNode(_component_el_input_number, {
|
|
1372
907
|
modelValue: __props.configure.props.format.limitFileSize,
|
|
1373
|
-
"onUpdate:modelValue": _cache[
|
|
908
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = ($event) => __props.configure.props.format.limitFileSize = $event),
|
|
1374
909
|
min: 1
|
|
1375
910
|
}, null, 8, ["modelValue"])
|
|
1376
911
|
]),
|
|
@@ -1383,7 +918,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1383
918
|
default: withCtx(() => [
|
|
1384
919
|
createVNode(_component_el_input, {
|
|
1385
920
|
modelValue: __props.configure.props.format.childAnnexDataTableCode,
|
|
1386
|
-
"onUpdate:modelValue": _cache[
|
|
921
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = ($event) => __props.configure.props.format.childAnnexDataTableCode = $event),
|
|
1387
922
|
onClick: _ctx.openSelectDataTable,
|
|
1388
923
|
clearable: ""
|
|
1389
924
|
}, {
|
|
@@ -1406,7 +941,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1406
941
|
default: withCtx(() => [
|
|
1407
942
|
createVNode(_sfc_main$1, {
|
|
1408
943
|
prop: __props.configure.props.format.showName,
|
|
1409
|
-
"onUpdate:prop": _cache[
|
|
944
|
+
"onUpdate:prop": _cache[30] || (_cache[30] = ($event) => __props.configure.props.format.showName = $event),
|
|
1410
945
|
tableConfigure: __props.tableConfigure
|
|
1411
946
|
}, null, 8, ["prop", "tableConfigure"])
|
|
1412
947
|
]),
|
|
@@ -1420,7 +955,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1420
955
|
default: withCtx(() => [
|
|
1421
956
|
createVNode(_sfc_main$1, {
|
|
1422
957
|
prop: __props.configure.props.format.serverName,
|
|
1423
|
-
"onUpdate:prop": _cache[
|
|
958
|
+
"onUpdate:prop": _cache[31] || (_cache[31] = ($event) => __props.configure.props.format.serverName = $event),
|
|
1424
959
|
tableConfigure: __props.tableConfigure
|
|
1425
960
|
}, null, 8, ["prop", "tableConfigure"])
|
|
1426
961
|
]),
|
|
@@ -1436,7 +971,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1436
971
|
class: "amb-design-attr-group-header"
|
|
1437
972
|
}, {
|
|
1438
973
|
default: withCtx(() => [
|
|
1439
|
-
createElementVNode("div",
|
|
974
|
+
createElementVNode("div", _hoisted_5, [
|
|
1440
975
|
createVNode(_component_el_form_item, {
|
|
1441
976
|
label: "固定列",
|
|
1442
977
|
class: "amb-design-attr-item"
|
|
@@ -1444,7 +979,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1444
979
|
default: withCtx(() => [
|
|
1445
980
|
createVNode(_component_el_radio_group, {
|
|
1446
981
|
modelValue: __props.configure.props.base.listColumnFixed,
|
|
1447
|
-
"onUpdate:modelValue": _cache[
|
|
982
|
+
"onUpdate:modelValue": _cache[32] || (_cache[32] = ($event) => __props.configure.props.base.listColumnFixed = $event),
|
|
1448
983
|
class: "ml-4"
|
|
1449
984
|
}, {
|
|
1450
985
|
default: withCtx(() => [
|
|
@@ -1480,7 +1015,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1480
1015
|
default: withCtx(() => [
|
|
1481
1016
|
createVNode(_component_el_radio_group, {
|
|
1482
1017
|
modelValue: __props.configure.props.base.sortable,
|
|
1483
|
-
"onUpdate:modelValue": _cache[
|
|
1018
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = ($event) => __props.configure.props.base.sortable = $event),
|
|
1484
1019
|
class: "ml-4"
|
|
1485
1020
|
}, {
|
|
1486
1021
|
default: withCtx(() => [
|
|
@@ -1510,7 +1045,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1510
1045
|
createVNode(_component_el_input_number, {
|
|
1511
1046
|
style: { "width": "100%" },
|
|
1512
1047
|
modelValue: __props.configure.props.base.columnWidth,
|
|
1513
|
-
"onUpdate:modelValue": _cache[
|
|
1048
|
+
"onUpdate:modelValue": _cache[34] || (_cache[34] = ($event) => __props.configure.props.base.columnWidth = $event),
|
|
1514
1049
|
precision: 1
|
|
1515
1050
|
}, null, 8, ["modelValue"])
|
|
1516
1051
|
]),
|
|
@@ -1523,7 +1058,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1523
1058
|
default: withCtx(() => [
|
|
1524
1059
|
createVNode(_component_el_radio_group, {
|
|
1525
1060
|
modelValue: __props.configure.props.base.alignTittle,
|
|
1526
|
-
"onUpdate:modelValue": _cache[
|
|
1061
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = ($event) => __props.configure.props.base.alignTittle = $event),
|
|
1527
1062
|
class: "ml-4"
|
|
1528
1063
|
}, {
|
|
1529
1064
|
default: withCtx(() => [
|
|
@@ -1558,7 +1093,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1558
1093
|
default: withCtx(() => [
|
|
1559
1094
|
createVNode(_component_el_radio_group, {
|
|
1560
1095
|
modelValue: __props.configure.props.base.alignContent,
|
|
1561
|
-
"onUpdate:modelValue": _cache[
|
|
1096
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = ($event) => __props.configure.props.base.alignContent = $event),
|
|
1562
1097
|
class: "ml-4"
|
|
1563
1098
|
}, {
|
|
1564
1099
|
default: withCtx(() => [
|
|
@@ -1591,13 +1126,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1591
1126
|
_: 1
|
|
1592
1127
|
}),
|
|
1593
1128
|
!operationColumn.value && __props.configure.props.editLine.editable ? (openBlock(), createBlock(_component_el_collapse_item, {
|
|
1594
|
-
key:
|
|
1129
|
+
key: 3,
|
|
1595
1130
|
title: "校验",
|
|
1596
1131
|
name: "verification",
|
|
1597
1132
|
class: "amb-design-attr-group-header"
|
|
1598
1133
|
}, {
|
|
1599
1134
|
default: withCtx(() => [
|
|
1600
|
-
createElementVNode("div",
|
|
1135
|
+
createElementVNode("div", _hoisted_6, [
|
|
1601
1136
|
createVNode(_component_el_form_item, {
|
|
1602
1137
|
class: "amb-design-attr-item",
|
|
1603
1138
|
"label-width": "0"
|
|
@@ -1605,7 +1140,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1605
1140
|
default: withCtx(() => [
|
|
1606
1141
|
createVNode(_component_el_checkbox, {
|
|
1607
1142
|
modelValue: __props.configure.props.verification.required,
|
|
1608
|
-
"onUpdate:modelValue": _cache[
|
|
1143
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = ($event) => __props.configure.props.verification.required = $event),
|
|
1609
1144
|
label: "必填"
|
|
1610
1145
|
}, null, 8, ["modelValue"])
|
|
1611
1146
|
]),
|
|
@@ -1613,7 +1148,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1613
1148
|
}),
|
|
1614
1149
|
createVNode(_component_el_checkbox_group, {
|
|
1615
1150
|
modelValue: __props.configure.props.verification.type,
|
|
1616
|
-
"onUpdate:modelValue": _cache[
|
|
1151
|
+
"onUpdate:modelValue": _cache[38] || (_cache[38] = ($event) => __props.configure.props.verification.type = $event)
|
|
1617
1152
|
}, {
|
|
1618
1153
|
default: withCtx(() => [
|
|
1619
1154
|
createVNode(_component_el_form_item, {
|
|
@@ -1684,7 +1219,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1684
1219
|
default: withCtx(() => [
|
|
1685
1220
|
createVNode(_component_el_checkbox, {
|
|
1686
1221
|
modelValue: __props.configure.props.verification.verifyRegex,
|
|
1687
|
-
"onUpdate:modelValue": _cache[
|
|
1222
|
+
"onUpdate:modelValue": _cache[39] || (_cache[39] = ($event) => __props.configure.props.verification.verifyRegex = $event),
|
|
1688
1223
|
label: "正则",
|
|
1689
1224
|
value: "regex"
|
|
1690
1225
|
}, null, 8, ["modelValue"])
|
|
@@ -1695,7 +1230,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1695
1230
|
default: withCtx(() => [
|
|
1696
1231
|
createVNode(_component_el_input, {
|
|
1697
1232
|
modelValue: __props.configure.props.verification.regex,
|
|
1698
|
-
"onUpdate:modelValue": _cache[
|
|
1233
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = ($event) => __props.configure.props.verification.regex = $event),
|
|
1699
1234
|
class: "mx-4",
|
|
1700
1235
|
"controls-position": "right",
|
|
1701
1236
|
placeholder: "请输入"
|
|
@@ -1743,13 +1278,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1743
1278
|
_: 1
|
|
1744
1279
|
})) : createCommentVNode("", true),
|
|
1745
1280
|
!operationColumn.value ? (openBlock(), createBlock(_component_el_collapse_item, {
|
|
1746
|
-
key:
|
|
1281
|
+
key: 4,
|
|
1747
1282
|
title: "用户自定义",
|
|
1748
1283
|
name: "userDefined",
|
|
1749
1284
|
class: "amb-design-attr-group-header"
|
|
1750
1285
|
}, {
|
|
1751
1286
|
default: withCtx(() => [
|
|
1752
|
-
createElementVNode("div",
|
|
1287
|
+
createElementVNode("div", _hoisted_7, [
|
|
1753
1288
|
createVNode(_component_el_form_item, {
|
|
1754
1289
|
label: "可自定义",
|
|
1755
1290
|
class: "amb-design-attr-item"
|
|
@@ -1757,7 +1292,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1757
1292
|
default: withCtx(() => [
|
|
1758
1293
|
createVNode(_component_el_radio_group, {
|
|
1759
1294
|
modelValue: __props.configure.props.definition.defined,
|
|
1760
|
-
"onUpdate:modelValue": _cache[
|
|
1295
|
+
"onUpdate:modelValue": _cache[41] || (_cache[41] = ($event) => __props.configure.props.definition.defined = $event),
|
|
1761
1296
|
class: "ml-4"
|
|
1762
1297
|
}, {
|
|
1763
1298
|
default: withCtx(() => [
|
|
@@ -1786,7 +1321,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1786
1321
|
default: withCtx(() => [
|
|
1787
1322
|
createVNode(_component_el_radio_group, {
|
|
1788
1323
|
modelValue: __props.configure.props.definition.definedExport,
|
|
1789
|
-
"onUpdate:modelValue": _cache[
|
|
1324
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = ($event) => __props.configure.props.definition.definedExport = $event),
|
|
1790
1325
|
class: "ml-4"
|
|
1791
1326
|
}, {
|
|
1792
1327
|
default: withCtx(() => [
|
|
@@ -1815,7 +1350,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1815
1350
|
default: withCtx(() => [
|
|
1816
1351
|
createVNode(_component_el_radio_group, {
|
|
1817
1352
|
modelValue: __props.configure.props.definition.definedMerge,
|
|
1818
|
-
"onUpdate:modelValue": _cache[
|
|
1353
|
+
"onUpdate:modelValue": _cache[43] || (_cache[43] = ($event) => __props.configure.props.definition.definedMerge = $event),
|
|
1819
1354
|
class: "ml-4"
|
|
1820
1355
|
}, {
|
|
1821
1356
|
default: withCtx(() => [
|
|
@@ -1844,7 +1379,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1844
1379
|
default: withCtx(() => [
|
|
1845
1380
|
createVNode(_component_el_radio_group, {
|
|
1846
1381
|
modelValue: __props.configure.props.definition.definedPosition,
|
|
1847
|
-
"onUpdate:modelValue": _cache[
|
|
1382
|
+
"onUpdate:modelValue": _cache[44] || (_cache[44] = ($event) => __props.configure.props.definition.definedPosition = $event),
|
|
1848
1383
|
class: "ml-4"
|
|
1849
1384
|
}, {
|
|
1850
1385
|
default: withCtx(() => [
|
|
@@ -1873,7 +1408,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1873
1408
|
default: withCtx(() => [
|
|
1874
1409
|
createVNode(_component_el_radio_group, {
|
|
1875
1410
|
modelValue: __props.configure.props.definition.definedFixed,
|
|
1876
|
-
"onUpdate:modelValue": _cache[
|
|
1411
|
+
"onUpdate:modelValue": _cache[45] || (_cache[45] = ($event) => __props.configure.props.definition.definedFixed = $event),
|
|
1877
1412
|
class: "ml-4"
|
|
1878
1413
|
}, {
|
|
1879
1414
|
default: withCtx(() => [
|
|
@@ -1899,13 +1434,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1899
1434
|
]),
|
|
1900
1435
|
_: 1
|
|
1901
1436
|
})) : createCommentVNode("", true),
|
|
1902
|
-
querySettingVisible.value ? (openBlock(), createBlock(_sfc_main$
|
|
1903
|
-
key:
|
|
1437
|
+
querySettingVisible.value ? (openBlock(), createBlock(_sfc_main$6, {
|
|
1438
|
+
key: 5,
|
|
1904
1439
|
querySetting: __props.configure.props.querySetting,
|
|
1905
1440
|
onAdd: querySettingAdd,
|
|
1906
1441
|
onClose: closeFuerySettingValue
|
|
1907
1442
|
}, null, 8, ["querySetting"])) : createCommentVNode("", true),
|
|
1908
|
-
createVNode(_sfc_main$
|
|
1443
|
+
createVNode(_sfc_main$7, {
|
|
1909
1444
|
ref_key: "selectTableDialog",
|
|
1910
1445
|
ref: selectTableDialog,
|
|
1911
1446
|
onSelectTable,
|