@fecp/designer 5.5.51 → 5.5.54
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/index.vue.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/form/default.mjs +1 -0
- package/es/designer/src/packages/form/formSetting.vue.mjs +27 -20
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer/src/packages/table/index.vue.mjs +1 -1
- package/es/designer.css +299 -203
- package/es/packages/vue/src/components/details/main/Main.vue.mjs +7 -4
- package/es/packages/vue/src/components/details/main/index.mjs +2 -2
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +157 -67
- package/es/packages/vue/src/components/forms/form/FormAnchorNav.vue.mjs +109 -0
- package/es/packages/vue/src/components/forms/form/RightAnchorNav.vue.mjs +126 -0
- package/es/packages/vue/src/components/forms/h2/H2.vue.mjs +7 -4
- package/es/packages/vue/src/components/forms/subTable/SubTable.vue.mjs +7 -3
- package/es/packages/vue/src/components/layout/Layout.vue.mjs +9 -17
- package/es/packages/vue/src/components/table/DynamicQuery.vue.mjs +4 -2
- package/es/packages/vue/src/components/table/Table.vue.mjs +26 -7
- package/es/packages/vue/src/components/table/TableFilter.vue.mjs +3 -2
- package/es/packages/vue/src/utils/eventBus.mjs +5 -0
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/form/default.js +1 -0
- package/lib/designer/src/packages/form/formSetting.vue.js +33 -26
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer/src/packages/table/index.vue.js +1 -1
- package/lib/designer.css +299 -203
- package/lib/packages/vue/src/components/details/main/Main.vue.js +7 -4
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +162 -72
- package/lib/packages/vue/src/components/forms/form/FormAnchorNav.vue.js +109 -0
- package/lib/packages/vue/src/components/forms/form/RightAnchorNav.vue.js +126 -0
- package/lib/packages/vue/src/components/forms/h2/H2.vue.js +7 -4
- package/lib/packages/vue/src/components/forms/subTable/SubTable.vue.js +7 -3
- package/lib/packages/vue/src/components/layout/Layout.vue.js +9 -17
- package/lib/packages/vue/src/components/table/DynamicQuery.vue.js +4 -2
- package/lib/packages/vue/src/components/table/Table.vue.js +25 -6
- package/lib/packages/vue/src/components/table/TableFilter.vue.js +3 -2
- package/lib/packages/vue/src/utils/eventBus.js +5 -0
- package/package.json +1 -1
|
@@ -2,14 +2,12 @@ import "../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
2
2
|
/* empty css */
|
|
3
3
|
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
|
-
/* empty css */
|
|
6
5
|
import { ref, resolveComponent, resolveDirective, withDirectives, createBlock, openBlock, withCtx, createVNode, createElementVNode, unref, isRef, renderSlot, createCommentVNode } from "vue";
|
|
7
6
|
import { cloneDeep } from "../../utils/common.mjs";
|
|
8
7
|
/* empty css */
|
|
9
8
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
10
9
|
import { ElRow } from "../../../../../node_modules/element-plus/es/components/row/index.mjs";
|
|
11
10
|
import { ElCol } from "../../../../../node_modules/element-plus/es/components/col/index.mjs";
|
|
12
|
-
import { ElScrollbar } from "../../../../../node_modules/element-plus/es/components/scrollbar/index.mjs";
|
|
13
11
|
const _hoisted_1 = { class: "grid-content" };
|
|
14
12
|
const _hoisted_2 = { class: "grid-content-statistics" };
|
|
15
13
|
const _sfc_main = {
|
|
@@ -46,7 +44,6 @@ const _sfc_main = {
|
|
|
46
44
|
}
|
|
47
45
|
return (_ctx, _cache) => {
|
|
48
46
|
const _component_fec_form = resolveComponent("fec-form");
|
|
49
|
-
const _component_el_scrollbar = ElScrollbar;
|
|
50
47
|
const _component_el_col = ElCol;
|
|
51
48
|
const _component_el_row = ElRow;
|
|
52
49
|
const _directive_fec_layout = resolveDirective("fec-layout");
|
|
@@ -63,19 +60,14 @@ const _sfc_main = {
|
|
|
63
60
|
}, {
|
|
64
61
|
default: withCtx(() => [
|
|
65
62
|
createElementVNode("div", _hoisted_1, [
|
|
66
|
-
createVNode(
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
initFormMode: __props.initFormMode
|
|
75
|
-
}, null, 8, ["templateKey", "modelValue", "initFormMode"])
|
|
76
|
-
]),
|
|
77
|
-
_: 1
|
|
78
|
-
}, 512)
|
|
63
|
+
createVNode(_component_fec_form, {
|
|
64
|
+
ref: "formRef",
|
|
65
|
+
templateKey: __props.templateKey,
|
|
66
|
+
modelValue: unref(formData),
|
|
67
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(formData) ? formData.value = $event : null),
|
|
68
|
+
onLoaded: loaded,
|
|
69
|
+
initFormMode: __props.initFormMode
|
|
70
|
+
}, null, 8, ["templateKey", "modelValue", "initFormMode"])
|
|
79
71
|
])
|
|
80
72
|
]),
|
|
81
73
|
_: 1
|
|
@@ -99,7 +91,7 @@ const _sfc_main = {
|
|
|
99
91
|
};
|
|
100
92
|
}
|
|
101
93
|
};
|
|
102
|
-
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
94
|
+
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1eb7b697"]]);
|
|
103
95
|
export {
|
|
104
96
|
_Layout as default
|
|
105
97
|
};
|
|
@@ -320,6 +320,7 @@ const _sfc_main = {
|
|
|
320
320
|
placeholder: "请输入查询条件",
|
|
321
321
|
class: "search-input",
|
|
322
322
|
clearable: "",
|
|
323
|
+
size: "default",
|
|
323
324
|
onKeyup: onSearchInputKeyup
|
|
324
325
|
}, createSlots({
|
|
325
326
|
suffix: withCtx(() => [
|
|
@@ -386,7 +387,8 @@ const _sfc_main = {
|
|
|
386
387
|
model: filterValues.value,
|
|
387
388
|
class: "filter-form",
|
|
388
389
|
"label-width": "100px",
|
|
389
|
-
inline: ""
|
|
390
|
+
inline: "",
|
|
391
|
+
size: "default"
|
|
390
392
|
}, {
|
|
391
393
|
default: withCtx(() => [
|
|
392
394
|
createElementVNode("div", _hoisted_10, [
|
|
@@ -483,7 +485,7 @@ const _sfc_main = {
|
|
|
483
485
|
};
|
|
484
486
|
}
|
|
485
487
|
};
|
|
486
|
-
const DynamicQuery = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
488
|
+
const DynamicQuery = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ba490486"]]);
|
|
487
489
|
export {
|
|
488
490
|
DynamicQuery as default
|
|
489
491
|
};
|
|
@@ -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, createElementVNode, Fragment, createVNode, unref, createSlots, renderList, renderSlot, normalizeProps, guardReactiveProps } from "vue";
|
|
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 */
|
|
@@ -40,6 +40,7 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
40
40
|
/* empty css */
|
|
41
41
|
/* empty css */
|
|
42
42
|
import getJsonAsyncUtil from "../../utils/getJsonAsyncUtil.mjs";
|
|
43
|
+
import emitter from "../../utils/eventBus.mjs";
|
|
43
44
|
/* empty css */
|
|
44
45
|
import { ElContainer } from "../../../../../node_modules/element-plus/es/components/container/index.mjs";
|
|
45
46
|
import { ElMessage } from "../../../../../node_modules/element-plus/es/components/message/index.mjs";
|
|
@@ -120,6 +121,10 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
120
121
|
btnRollbackEvent: {
|
|
121
122
|
type: Object,
|
|
122
123
|
default: {}
|
|
124
|
+
},
|
|
125
|
+
subTableConfig: {
|
|
126
|
+
type: Object,
|
|
127
|
+
default: {}
|
|
123
128
|
}
|
|
124
129
|
},
|
|
125
130
|
emits: [
|
|
@@ -129,7 +134,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
129
134
|
"selection-change",
|
|
130
135
|
"sort-change",
|
|
131
136
|
"page-change",
|
|
132
|
-
"loaded"
|
|
137
|
+
"loaded",
|
|
138
|
+
"height-loaded"
|
|
133
139
|
],
|
|
134
140
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
135
141
|
const props = __props;
|
|
@@ -546,9 +552,13 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
546
552
|
emit("selection-change", [checked.row]);
|
|
547
553
|
};
|
|
548
554
|
const handleInitRendered = ({ visibleColumn, visibleData, $event }) => {
|
|
555
|
+
const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
|
|
556
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
549
557
|
if ((visibleData == null ? void 0 : visibleData.length) > 0) {
|
|
550
|
-
|
|
551
|
-
|
|
558
|
+
emitter.emit("onSubTableDataLoaded", {
|
|
559
|
+
subTableConfig: props.subTableConfig,
|
|
560
|
+
visibleData
|
|
561
|
+
});
|
|
552
562
|
}
|
|
553
563
|
};
|
|
554
564
|
const handleDataRendered = ({
|
|
@@ -557,9 +567,13 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
557
567
|
visibleData,
|
|
558
568
|
$event
|
|
559
569
|
}) => {
|
|
570
|
+
const offsetHeight = fecTableContainerRef.value.$el.offsetHeight;
|
|
571
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
560
572
|
if ((visibleData == null ? void 0 : visibleData.length) > 0) {
|
|
561
|
-
|
|
562
|
-
|
|
573
|
+
emitter.emit("onSubTableDataLoaded", {
|
|
574
|
+
subTableConfig: props.subTableConfig,
|
|
575
|
+
visibleData
|
|
576
|
+
});
|
|
563
577
|
}
|
|
564
578
|
};
|
|
565
579
|
const handleFilterSearch = (filters) => {
|
|
@@ -763,6 +777,11 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
763
777
|
});
|
|
764
778
|
initHandleEvent();
|
|
765
779
|
configLoading.value = false;
|
|
780
|
+
nextTick(() => {
|
|
781
|
+
var _a2;
|
|
782
|
+
const offsetHeight = ((_a2 = fecTableContainerRef.value) == null ? void 0 : _a2.$el.offsetHeight) || 300;
|
|
783
|
+
emit("height-loaded", localConfig.value, offsetHeight);
|
|
784
|
+
});
|
|
766
785
|
return;
|
|
767
786
|
}
|
|
768
787
|
configLoading.value = true;
|
|
@@ -969,7 +988,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
969
988
|
};
|
|
970
989
|
}
|
|
971
990
|
});
|
|
972
|
-
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
991
|
+
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3726d701"]]);
|
|
973
992
|
export {
|
|
974
993
|
_Table as default
|
|
975
994
|
};
|
|
@@ -52,7 +52,7 @@ const _sfc_main = {
|
|
|
52
52
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
53
53
|
var _a;
|
|
54
54
|
useCssVars((_ctx) => ({
|
|
55
|
-
"
|
|
55
|
+
"12f9d7c1": `${config.value.collapseRows * 90}px`
|
|
56
56
|
}));
|
|
57
57
|
const props = __props;
|
|
58
58
|
const emit = __emit;
|
|
@@ -188,6 +188,7 @@ const _sfc_main = {
|
|
|
188
188
|
"label-position": "right",
|
|
189
189
|
style: normalizeStyle({ "--column-count": config.value.columnCount }),
|
|
190
190
|
tabindex: "0",
|
|
191
|
+
size: "default",
|
|
191
192
|
onKeydown: withKeys(handleSearch, ["enter"])
|
|
192
193
|
}, {
|
|
193
194
|
default: withCtx(() => [
|
|
@@ -300,7 +301,7 @@ const _sfc_main = {
|
|
|
300
301
|
};
|
|
301
302
|
}
|
|
302
303
|
};
|
|
303
|
-
const TableFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
304
|
+
const TableFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-220e0331"]]);
|
|
304
305
|
export {
|
|
305
306
|
TableFilter as default
|
|
306
307
|
};
|
|
@@ -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.vue2.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogDialog() {
|
|
6
6
|
const dialogDialogVisible = Vue.ref(false);
|
|
@@ -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 */
|
|
@@ -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.vue2.js");
|
|
4
4
|
const Vue = require("vue");
|
|
5
5
|
function useDialogGlobalDialog() {
|
|
6
6
|
const dialogGlobalDialogVisible = Vue.ref(false);
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
3
|
require("../../../../node_modules/element-plus/es/index.js");
|
|
4
4
|
;/* empty css */
|
|
5
|
-
;/* empty css */
|
|
6
5
|
;/* empty css */
|
|
7
6
|
;/* empty css */
|
|
8
7
|
;/* empty css */
|
|
@@ -12,14 +11,15 @@ require("../../../../node_modules/element-plus/es/index.js");
|
|
|
12
11
|
;/* empty css */
|
|
13
12
|
;/* empty css */
|
|
14
13
|
;/* empty css */
|
|
14
|
+
;/* empty css */
|
|
15
15
|
const Vue = require("vue");
|
|
16
16
|
const common = require("../utils/common.js");
|
|
17
17
|
const useDataSourceDialog = require("../dataSource/useDataSourceDialog.js");
|
|
18
18
|
;/* empty css */
|
|
19
19
|
const _pluginVue_exportHelper = require("../../../../_virtual/_plugin-vue_export-helper.js");
|
|
20
|
-
const index = require("../../../../node_modules/element-plus/es/components/
|
|
21
|
-
const index$1 = require("../../../../node_modules/element-plus/es/components/
|
|
22
|
-
const index$2 = require("../../../../node_modules/element-plus/es/components/
|
|
20
|
+
const index = require("../../../../node_modules/element-plus/es/components/switch/index.js");
|
|
21
|
+
const index$1 = require("../../../../node_modules/element-plus/es/components/select/index.js");
|
|
22
|
+
const index$2 = require("../../../../node_modules/element-plus/es/components/radio/index.js");
|
|
23
23
|
const _hoisted_1 = { class: "form-setting" };
|
|
24
24
|
const _hoisted_2 = { class: "setting-left" };
|
|
25
25
|
const _hoisted_3 = { class: "setting-right" };
|
|
@@ -50,18 +50,25 @@ const _sfc_main = {
|
|
|
50
50
|
return formConfig.value.validationRules || [];
|
|
51
51
|
});
|
|
52
52
|
return (_ctx, _cache) => {
|
|
53
|
-
const
|
|
54
|
-
const
|
|
55
|
-
const
|
|
56
|
-
const
|
|
57
|
-
const
|
|
53
|
+
const _component_el_switch = index.ElSwitch;
|
|
54
|
+
const _component_el_option = index$1.ElOption;
|
|
55
|
+
const _component_el_select = index$1.ElSelect;
|
|
56
|
+
const _component_el_radio_button = index$2.ElRadioButton;
|
|
57
|
+
const _component_el_radio_group = index$2.ElRadioGroup;
|
|
58
58
|
return Vue.openBlock(), Vue.createElementBlock(Vue.Fragment, null, [
|
|
59
59
|
Vue.createElementVNode("div", _hoisted_1, [
|
|
60
60
|
Vue.createElementVNode("div", _hoisted_2, [
|
|
61
|
-
_cache[
|
|
61
|
+
_cache[11] || (_cache[11] = Vue.createElementVNode("span", { class: "text-label" }, "启用导航", -1)),
|
|
62
|
+
Vue.createVNode(_component_el_switch, {
|
|
63
|
+
modelValue: formConfig.value.navigationEnabled,
|
|
64
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => formConfig.value.navigationEnabled = $event),
|
|
65
|
+
size: "small"
|
|
66
|
+
}, null, 8, ["modelValue"]),
|
|
67
|
+
_cache[12] || (_cache[12] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
|
|
68
|
+
_cache[13] || (_cache[13] = Vue.createElementVNode("span", { class: "text-label" }, "列数", -1)),
|
|
62
69
|
Vue.createVNode(_component_el_select, {
|
|
63
70
|
modelValue: formConfig.value.columns,
|
|
64
|
-
"onUpdate:modelValue": _cache[
|
|
71
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => formConfig.value.columns = $event),
|
|
65
72
|
size: "small",
|
|
66
73
|
style: { "width": "100px" }
|
|
67
74
|
}, {
|
|
@@ -85,28 +92,28 @@ const _sfc_main = {
|
|
|
85
92
|
]),
|
|
86
93
|
_: 1
|
|
87
94
|
}, 8, ["modelValue"]),
|
|
88
|
-
_cache[
|
|
89
|
-
_cache[
|
|
95
|
+
_cache[14] || (_cache[14] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
|
|
96
|
+
_cache[15] || (_cache[15] = Vue.createElementVNode("span", { class: "text-label" }, "标签位置", -1)),
|
|
90
97
|
Vue.createVNode(_component_el_radio_group, {
|
|
91
98
|
modelValue: formConfig.value.labelPosition,
|
|
92
|
-
"onUpdate:modelValue": _cache[
|
|
99
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => formConfig.value.labelPosition = $event),
|
|
93
100
|
size: "small"
|
|
94
101
|
}, {
|
|
95
102
|
default: Vue.withCtx(() => [
|
|
96
103
|
Vue.createVNode(_component_el_radio_button, { value: "left" }, {
|
|
97
|
-
default: Vue.withCtx(() => _cache[
|
|
104
|
+
default: Vue.withCtx(() => _cache[6] || (_cache[6] = [
|
|
98
105
|
Vue.createTextVNode("左对齐")
|
|
99
106
|
])),
|
|
100
107
|
_: 1
|
|
101
108
|
}),
|
|
102
109
|
Vue.createVNode(_component_el_radio_button, { value: "right" }, {
|
|
103
|
-
default: Vue.withCtx(() => _cache[
|
|
110
|
+
default: Vue.withCtx(() => _cache[7] || (_cache[7] = [
|
|
104
111
|
Vue.createTextVNode("右对齐")
|
|
105
112
|
])),
|
|
106
113
|
_: 1
|
|
107
114
|
}),
|
|
108
115
|
Vue.createVNode(_component_el_radio_button, { value: "top" }, {
|
|
109
|
-
default: Vue.withCtx(() => _cache[
|
|
116
|
+
default: Vue.withCtx(() => _cache[8] || (_cache[8] = [
|
|
110
117
|
Vue.createTextVNode("顶部对齐")
|
|
111
118
|
])),
|
|
112
119
|
_: 1
|
|
@@ -114,22 +121,22 @@ const _sfc_main = {
|
|
|
114
121
|
]),
|
|
115
122
|
_: 1
|
|
116
123
|
}, 8, ["modelValue"]),
|
|
117
|
-
_cache[
|
|
118
|
-
_cache[
|
|
124
|
+
_cache[16] || (_cache[16] = Vue.createElementVNode("div", { class: "setting-divider" }, null, -1)),
|
|
125
|
+
_cache[17] || (_cache[17] = Vue.createElementVNode("span", { class: "text-label" }, "表单模式", -1)),
|
|
119
126
|
Vue.createVNode(_component_el_radio_group, {
|
|
120
127
|
modelValue: formConfig.value.formMode,
|
|
121
|
-
"onUpdate:modelValue": _cache[
|
|
128
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => formConfig.value.formMode = $event),
|
|
122
129
|
size: "small"
|
|
123
130
|
}, {
|
|
124
131
|
default: Vue.withCtx(() => [
|
|
125
132
|
Vue.createVNode(_component_el_radio_button, { value: "edit" }, {
|
|
126
|
-
default: Vue.withCtx(() => _cache[
|
|
133
|
+
default: Vue.withCtx(() => _cache[9] || (_cache[9] = [
|
|
127
134
|
Vue.createTextVNode("编辑")
|
|
128
135
|
])),
|
|
129
136
|
_: 1
|
|
130
137
|
}),
|
|
131
138
|
Vue.createVNode(_component_el_radio_button, { value: "query" }, {
|
|
132
|
-
default: Vue.withCtx(() => _cache[
|
|
139
|
+
default: Vue.withCtx(() => _cache[10] || (_cache[10] = [
|
|
133
140
|
Vue.createTextVNode("查看")
|
|
134
141
|
])),
|
|
135
142
|
_: 1
|
|
@@ -139,21 +146,21 @@ const _sfc_main = {
|
|
|
139
146
|
}, 8, ["modelValue"])
|
|
140
147
|
]),
|
|
141
148
|
Vue.createElementVNode("div", _hoisted_3, [
|
|
142
|
-
_cache[
|
|
149
|
+
_cache[18] || (_cache[18] = Vue.createElementVNode("span", { class: "text-label" }, "显示字段名", -1)),
|
|
143
150
|
Vue.createVNode(_component_el_switch, {
|
|
144
151
|
modelValue: formConfig.value.showFieldName,
|
|
145
|
-
"onUpdate:modelValue": _cache[
|
|
152
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => formConfig.value.showFieldName = $event),
|
|
146
153
|
size: "small"
|
|
147
154
|
}, null, 8, ["modelValue"])
|
|
148
155
|
])
|
|
149
156
|
]),
|
|
150
157
|
Vue.createVNode(Vue.unref(DataSourceDialog), {
|
|
151
158
|
modelValue: Vue.unref(dataSourceDialogVisible),
|
|
152
|
-
"onUpdate:modelValue": _cache[
|
|
159
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => Vue.isRef(dataSourceDialogVisible) ? dataSourceDialogVisible.value = $event : null)
|
|
153
160
|
}, null, 8, ["modelValue"])
|
|
154
161
|
], 64);
|
|
155
162
|
};
|
|
156
163
|
}
|
|
157
164
|
};
|
|
158
|
-
const FormSetting = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
165
|
+
const FormSetting = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-22405d4d"]]);
|
|
159
166
|
exports.default = FormSetting;
|
|
@@ -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");
|
|
@@ -325,5 +325,5 @@ const _sfc_main = {
|
|
|
325
325
|
};
|
|
326
326
|
}
|
|
327
327
|
};
|
|
328
|
-
const tableWorkArea = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
328
|
+
const tableWorkArea = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-87fe3266"]]);
|
|
329
329
|
exports.default = tableWorkArea;
|