super-page-designer 2.2.22 → 2.2.24
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/page-explore-util.js +10 -10
- package/dist/es/components/design/utils/page-permission-util.js +35 -33
- package/dist/es/components/design/views/assemblys/chart/column-line/column-line-design.vue2.js +24 -22
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-clickset.vue.js +39 -36
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-data.vue.js +43 -40
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-groupby.vue.js +43 -40
- package/dist/es/components/design/views/assemblys/chart/common/common-home-chart.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/chart/common/common-home-chart.vue2.js +14 -13
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-attr-data.vue.js +33 -30
- package/dist/es/components/design/views/assemblys/chart/gauge/gauge-design.vue2.js +25 -23
- package/dist/es/components/design/views/assemblys/chart/pie/pie-design.vue2.js +25 -23
- package/dist/es/components/design/views/assemblys/chart/radar/radar-attr-data.vue.js +33 -30
- package/dist/es/components/design/views/assemblys/chart/radar/radar-design.vue2.js +25 -23
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-attr-data.vue.js +38 -35
- package/dist/es/components/design/views/assemblys/chart/scatter/scatter-design.vue2.js +23 -21
- package/dist/es/components/design/views/assemblys/common/common-icon-bind.vue.js +60 -57
- package/dist/es/components/design/views/assemblys/common/common-select-page.vue.js +36 -33
- package/dist/es/components/design/views/assemblys/common/common-select-table.vue.js +44 -41
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue.js +3 -3
- package/dist/es/components/design/views/assemblys/common/{common-variable-bind.vue2.js → common-variable-bind.vue3.js} +8 -8
- package/dist/es/components/design/views/assemblys/common/page-permission-select.vue.js +25 -25
- package/dist/es/components/design/views/assemblys/common-attr-events.vue.js +14 -12
- package/dist/es/components/design/views/assemblys/data/component/column-config.vue.js +78 -74
- package/dist/es/components/design/views/assemblys/data/component/composite-header.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/composite-header.vue2.js +111 -107
- package/dist/es/components/design/views/assemblys/data/component/table-children-column.vue.js +41 -39
- package/dist/es/components/design/views/assemblys/form/checkbox/checkbox-design.vue2.js +10 -8
- package/dist/es/components/design/views/assemblys/form/common/data-linkage.vue.js +26 -22
- package/dist/es/components/design/views/assemblys/form/common/data-origin-autoset.vue.js +41 -37
- package/dist/es/components/design/views/assemblys/form/common/data-origin-service-in.vue.js +30 -26
- package/dist/es/components/design/views/assemblys/form/common/linkpage-page-callback.vue.js +30 -26
- package/dist/es/components/design/views/assemblys/form/common/uploading.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/dept-tree/depttree-autoset.vue.js +30 -26
- package/dist/es/components/design/views/assemblys/form/radio/radio-design.vue2.js +12 -10
- package/dist/es/components/design/views/assemblys/form/rich-text/richtext-design.vue2.js +29 -26
- package/dist/es/components/design/views/assemblys/form/select/select-design.vue2.js +18 -15
- package/dist/es/components/design/views/assemblys/object-design.vue.js +28 -20
- package/dist/es/components/design/views/assemblys/page/page-attr-permissions.vue.js +38 -34
- package/dist/es/components/design/views/design/page-event/{config.vue.js → config.vue2.js} +2 -2
- package/dist/es/components/design/views/design/page-event/config.vue3.js +43 -40
- package/dist/es/components/design/views/design/page-event/page-event-container.vue.js +48 -45
- package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +22 -22
- package/dist/es/components/design/views/design/view/components/quick-add-fields.vue.js +67 -63
- package/dist/es/components/design/views/design/view/view-design-display.vue.js +92 -89
- package/dist/es/stores/event-undo-redo-store.d.ts +4 -1
- package/dist/es/stores/event-undo-redo-store.js +5 -2
- package/dist/es/style.css +13 -13
- package/package.json +3 -3
|
@@ -1,130 +1,134 @@
|
|
|
1
|
-
import { defineComponent as e, ref as l, onMounted as o,
|
|
2
|
-
import { getFormComponentOptions as
|
|
1
|
+
import { defineComponent as e, ref as l, onMounted as o, onUnmounted as a, resolveComponent as r, createElementBlock as n, openBlock as t, createVNode as u, withCtx as i, createElementVNode as p, createTextVNode as d, createCommentVNode as s, createBlock as c, unref as m, toDisplayString as b, Fragment as f, renderList as w } from "vue";
|
|
2
|
+
import { getFormComponentOptions as h, getTableColumnConf as g, getTableSelectionConf as y, getTableIndexConf as v, getTableOperateConf as k } from "../../../../utils/assemblys-config.js";
|
|
3
3
|
import "uuid";
|
|
4
|
-
import { ElMessage as
|
|
5
|
-
import { Top as
|
|
6
|
-
import
|
|
7
|
-
const
|
|
4
|
+
import { ElMessage as V } from "element-plus";
|
|
5
|
+
import { Top as _, Bottom as C } from "@element-plus/icons-vue";
|
|
6
|
+
import x from "../../../../utils/eventBus.js";
|
|
7
|
+
const O = { style: { "background-color": "rgba(88, 147, 239, 0.06)", padding: "10px" } }, U = { key: 0 }, T = { key: 0 }, N = { key: 0 }, D = { key: 1 }, F = { key: 0 }, L = { key: 0 }, E = { key: 1 }, S = { key: 0 }, I = { key: 1 }, M = { key: 0 }, j = { key: 1 }, z = { key: 0 }, $ = { key: 1 }, q = { key: 0 }, R = { key: 1 }, A = { key: 0 }, B = { key: 1 }, J = { key: 0 }, H = { key: 1 }, P = { key: 0 }, G = { key: 1 }, K = { key: 0 }, Q = { key: 1 }, W = e({ __name: "column-config", props: { configure: { type: Object, default: () => {
|
|
8
8
|
} }, modelFields: { type: Array, default: null }, pageDesign: { type: Object, default: () => {
|
|
9
|
-
} }, isChangeTable: { type: Boolean, default: false } }, emits: ["close", "setConfigure"], setup(e2, { emit:
|
|
10
|
-
const
|
|
11
|
-
let
|
|
12
|
-
if (
|
|
9
|
+
} }, isChangeTable: { type: Boolean, default: false } }, emits: ["close", "setConfigure"], setup(e2, { emit: W2 }) {
|
|
10
|
+
const X = e2, Y = W2, Z = l([]), ee = l(null), le = {}, oe = l(300), ae = l([]);
|
|
11
|
+
let re = window.innerHeight - 110 - 20;
|
|
12
|
+
if (re > 500 ? re = 500 : re < 100 && (re = 100), oe.value = re, X.configure) if (X.isChangeTable) {
|
|
13
13
|
const e3 = function() {
|
|
14
|
-
if (!
|
|
14
|
+
if (!X.modelFields) return;
|
|
15
15
|
const e4 = [];
|
|
16
16
|
let l2 = 0;
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
X.configure.props.base.selection && l2++;
|
|
18
|
+
X.configure.props.base.showIndex && l2++;
|
|
19
19
|
let o2 = [], a2 = [];
|
|
20
|
-
if (
|
|
21
|
-
|
|
22
|
-
}),
|
|
23
|
-
const l3 =
|
|
20
|
+
if (X.modelFields.forEach((e5) => {
|
|
21
|
+
le[e5.dbColumnName] = e5, "MODIFIER_NAME" === e5.dbColumnName || "MODIFIED_TIME" === e5.dbColumnName || "modifier_name" === e5.dbColumnName || "modified_time" === e5.dbColumnName ? a2.push(e5) : !e5.edit && "operation" !== e5.dbColumnName && e5.generateList && (e5.displayOrder = l2++, o2.push(g(e5)));
|
|
22
|
+
}), X.configure.props.base.selection) {
|
|
23
|
+
const l3 = y();
|
|
24
24
|
e4.push(l3);
|
|
25
25
|
}
|
|
26
|
-
if (
|
|
27
|
-
const l3 =
|
|
26
|
+
if (X.configure.props.base.showIndex) {
|
|
27
|
+
const l3 = v();
|
|
28
28
|
e4.push(l3);
|
|
29
29
|
}
|
|
30
|
-
if (e4.push(...o2),
|
|
30
|
+
if (e4.push(...o2), X.pageDesign.pageType && "list" === X.pageDesign.pageType) {
|
|
31
31
|
l2 = e4.length;
|
|
32
32
|
const o3 = [];
|
|
33
33
|
a2.forEach((e5) => {
|
|
34
|
-
e5.displayOrder = l2++, o3.push(
|
|
34
|
+
e5.displayOrder = l2++, o3.push(g(e5));
|
|
35
35
|
}), e4.push(...o3);
|
|
36
36
|
}
|
|
37
|
-
if (
|
|
38
|
-
let l3 =
|
|
37
|
+
if (X.configure.props.base.showOperation) {
|
|
38
|
+
let l3 = k();
|
|
39
39
|
l3.props.base.displayOrder = e4.length, e4.push(l3);
|
|
40
40
|
}
|
|
41
41
|
return e4;
|
|
42
42
|
}();
|
|
43
|
-
|
|
44
|
-
} else
|
|
45
|
-
const
|
|
46
|
-
function ne(e3) {
|
|
47
|
-
Z.value = e3.uuid;
|
|
48
|
-
}
|
|
43
|
+
Z.value = e3 || [];
|
|
44
|
+
} else Z.value = JSON.parse(JSON.stringify(X.configure.items));
|
|
45
|
+
const ne = l(h());
|
|
49
46
|
function te(e3) {
|
|
50
|
-
|
|
47
|
+
ee.value = e3.uuid;
|
|
51
48
|
}
|
|
52
49
|
function ue(e3) {
|
|
53
|
-
return "
|
|
50
|
+
return pe(e3) || "$index" === e3.props.base.prop || "operation" === e3.props.base.prop;
|
|
54
51
|
}
|
|
55
52
|
function ie(e3) {
|
|
56
|
-
return "
|
|
53
|
+
return "dynamicColumnSelect" === e3.props.base.prop;
|
|
57
54
|
}
|
|
58
|
-
function pe() {
|
|
59
|
-
|
|
55
|
+
function pe(e3) {
|
|
56
|
+
return "$selection" === e3.props.base.prop;
|
|
60
57
|
}
|
|
61
58
|
function de() {
|
|
62
|
-
|
|
59
|
+
x.$emit("hadleDragging", false), Y("setConfigure", { columns: Z.value, modelFieldsMap: le });
|
|
60
|
+
}
|
|
61
|
+
function se() {
|
|
62
|
+
Y("close");
|
|
63
63
|
}
|
|
64
|
-
|
|
64
|
+
let ce;
|
|
65
|
+
function me(e3) {
|
|
65
66
|
let l2 = -1;
|
|
66
|
-
const o2 =
|
|
67
|
-
for (let a2 = 0; a2 < o2; a2++) if (
|
|
67
|
+
const o2 = Z.value.length;
|
|
68
|
+
for (let a2 = 0; a2 < o2; a2++) if (Z.value[a2].uuid == e3.uuid) {
|
|
68
69
|
l2 = a2;
|
|
69
70
|
break;
|
|
70
71
|
}
|
|
71
72
|
return l2;
|
|
72
73
|
}
|
|
73
|
-
function
|
|
74
|
+
function be(e3) {
|
|
74
75
|
let l2 = "";
|
|
75
76
|
return l2 = e3.children && e3.children.length > 0 ? e3.titleText : e3.props && e3.props.base.name && e3.props.base.name.length > 0 ? e3.props.base.name : e3.titleText, l2;
|
|
76
77
|
}
|
|
77
|
-
function
|
|
78
|
+
function fe() {
|
|
78
79
|
let e3 = false, l2 = [];
|
|
79
|
-
|
|
80
|
-
|
|
80
|
+
ae.value.forEach((o2) => {
|
|
81
|
+
ue(o2) ? e3 = true : l2.push(me(o2));
|
|
81
82
|
}), l2.sort((e4, l3) => l3 - e4), l2.forEach((e4) => {
|
|
82
|
-
|
|
83
|
-
}), e3 ?
|
|
83
|
+
Z.value.splice(e4, 1);
|
|
84
|
+
}), e3 ? V.warning("复选框、序号、操作列不能删除,其它列已删除成功") : V.success("删除成功");
|
|
84
85
|
}
|
|
85
|
-
function
|
|
86
|
-
|
|
86
|
+
function we(e3) {
|
|
87
|
+
ae.value = e3;
|
|
87
88
|
}
|
|
88
|
-
function
|
|
89
|
-
for (let e3 = 0; e3 <
|
|
90
|
-
|
|
89
|
+
function he() {
|
|
90
|
+
for (let e3 = 0; e3 < Z.value.length; e3++) {
|
|
91
|
+
Z.value[e3].props.base.displayOrder = e3;
|
|
91
92
|
}
|
|
92
93
|
}
|
|
93
94
|
return o(() => {
|
|
94
|
-
|
|
95
|
+
x.$emit("hadleDragging", true);
|
|
96
|
+
}), a(() => {
|
|
97
|
+
ce && clearTimeout(ce);
|
|
95
98
|
}), (l2, o2) => {
|
|
96
|
-
const
|
|
97
|
-
return
|
|
98
|
-
let l4 =
|
|
99
|
+
const a2 = r("el-button"), h2 = r("el-table-column"), y2 = r("el-icon"), v2 = r("Plus"), k2 = r("Delete"), V2 = r("el-option"), x2 = r("el-select"), W3 = r("el-input"), Y2 = r("el-switch"), le2 = r("el-table"), ae2 = r("el-dialog");
|
|
100
|
+
return t(), n("div", null, [u(ae2, { "append-to-body": "", "model-value": "", title: "快捷设置", width: "70%", "close-on-click-modal": false, "before-close": se }, { default: i(() => [p("div", O, [u(a2, { type: "primary", style: { "margin-left": "10px" }, icon: l2.Search, onClick: de }, { default: i(() => o2[0] || (o2[0] = [d("确定")])), _: 1 }, 8, ["icon"]), u(a2, { style: { "margin-left": "10px" }, icon: l2.Delete, onClick: fe }, { default: i(() => o2[1] || (o2[1] = [d("删除")])), _: 1 }, 8, ["icon"]), u(a2, { style: { "margin-left": "10px" }, icon: l2.Delete, onClick: he }, { default: i(() => o2[2] || (o2[2] = [d("重置顺序")])), _: 1 }, 8, ["icon"]), u(a2, { style: { "margin-left": "10px" }, icon: l2.RefreshLeft, onClick: se }, { default: i(() => o2[3] || (o2[3] = [d("取消")])), _: 1 }, 8, ["icon"])]), u(le2, { border: "", data: Z.value, "row-key": "uuid", "max-height": oe.value, style: { width: "100%" }, onRowClick: te, onSelectionChange: we }, { default: i(() => [u(h2, { type: "selection", align: "center", width: "50" }), u(h2, { type: "index", label: "序号", align: "center", width: "50" }), u(h2, { label: "操作", align: "center", width: "90" }, { default: i((e3) => [e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", U, [ue(e3.row) ? s("", true) : (t(), c(y2, { key: 0, size: "14", style: { cursor: "pointer" }, onClick: (l3) => function(e4) {
|
|
101
|
+
let l4 = me(e4);
|
|
99
102
|
if (l4 < 1) return;
|
|
100
|
-
const o3 =
|
|
103
|
+
const o3 = Z.value;
|
|
101
104
|
[o3[l4 - 1], o3[l4]] = [o3[l4], o3[l4 - 1]];
|
|
102
|
-
const
|
|
103
|
-
o3[l4].props.base.displayOrder = r2, o3[l4 - 1].props.base.displayOrder =
|
|
104
|
-
}(e3.row) }, { default:
|
|
105
|
-
let l4 =
|
|
106
|
-
if (-1 == l4 ||
|
|
107
|
-
const o3 =
|
|
105
|
+
const a3 = o3[l4].props.base.displayOrder, r2 = o3[l4 - 1].props.base.displayOrder;
|
|
106
|
+
o3[l4].props.base.displayOrder = r2, o3[l4 - 1].props.base.displayOrder = a3;
|
|
107
|
+
}(e3.row) }, { default: i(() => [u(m(_))]), _: 2 }, 1032, ["onClick"])), ue(e3.row) ? s("", true) : (t(), c(y2, { key: 1, size: "14", style: { "margin-left": "2px", cursor: "pointer" }, onClick: (l3) => function(e4) {
|
|
108
|
+
let l4 = me(e4);
|
|
109
|
+
if (-1 == l4 || Z.value.length == l4 + 1) return;
|
|
110
|
+
const o3 = Z.value;
|
|
108
111
|
[o3[l4], o3[l4 + 1]] = [o3[l4 + 1], o3[l4]];
|
|
109
|
-
const
|
|
110
|
-
o3[l4].props.base.displayOrder = r2, o3[l4 + 1].props.base.displayOrder =
|
|
111
|
-
}(e3.row) }, { default:
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
112
|
+
const a3 = o3[l4].props.base.displayOrder, r2 = o3[l4 + 1].props.base.displayOrder;
|
|
113
|
+
o3[l4].props.base.displayOrder = r2, o3[l4 + 1].props.base.displayOrder = a3;
|
|
114
|
+
}(e3.row) }, { default: i(() => [u(m(C))]), _: 2 }, 1032, ["onClick"])), u(y2, { size: "14", style: { cursor: "pointer" }, onClick: (l3) => function() {
|
|
115
|
+
ce && clearTimeout(ce);
|
|
116
|
+
let e4 = g();
|
|
117
|
+
Z.value.push(e4), ce = setTimeout(() => {
|
|
118
|
+
ee.value = e4.uuid;
|
|
115
119
|
}, 20);
|
|
116
|
-
}(e3.row) }, { default:
|
|
117
|
-
let l4 =
|
|
118
|
-
|
|
119
|
-
}(e3.row) }, { default:
|
|
120
|
-
const l4 =
|
|
120
|
+
}(e3.row) }, { default: i(() => [u(v2)]), _: 2 }, 1032, ["onClick"]), ue(e3.row) ? s("", true) : (t(), c(y2, { key: 2, size: "14", style: { "margin-left": "2px", cursor: "pointer" }, onClick: (l3) => function(e4) {
|
|
121
|
+
let l4 = me(e4);
|
|
122
|
+
Z.value.splice(l4, 1);
|
|
123
|
+
}(e3.row) }, { default: i(() => [u(k2)]), _: 2 }, 1032, ["onClick"]))]))]), _: 1 }), u(h2, { label: "字段", width: "150" }, { default: i((l3) => [l3.row.uuid != ee.value || ue(l3.row) ? (t(), n("label", T, b(l3.row.props.base.prop), 1)) : l3.row.children && 0 != l3.row.children.length ? s("", true) : (t(), c(x2, { key: 1, modelValue: l3.row.props.base.prop, "onUpdate:modelValue": (e3) => l3.row.props.base.prop = e3, placeholder: "请选择", onChange: (e3) => function(e4) {
|
|
124
|
+
const l4 = X.modelFields.filter((l5) => l5.dbColumnName === e4.props.base.prop);
|
|
121
125
|
l4 && l4.length > 0 && (e4.props.base.name = l4[0].alias);
|
|
122
|
-
}(l3.row) }, { default:
|
|
126
|
+
}(l3.row) }, { default: i(() => [(t(true), n(f, null, w(e2.modelFields, (e3) => (t(), c(V2, { key: e3.name, label: e3.alias, value: e3.dbColumnName }, null, 8, ["label", "value"]))), 128))]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue", "onChange"]))]), _: 1 }), u(h2, { width: "150" }, { header: i(() => o2[4] || (o2[4] = [d(" 标题 "), p("span", { style: { color: "red" } }, "*", -1)])), default: i((e3) => [e3.row.children && e3.row.children.length > 0 ? (t(), n("span", N, b(be(e3.row)), 1)) : (t(), n("span", D, [e3.row.uuid != ee.value || ie(e3.row) || pe(e3.row) ? (t(), n("label", F, b(e3.row.props.base.name), 1)) : (t(), c(W3, { key: 1, modelValue: e3.row.props.base.name, "onUpdate:modelValue": (l3) => e3.row.props.base.name = l3 }, null, 8, ["modelValue", "onUpdate:modelValue"]))]))]), _: 1 }), u(h2, { label: "显示" }, { default: i((e3) => [e3.row.uuid != ee.value || ue(e3.row) || ie(e3.row) ? (t(), n("label", L, b(e3.row.props.base.visible), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", E, [u(Y2, { modelValue: e3.row.props.base.visible, "onUpdate:modelValue": (l3) => e3.row.props.base.visible = l3 }, null, 8, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "显示顺序" }, { default: i((e3) => [e3.row.uuid != ee.value ? (t(), n("label", S, b(e3.row.props.base.displayOrder), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", I, [u(W3, { modelValue: e3.row.props.base.displayOrder, "onUpdate:modelValue": (l3) => e3.row.props.base.displayOrder = l3, modelModifiers: { number: true }, placeholder: "请输入" }, null, 8, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "导出" }, { default: i((e3) => [e3.row.uuid != ee.value || ue(e3.row) || ie(e3.row) ? (t(), n("label", M, b(e3.row.props.base.exportable), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", j, [u(Y2, { modelValue: e3.row.props.base.exportable, "onUpdate:modelValue": (l3) => e3.row.props.base.exportable = l3 }, null, 8, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "查询设置" }, { default: i((e3) => [e3.row.uuid != ee.value || ue(e3.row) || ie(e3.row) ? (t(), n("label", z, b(e3.row.props.base.querySettingName), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", $, [u(x2, { modelValue: e3.row.props.base.querySettingName, "onUpdate:modelValue": (l3) => e3.row.props.base.querySettingName = l3 }, { default: i(() => [u(V2, { label: "不查询", value: "no" }), u(V2, { label: "普通查询", value: "normal" }), u(V2, { label: "高级查询", value: "advanced" })]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "编辑" }, { default: i((e3) => [e3.row.uuid != ee.value || ue(e3.row) || ie(e3.row) ? (t(), n("label", q, b(e3.row.props.editLine.editable), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", R, [u(Y2, { modelValue: e3.row.props.editLine.editable, "onUpdate:modelValue": (l3) => e3.row.props.editLine.editable = l3 }, null, 8, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "编辑组件" }, { default: i((e3) => [e3.row.uuid != ee.value || ue(e3.row) || ie(e3.row) ? (t(), n("label", A, b(e3.row.props.editLine.plugType), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", B, [u(x2, { modelValue: e3.row.props.editLine.plugType, "onUpdate:modelValue": (l3) => e3.row.props.editLine.plugType = l3, placeholder: "请选择", clearable: "", onChange: (l3) => {
|
|
123
127
|
var o3;
|
|
124
128
|
(o3 = e3.row).name = o3.props.editLine.plugType;
|
|
125
|
-
} }, { default:
|
|
129
|
+
} }, { default: i(() => [(t(true), n(f, null, w(ne.value, (e4) => (t(), c(V2, { key: e4.name, label: e4.label, value: e4.name }, null, 8, ["label", "value"]))), 128))]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue", "onChange"])]))]), _: 1 }), u(h2, { label: "标题对齐" }, { default: i((e3) => [e3.row.uuid != ee.value || ie(e3.row) ? (t(), n("label", J, b(e3.row.props.base.alignTitle), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", H, [u(x2, { modelValue: e3.row.props.base.alignTitle, "onUpdate:modelValue": (l3) => e3.row.props.base.alignTitle = l3 }, { default: i(() => [u(V2, { value: "left" }, { default: i(() => o2[5] || (o2[5] = [d("居左")])), _: 1 }), u(V2, { value: "center" }, { default: i(() => o2[6] || (o2[6] = [d("居中")])), _: 1 }), u(V2, { value: "right" }, { default: i(() => o2[7] || (o2[7] = [d("居右")])), _: 1 })]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "内容对齐" }, { default: i((e3) => [e3.row.uuid != ee.value || ie(e3.row) ? (t(), n("label", P, b(e3.row.props.base.alignContent), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", G, [u(x2, { modelValue: e3.row.props.base.alignContent, "onUpdate:modelValue": (l3) => e3.row.props.base.alignContent = l3 }, { default: i(() => [u(V2, { value: "left" }, { default: i(() => o2[8] || (o2[8] = [d("居左")])), _: 1 }), u(V2, { value: "center" }, { default: i(() => o2[9] || (o2[9] = [d("居中")])), _: 1 }), u(V2, { value: "right" }, { default: i(() => o2[10] || (o2[10] = [d("居右")])), _: 1 })]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 }), u(h2, { label: "固定列" }, { default: i((e3) => [e3.row.uuid != ee.value || ie(e3.row) ? (t(), n("label", K, b(e3.row.props.base.listColumnFixed), 1)) : e3.row.children && 0 != e3.row.children.length ? s("", true) : (t(), n("span", Q, [u(x2, { modelValue: e3.row.props.base.listColumnFixed, "onUpdate:modelValue": (l3) => e3.row.props.base.listColumnFixed = l3 }, { default: i(() => [u(V2, { value: "false" }, { default: i(() => o2[11] || (o2[11] = [d("否")])), _: 1 }), u(V2, { value: "left" }, { default: i(() => o2[12] || (o2[12] = [d("居左")])), _: 1 }), u(V2, { value: "right" }, { default: i(() => o2[13] || (o2[13] = [d("居右")])), _: 1 })]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]))]), _: 1 })]), _: 1 }, 8, ["data", "max-height"])]), _: 1 })]);
|
|
126
130
|
};
|
|
127
131
|
} });
|
|
128
132
|
export {
|
|
129
|
-
|
|
133
|
+
W as default
|
|
130
134
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./composite-header.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import o from "../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const r = o(e, [["__scopeId", "data-v-
|
|
4
|
+
const r = o(e, [["__scopeId", "data-v-90da2dec"]]);
|
|
5
5
|
export {
|
|
6
6
|
r as default
|
|
7
7
|
};
|