act-plus 1.1.39 → 1.1.41
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/act-plus.js +4 -4
- package/act-plus.umd.cjs +62 -62
- package/lib/{dialogAddField-15d985a0.js → dialogAddField-3c740262.js} +219 -213
- package/lib/{dialogConfigBtn-2dff5fd1.js → dialogConfigBtn-8bfd8dd7.js} +84 -87
- package/lib/dialogSiteComponentsParams-b6c8001c.js +71 -0
- package/lib/{index-049908aa.js → index-0c36aa40.js} +3 -3
- package/lib/index-266b8842.js +403 -0
- package/lib/{index-9532f747.js → index-333a11e5.js} +1 -1
- package/lib/{index-695e54dd.js → index-40115216.js} +32991 -31790
- package/lib/{index-fced38e4.js → index-4398f116.js} +33 -33
- package/lib/index-e9d31e0d.js +107 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/configBtns-728ef16d.js +0 -155
- package/lib/configFileds-9e744154.js +0 -199
- package/lib/configForm-e91a1aa7.js +0 -129
- package/lib/configTable-416757c9.js +0 -416
- package/lib/dialogInitConfig-51ed8f7d.js +0 -188
- package/lib/dialogSiteComponentsParams-9c74c09e.js +0 -71
- package/lib/enum-d734222c.js +0 -119
- package/lib/index-12816422.js +0 -376
- package/lib/index-2a3f9431.js +0 -102
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
import { ref as _, watch as P, resolveComponent as m, openBlock as i, createBlock as p, withCtx as o, createVNode as e, unref as a, createElementBlock as R, Fragment as W, renderList as F } from "vue";
|
|
2
|
-
import { F as O } from "./enum-d734222c.js";
|
|
3
|
-
const C = {
|
|
4
|
-
__name: "configForm",
|
|
5
|
-
props: {
|
|
6
|
-
modelValue: { type: Object, default: () => ({}) }
|
|
7
|
-
},
|
|
8
|
-
emits: ["update:modelValue"],
|
|
9
|
-
setup(c, { expose: b, emit: y }) {
|
|
10
|
-
const V = c, g = () => ({
|
|
11
|
-
formRow: 1,
|
|
12
|
-
dialogWidth: 800,
|
|
13
|
-
formLabelWidth: 120,
|
|
14
|
-
formLabelPosition: "top"
|
|
15
|
-
});
|
|
16
|
-
let s = _(null), l = _(g());
|
|
17
|
-
return P(
|
|
18
|
-
() => V.modelValue,
|
|
19
|
-
(d, n) => {
|
|
20
|
-
d && (l.value = Object.assign(l.value, { ...d }));
|
|
21
|
-
},
|
|
22
|
-
{ deep: !0, immediate: !0 }
|
|
23
|
-
), b({ formRef: s, form: l }), (d, n) => {
|
|
24
|
-
const f = m("el-input-number"), r = m("el-form-item"), u = m("el-col"), L = m("el-option"), w = m("el-select"), h = m("el-row"), v = m("el-form"), x = m("el-card");
|
|
25
|
-
return i(), p(x, {
|
|
26
|
-
class: "form-card",
|
|
27
|
-
shadow: "hover",
|
|
28
|
-
header: "表单配置"
|
|
29
|
-
}, {
|
|
30
|
-
default: o(() => [
|
|
31
|
-
e(v, {
|
|
32
|
-
ref_key: "formRef",
|
|
33
|
-
ref: s,
|
|
34
|
-
model: a(l),
|
|
35
|
-
"label-suffix": ":",
|
|
36
|
-
"label-width": "110px"
|
|
37
|
-
}, {
|
|
38
|
-
default: o(() => [
|
|
39
|
-
e(h, null, {
|
|
40
|
-
default: o(() => [
|
|
41
|
-
e(u, { span: 8 }, {
|
|
42
|
-
default: o(() => [
|
|
43
|
-
e(r, { label: "弹窗宽度" }, {
|
|
44
|
-
default: o(() => [
|
|
45
|
-
e(f, {
|
|
46
|
-
modelValue: a(l).dialogWidth,
|
|
47
|
-
"onUpdate:modelValue": n[0] || (n[0] = (t) => a(l).dialogWidth = t),
|
|
48
|
-
min: 800
|
|
49
|
-
}, null, 8, ["modelValue"])
|
|
50
|
-
]),
|
|
51
|
-
_: 1
|
|
52
|
-
})
|
|
53
|
-
]),
|
|
54
|
-
_: 1
|
|
55
|
-
}),
|
|
56
|
-
e(u, { span: 8 }, {
|
|
57
|
-
default: o(() => [
|
|
58
|
-
e(r, { label: "排版列数" }, {
|
|
59
|
-
default: o(() => [
|
|
60
|
-
e(f, {
|
|
61
|
-
modelValue: a(l).formRow,
|
|
62
|
-
"onUpdate:modelValue": n[1] || (n[1] = (t) => a(l).formRow = t),
|
|
63
|
-
min: 1,
|
|
64
|
-
max: 4
|
|
65
|
-
}, null, 8, ["modelValue"])
|
|
66
|
-
]),
|
|
67
|
-
_: 1
|
|
68
|
-
})
|
|
69
|
-
]),
|
|
70
|
-
_: 1
|
|
71
|
-
}),
|
|
72
|
-
e(u, { span: 8 }, {
|
|
73
|
-
default: o(() => [
|
|
74
|
-
e(r, { label: "label宽度" }, {
|
|
75
|
-
default: o(() => [
|
|
76
|
-
e(f, {
|
|
77
|
-
modelValue: a(l).formLabelWidth,
|
|
78
|
-
"onUpdate:modelValue": n[2] || (n[2] = (t) => a(l).formLabelWidth = t),
|
|
79
|
-
min: 80
|
|
80
|
-
}, null, 8, ["modelValue"])
|
|
81
|
-
]),
|
|
82
|
-
_: 1
|
|
83
|
-
})
|
|
84
|
-
]),
|
|
85
|
-
_: 1
|
|
86
|
-
}),
|
|
87
|
-
e(u, { span: 8 }, {
|
|
88
|
-
default: o(() => [
|
|
89
|
-
e(r, {
|
|
90
|
-
label: "label位置",
|
|
91
|
-
rules: [{ required: !0, message: "必填项", trigger: ["change"] }],
|
|
92
|
-
prop: "formLabelPosition"
|
|
93
|
-
}, {
|
|
94
|
-
default: o(() => [
|
|
95
|
-
e(w, {
|
|
96
|
-
modelValue: a(l).formLabelPosition,
|
|
97
|
-
"onUpdate:modelValue": n[3] || (n[3] = (t) => a(l).formLabelPosition = t),
|
|
98
|
-
placeholder: "请选择"
|
|
99
|
-
}, {
|
|
100
|
-
default: o(() => [
|
|
101
|
-
(i(!0), R(W, null, F(a(O), (t, k) => (i(), p(L, {
|
|
102
|
-
key: k + "labelPosition",
|
|
103
|
-
label: t.key,
|
|
104
|
-
value: t.value
|
|
105
|
-
}, null, 8, ["label", "value"]))), 128))
|
|
106
|
-
]),
|
|
107
|
-
_: 1
|
|
108
|
-
}, 8, ["modelValue"])
|
|
109
|
-
]),
|
|
110
|
-
_: 1
|
|
111
|
-
})
|
|
112
|
-
]),
|
|
113
|
-
_: 1
|
|
114
|
-
})
|
|
115
|
-
]),
|
|
116
|
-
_: 1
|
|
117
|
-
})
|
|
118
|
-
]),
|
|
119
|
-
_: 1
|
|
120
|
-
}, 8, ["model"])
|
|
121
|
-
]),
|
|
122
|
-
_: 1
|
|
123
|
-
});
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
};
|
|
127
|
-
export {
|
|
128
|
-
C as default
|
|
129
|
-
};
|
|
@@ -1,416 +0,0 @@
|
|
|
1
|
-
import { inject as z, ref as T, watch as j, resolveComponent as i, openBlock as s, createBlock as b, withCtx as l, createVNode as e, unref as u, createTextVNode as B, createElementBlock as y, Fragment as U, renderList as w, createCommentVNode as x } from "vue";
|
|
2
|
-
import { S as I } from "./enum-d734222c.js";
|
|
3
|
-
import { _ as M } from "./index-695e54dd.js";
|
|
4
|
-
import "vue-router";
|
|
5
|
-
import "js-base64";
|
|
6
|
-
import "element-plus";
|
|
7
|
-
import "monaco-editor";
|
|
8
|
-
const A = {
|
|
9
|
-
__name: "configTable",
|
|
10
|
-
props: {
|
|
11
|
-
modelValue: { type: Object, default: () => ({}) }
|
|
12
|
-
},
|
|
13
|
-
emits: ["update:modelValue"],
|
|
14
|
-
setup(F, { expose: Q, emit: D }) {
|
|
15
|
-
const v = F, N = () => ({
|
|
16
|
-
dataUrl: void 0,
|
|
17
|
-
defaultParams: [],
|
|
18
|
-
isCheckRow: !1,
|
|
19
|
-
isOperateRow: !0,
|
|
20
|
-
isPagination: !0,
|
|
21
|
-
isSerialNumber: !0,
|
|
22
|
-
isSort: !0,
|
|
23
|
-
isExpandQuery: !1,
|
|
24
|
-
tableOperateCellWidth: 160,
|
|
25
|
-
pageSize: 10,
|
|
26
|
-
tableQueryLabelWidth: 100,
|
|
27
|
-
tableQueryRowWidth: 5
|
|
28
|
-
}), O = z("conditionList")();
|
|
29
|
-
let h = T(null), a = T(N());
|
|
30
|
-
j(
|
|
31
|
-
() => v.modelValue,
|
|
32
|
-
(m, o) => {
|
|
33
|
-
if (m) {
|
|
34
|
-
if (!Object.keys(m).length)
|
|
35
|
-
return;
|
|
36
|
-
const p = { ...m, defaultParams: [...m.defaultParams || []] };
|
|
37
|
-
Object.keys(a.value).forEach((d) => {
|
|
38
|
-
["defaultParams"].includes(d) ? a.value[d] = [...p[d] || []] : a.value[d] = p[d];
|
|
39
|
-
});
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
{ deep: !0, immediate: !0 }
|
|
43
|
-
);
|
|
44
|
-
const W = () => {
|
|
45
|
-
a.value.defaultParams.push({ submitFieldName: "", defaultValue: "", matchValue: "", submitFieldType: "" });
|
|
46
|
-
}, q = (m) => {
|
|
47
|
-
a.value.defaultParams.splice(m, 1);
|
|
48
|
-
}, P = (m) => {
|
|
49
|
-
m || (a.value.pageSize = 10);
|
|
50
|
-
};
|
|
51
|
-
return Q({ formRef: h, form: a }), (m, o) => {
|
|
52
|
-
const p = i("el-input"), d = i("el-form-item"), n = i("el-col"), c = i("el-row"), k = i("el-button"), C = i("el-divider"), S = i("el-option"), R = i("el-select"), f = i("el-switch"), V = i("el-input-number"), E = i("el-form"), L = i("el-card");
|
|
53
|
-
return s(), b(L, {
|
|
54
|
-
class: "form-card",
|
|
55
|
-
shadow: "hover",
|
|
56
|
-
header: "表格配置"
|
|
57
|
-
}, {
|
|
58
|
-
default: l(() => [
|
|
59
|
-
e(E, {
|
|
60
|
-
ref_key: "formRef",
|
|
61
|
-
ref: h,
|
|
62
|
-
model: u(a),
|
|
63
|
-
"label-suffix": ":",
|
|
64
|
-
"label-width": "120"
|
|
65
|
-
}, {
|
|
66
|
-
default: l(() => [
|
|
67
|
-
e(c, null, {
|
|
68
|
-
default: l(() => [
|
|
69
|
-
e(n, { span: 24 }, {
|
|
70
|
-
default: l(() => [
|
|
71
|
-
e(d, {
|
|
72
|
-
label: "表格数据url",
|
|
73
|
-
prop: "dataUrl",
|
|
74
|
-
rules: [{ required: !0, message: "必填项", trigger: "blur" }]
|
|
75
|
-
}, {
|
|
76
|
-
default: l(() => [
|
|
77
|
-
e(p, {
|
|
78
|
-
modelValue: u(a).dataUrl,
|
|
79
|
-
"onUpdate:modelValue": o[0] || (o[0] = (t) => u(a).dataUrl = t),
|
|
80
|
-
placeholder: "请输入",
|
|
81
|
-
clearable: ""
|
|
82
|
-
}, null, 8, ["modelValue"])
|
|
83
|
-
]),
|
|
84
|
-
_: 1
|
|
85
|
-
})
|
|
86
|
-
]),
|
|
87
|
-
_: 1
|
|
88
|
-
})
|
|
89
|
-
]),
|
|
90
|
-
_: 1
|
|
91
|
-
}),
|
|
92
|
-
e(C, { "content-position": "left" }, {
|
|
93
|
-
default: l(() => [
|
|
94
|
-
B(" 表格默认参数配置 "),
|
|
95
|
-
e(k, {
|
|
96
|
-
class: "add-icon-btn",
|
|
97
|
-
type: "primary",
|
|
98
|
-
icon: "Plus",
|
|
99
|
-
circle: "",
|
|
100
|
-
onClick: W
|
|
101
|
-
})
|
|
102
|
-
]),
|
|
103
|
-
_: 1
|
|
104
|
-
}),
|
|
105
|
-
(s(!0), y(U, null, w(u(a).defaultParams, (t, _) => (s(), b(c, {
|
|
106
|
-
class: "table-post-params",
|
|
107
|
-
key: _
|
|
108
|
-
}, {
|
|
109
|
-
default: l(() => [
|
|
110
|
-
e(n, { span: 12 }, {
|
|
111
|
-
default: l(() => [
|
|
112
|
-
e(d, {
|
|
113
|
-
label: "字段",
|
|
114
|
-
rules: [{ required: !0, message: "必填项", trigger: "blur" }],
|
|
115
|
-
prop: "defaultParams." + _ + ".submitFieldName"
|
|
116
|
-
}, {
|
|
117
|
-
default: l(() => [
|
|
118
|
-
e(p, {
|
|
119
|
-
modelValue: t.submitFieldName,
|
|
120
|
-
"onUpdate:modelValue": (r) => t.submitFieldName = r,
|
|
121
|
-
placeholder: "请输入",
|
|
122
|
-
clearable: ""
|
|
123
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
124
|
-
]),
|
|
125
|
-
_: 2
|
|
126
|
-
}, 1032, ["prop"])
|
|
127
|
-
]),
|
|
128
|
-
_: 2
|
|
129
|
-
}, 1024),
|
|
130
|
-
e(n, { span: 12 }, {
|
|
131
|
-
default: l(() => [
|
|
132
|
-
e(d, {
|
|
133
|
-
label: "匹配条件",
|
|
134
|
-
rules: [{ required: !0, message: "必填项", trigger: "change" }],
|
|
135
|
-
prop: "defaultParams." + _ + ".matchValue"
|
|
136
|
-
}, {
|
|
137
|
-
default: l(() => [
|
|
138
|
-
e(R, {
|
|
139
|
-
modelValue: t.matchValue,
|
|
140
|
-
"onUpdate:modelValue": (r) => t.matchValue = r,
|
|
141
|
-
placeholder: "请选择",
|
|
142
|
-
filterable: "",
|
|
143
|
-
clearable: ""
|
|
144
|
-
}, {
|
|
145
|
-
default: l(() => [
|
|
146
|
-
(s(!0), y(U, null, w(u(O), (r, g) => (s(), b(S, {
|
|
147
|
-
key: g,
|
|
148
|
-
label: r.key,
|
|
149
|
-
value: r.value
|
|
150
|
-
}, null, 8, ["label", "value"]))), 128))
|
|
151
|
-
]),
|
|
152
|
-
_: 2
|
|
153
|
-
}, 1032, ["modelValue", "onUpdate:modelValue"])
|
|
154
|
-
]),
|
|
155
|
-
_: 2
|
|
156
|
-
}, 1032, ["prop"])
|
|
157
|
-
]),
|
|
158
|
-
_: 2
|
|
159
|
-
}, 1024),
|
|
160
|
-
e(n, { span: 12 }, {
|
|
161
|
-
default: l(() => [
|
|
162
|
-
e(d, {
|
|
163
|
-
label: "默认值",
|
|
164
|
-
rules: [{ required: !0, message: "必填项", trigger: "blur" }],
|
|
165
|
-
prop: "defaultParams." + _ + ".defaultValue"
|
|
166
|
-
}, {
|
|
167
|
-
default: l(() => [
|
|
168
|
-
e(p, {
|
|
169
|
-
modelValue: t.defaultValue,
|
|
170
|
-
"onUpdate:modelValue": (r) => t.defaultValue = r,
|
|
171
|
-
placeholder: "请输入",
|
|
172
|
-
clearable: ""
|
|
173
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
174
|
-
]),
|
|
175
|
-
_: 2
|
|
176
|
-
}, 1032, ["prop"])
|
|
177
|
-
]),
|
|
178
|
-
_: 2
|
|
179
|
-
}, 1024),
|
|
180
|
-
e(n, { span: 12 }, {
|
|
181
|
-
default: l(() => [
|
|
182
|
-
e(d, {
|
|
183
|
-
label: "提交类型",
|
|
184
|
-
rules: [{ required: !0, message: "必填项", trigger: "change" }],
|
|
185
|
-
prop: "defaultParams." + _ + ".submitFieldType"
|
|
186
|
-
}, {
|
|
187
|
-
default: l(() => [
|
|
188
|
-
e(R, {
|
|
189
|
-
modelValue: t.submitFieldType,
|
|
190
|
-
"onUpdate:modelValue": (r) => t.submitFieldType = r,
|
|
191
|
-
placeholder: "请选择",
|
|
192
|
-
filterable: "",
|
|
193
|
-
clearable: ""
|
|
194
|
-
}, {
|
|
195
|
-
default: l(() => [
|
|
196
|
-
(s(!0), y(U, null, w(u(I), (r, g) => (s(), b(S, {
|
|
197
|
-
key: g,
|
|
198
|
-
label: r.key,
|
|
199
|
-
value: r.value
|
|
200
|
-
}, null, 8, ["label", "value"]))), 128))
|
|
201
|
-
]),
|
|
202
|
-
_: 2
|
|
203
|
-
}, 1032, ["modelValue", "onUpdate:modelValue"])
|
|
204
|
-
]),
|
|
205
|
-
_: 2
|
|
206
|
-
}, 1032, ["prop"])
|
|
207
|
-
]),
|
|
208
|
-
_: 2
|
|
209
|
-
}, 1024),
|
|
210
|
-
e(C, { "content-position": "left" }),
|
|
211
|
-
e(n, {
|
|
212
|
-
class: "submit-operate",
|
|
213
|
-
span: 2
|
|
214
|
-
}, {
|
|
215
|
-
default: l(() => [
|
|
216
|
-
e(k, {
|
|
217
|
-
class: "match-opreate",
|
|
218
|
-
type: "danger",
|
|
219
|
-
icon: "Minus",
|
|
220
|
-
circle: "",
|
|
221
|
-
onClick: (r) => q(_)
|
|
222
|
-
}, null, 8, ["onClick"])
|
|
223
|
-
]),
|
|
224
|
-
_: 2
|
|
225
|
-
}, 1024)
|
|
226
|
-
]),
|
|
227
|
-
_: 2
|
|
228
|
-
}, 1024))), 128)),
|
|
229
|
-
e(c, null, {
|
|
230
|
-
default: l(() => [
|
|
231
|
-
e(n, { span: 4 }, {
|
|
232
|
-
default: l(() => [
|
|
233
|
-
e(d, { label: "多选列" }, {
|
|
234
|
-
default: l(() => [
|
|
235
|
-
e(f, {
|
|
236
|
-
modelValue: u(a).isCheckRow,
|
|
237
|
-
"onUpdate:modelValue": o[1] || (o[1] = (t) => u(a).isCheckRow = t)
|
|
238
|
-
}, null, 8, ["modelValue"])
|
|
239
|
-
]),
|
|
240
|
-
_: 1
|
|
241
|
-
})
|
|
242
|
-
]),
|
|
243
|
-
_: 1
|
|
244
|
-
}),
|
|
245
|
-
e(n, { span: 4 }, {
|
|
246
|
-
default: l(() => [
|
|
247
|
-
e(d, { label: "操作列" }, {
|
|
248
|
-
default: l(() => [
|
|
249
|
-
e(f, {
|
|
250
|
-
modelValue: u(a).isOperateRow,
|
|
251
|
-
"onUpdate:modelValue": o[2] || (o[2] = (t) => u(a).isOperateRow = t)
|
|
252
|
-
}, null, 8, ["modelValue"])
|
|
253
|
-
]),
|
|
254
|
-
_: 1
|
|
255
|
-
})
|
|
256
|
-
]),
|
|
257
|
-
_: 1
|
|
258
|
-
}),
|
|
259
|
-
e(n, { span: 4 }, {
|
|
260
|
-
default: l(() => [
|
|
261
|
-
e(d, { label: "分页" }, {
|
|
262
|
-
default: l(() => [
|
|
263
|
-
e(f, {
|
|
264
|
-
modelValue: u(a).isPagination,
|
|
265
|
-
"onUpdate:modelValue": o[3] || (o[3] = (t) => u(a).isPagination = t),
|
|
266
|
-
onChange: P
|
|
267
|
-
}, null, 8, ["modelValue"])
|
|
268
|
-
]),
|
|
269
|
-
_: 1
|
|
270
|
-
})
|
|
271
|
-
]),
|
|
272
|
-
_: 1
|
|
273
|
-
}),
|
|
274
|
-
e(n, { span: 4 }, {
|
|
275
|
-
default: l(() => [
|
|
276
|
-
e(d, { label: "序号列" }, {
|
|
277
|
-
default: l(() => [
|
|
278
|
-
e(f, {
|
|
279
|
-
modelValue: u(a).isSerialNumber,
|
|
280
|
-
"onUpdate:modelValue": o[4] || (o[4] = (t) => u(a).isSerialNumber = t)
|
|
281
|
-
}, null, 8, ["modelValue"])
|
|
282
|
-
]),
|
|
283
|
-
_: 1
|
|
284
|
-
})
|
|
285
|
-
]),
|
|
286
|
-
_: 1
|
|
287
|
-
}),
|
|
288
|
-
e(n, { span: 4 }, {
|
|
289
|
-
default: l(() => [
|
|
290
|
-
e(d, { label: "排序" }, {
|
|
291
|
-
default: l(() => [
|
|
292
|
-
e(f, {
|
|
293
|
-
modelValue: u(a).isSort,
|
|
294
|
-
"onUpdate:modelValue": o[5] || (o[5] = (t) => u(a).isSort = t)
|
|
295
|
-
}, null, 8, ["modelValue"])
|
|
296
|
-
]),
|
|
297
|
-
_: 1
|
|
298
|
-
})
|
|
299
|
-
]),
|
|
300
|
-
_: 1
|
|
301
|
-
}),
|
|
302
|
-
e(n, { span: 6 }, {
|
|
303
|
-
default: l(() => [
|
|
304
|
-
e(d, { label: "展/收查询条件" }, {
|
|
305
|
-
default: l(() => [
|
|
306
|
-
e(f, {
|
|
307
|
-
modelValue: u(a).isExpandQuery,
|
|
308
|
-
"onUpdate:modelValue": o[6] || (o[6] = (t) => u(a).isExpandQuery = t),
|
|
309
|
-
onChange: P
|
|
310
|
-
}, null, 8, ["modelValue"])
|
|
311
|
-
]),
|
|
312
|
-
_: 1
|
|
313
|
-
})
|
|
314
|
-
]),
|
|
315
|
-
_: 1
|
|
316
|
-
})
|
|
317
|
-
]),
|
|
318
|
-
_: 1
|
|
319
|
-
}),
|
|
320
|
-
e(c, null, {
|
|
321
|
-
default: l(() => [
|
|
322
|
-
u(a).isOperateRow ? (s(), b(n, {
|
|
323
|
-
key: 0,
|
|
324
|
-
span: 12
|
|
325
|
-
}, {
|
|
326
|
-
default: l(() => [
|
|
327
|
-
e(d, {
|
|
328
|
-
label: "操作列宽度",
|
|
329
|
-
"label-width": "140"
|
|
330
|
-
}, {
|
|
331
|
-
default: l(() => [
|
|
332
|
-
e(V, {
|
|
333
|
-
modelValue: u(a).tableOperateCellWidth,
|
|
334
|
-
"onUpdate:modelValue": o[7] || (o[7] = (t) => u(a).tableOperateCellWidth = t),
|
|
335
|
-
min: 120
|
|
336
|
-
}, null, 8, ["modelValue"])
|
|
337
|
-
]),
|
|
338
|
-
_: 1
|
|
339
|
-
})
|
|
340
|
-
]),
|
|
341
|
-
_: 1
|
|
342
|
-
})) : x("", !0),
|
|
343
|
-
u(a).isPagination ? (s(), b(n, {
|
|
344
|
-
key: 1,
|
|
345
|
-
span: 12
|
|
346
|
-
}, {
|
|
347
|
-
default: l(() => [
|
|
348
|
-
e(d, {
|
|
349
|
-
label: "分页页数",
|
|
350
|
-
prop: "pageSize",
|
|
351
|
-
"label-width": "140",
|
|
352
|
-
rules: [{ required: !0, message: "必填项", trigger: "blur" }]
|
|
353
|
-
}, {
|
|
354
|
-
default: l(() => [
|
|
355
|
-
e(V, {
|
|
356
|
-
modelValue: u(a).pageSize,
|
|
357
|
-
"onUpdate:modelValue": o[8] || (o[8] = (t) => u(a).pageSize = t),
|
|
358
|
-
min: 10
|
|
359
|
-
}, null, 8, ["modelValue"])
|
|
360
|
-
]),
|
|
361
|
-
_: 1
|
|
362
|
-
})
|
|
363
|
-
]),
|
|
364
|
-
_: 1
|
|
365
|
-
})) : x("", !0),
|
|
366
|
-
e(n, { span: 12 }, {
|
|
367
|
-
default: l(() => [
|
|
368
|
-
e(d, {
|
|
369
|
-
label: "查询条件label宽度",
|
|
370
|
-
"label-width": "140"
|
|
371
|
-
}, {
|
|
372
|
-
default: l(() => [
|
|
373
|
-
e(V, {
|
|
374
|
-
modelValue: u(a).tableQueryLabelWidth,
|
|
375
|
-
"onUpdate:modelValue": o[9] || (o[9] = (t) => u(a).tableQueryLabelWidth = t),
|
|
376
|
-
min: 80
|
|
377
|
-
}, null, 8, ["modelValue"])
|
|
378
|
-
]),
|
|
379
|
-
_: 1
|
|
380
|
-
})
|
|
381
|
-
]),
|
|
382
|
-
_: 1
|
|
383
|
-
}),
|
|
384
|
-
e(n, { span: 12 }, {
|
|
385
|
-
default: l(() => [
|
|
386
|
-
e(d, {
|
|
387
|
-
label: "查询条件列数",
|
|
388
|
-
"label-width": "140"
|
|
389
|
-
}, {
|
|
390
|
-
default: l(() => [
|
|
391
|
-
e(V, {
|
|
392
|
-
modelValue: u(a).tableQueryRowWidth,
|
|
393
|
-
"onUpdate:modelValue": o[10] || (o[10] = (t) => u(a).tableQueryRowWidth = t),
|
|
394
|
-
min: 1
|
|
395
|
-
}, null, 8, ["modelValue"])
|
|
396
|
-
]),
|
|
397
|
-
_: 1
|
|
398
|
-
})
|
|
399
|
-
]),
|
|
400
|
-
_: 1
|
|
401
|
-
})
|
|
402
|
-
]),
|
|
403
|
-
_: 1
|
|
404
|
-
})
|
|
405
|
-
]),
|
|
406
|
-
_: 1
|
|
407
|
-
}, 8, ["model"])
|
|
408
|
-
]),
|
|
409
|
-
_: 1
|
|
410
|
-
});
|
|
411
|
-
};
|
|
412
|
-
}
|
|
413
|
-
}, Z = /* @__PURE__ */ M(A, [["__scopeId", "data-v-ada54450"]]);
|
|
414
|
-
export {
|
|
415
|
-
Z as default
|
|
416
|
-
};
|