super-page-designer 2.1.21 → 2.1.25

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.
Files changed (38) hide show
  1. package/dist/es/components/design/utils/assemblys-config.js +18 -0
  2. package/dist/es/components/design/utils/data-table-util.js +5 -5
  3. package/dist/es/components/design/utils/page-explore-util.js +1 -1
  4. package/dist/es/components/design/utils/page-table-util.js +11 -0
  5. package/dist/es/components/design/views/assemblys/button/button/button-attr-base.vue.js +21 -34
  6. package/dist/es/components/design/views/assemblys/button/component/combination.vue.js +1 -1
  7. package/dist/es/components/design/views/assemblys/button/component/set-dialog.vue.js +4 -2
  8. package/dist/es/components/design/views/assemblys/button/dropdown/dropdown-attr-base.vue.js +10 -23
  9. package/dist/es/components/design/views/assemblys/button/export-pdf/exportpdf-attr-base.vue.js +15 -28
  10. package/dist/es/components/design/views/assemblys/button/print-label/printlabel-attr-base.vue.js +19 -32
  11. package/dist/es/components/design/views/assemblys/chart/common/common-attr-data.vue.js +28 -3
  12. package/dist/es/components/design/views/assemblys/common/{common-i18n-setting.vue.js → common-title-setting.vue.js} +7 -8
  13. package/dist/es/components/design/views/assemblys/common/common-title-setting.vue2.js +4 -0
  14. package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +1 -1
  15. package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue2.js +1 -1
  16. package/dist/es/components/design/views/assemblys/form/checkbox/checkbox-attr-base.vue.js +9 -22
  17. package/dist/es/components/design/views/assemblys/form/date-picker/datepicker-attr-base.vue.js +21 -34
  18. package/dist/es/components/design/views/assemblys/form/date-picker/datepicker-design.vue2.js +23 -31
  19. package/dist/es/components/design/views/assemblys/form/dept-tree/depttree-attr-base.vue.js +11 -23
  20. package/dist/es/components/design/views/assemblys/form/divider/divider-attr-base.vue.js +2 -2
  21. package/dist/es/components/design/views/assemblys/form/file-upload/fileupload-attr-base.vue.js +9 -22
  22. package/dist/es/components/design/views/assemblys/form/input-number/input-number-attr-base.vue.js +15 -28
  23. package/dist/es/components/design/views/assemblys/form/input-text/inputtext-attr-base.vue.js +13 -26
  24. package/dist/es/components/design/views/assemblys/form/label/label-attr-base.vue.js +6 -19
  25. package/dist/es/components/design/views/assemblys/form/link/link-attr-base.vue.js +10 -23
  26. package/dist/es/components/design/views/assemblys/form/radio/radio-attr-base.vue.js +9 -22
  27. package/dist/es/components/design/views/assemblys/form/rich-text/richtext-attr-base.vue.js +9 -22
  28. package/dist/es/components/design/views/assemblys/form/select/select-attr-base.vue.js +15 -28
  29. package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-base.vue.js +4 -17
  30. package/dist/es/components/design/views/assemblys/form/switch/switch-attr-base.vue.js +16 -29
  31. package/dist/es/components/design/views/assemblys/form/tag/tag-attr-base.vue.js +9 -22
  32. package/dist/es/components/design/views/assemblys/form/textarea/textarea-attr-base.vue.js +19 -32
  33. package/dist/es/components/design/views/design/page-event/page-event-container.vue.js +1 -1
  34. package/dist/es/components/design/views/design/view/assemblys-container-list.vue.js +10 -2
  35. package/dist/es/components/design/views/design/view/components/quick-add-dialog.vue.js +2 -0
  36. package/dist/es/style.css +74 -74
  37. package/package.json +4 -4
  38. package/dist/es/components/design/views/assemblys/common/common-i18n-setting.vue2.js +0 -4
@@ -1,7 +1,8 @@
1
- import { defineComponent, ref, watch, resolveComponent, openBlock, createBlock, normalizeClass, normalizeStyle, withCtx, createElementBlock, Fragment, createTextVNode, toDisplayString, createCommentVNode } from "vue";
1
+ import { defineComponent, ref, watch, resolveComponent, openBlock, createBlock, normalizeClass, normalizeStyle, withCtx, createElementBlock, Fragment, createTextVNode, toDisplayString, createCommentVNode, createVNode, unref } from "vue";
2
2
  import { caculateDetailComponentStyle, caculateComponentProps } from "../../../../utils/form-design-util.js";
3
3
  import _sfc_main$1 from "../common/title-suffix-element.vue.js";
4
4
  import "super-page-runtime";
5
+ import { Clock, Calendar } from "@element-plus/icons-vue";
5
6
  const _sfc_main = /* @__PURE__ */ defineComponent({
6
7
  __name: "datepicker-design",
7
8
  props: {
@@ -29,7 +30,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
29
30
  },
30
31
  { immediate: true }
31
32
  );
32
- const shortCuts = ref([]);
33
+ ref([]);
33
34
  function caculateDateProps() {
34
35
  let propBase = props.configure && props.configure.props ? props.configure.props.base : {};
35
36
  propBase = propBase ? propBase : {};
@@ -84,8 +85,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
84
85
  { immediate: true }
85
86
  );
86
87
  return (_ctx, _cache) => {
87
- const _component_el_time_picker = resolveComponent("el-time-picker");
88
- const _component_el_date_picker = resolveComponent("el-date-picker");
88
+ const _component_el_icon = resolveComponent("el-icon");
89
+ const _component_el_input = resolveComponent("el-input");
89
90
  const _component_el_form_item = resolveComponent("el-form-item");
90
91
  return openBlock(), createBlock(_component_el_form_item, {
91
92
  required: designProperty.value.required,
@@ -107,39 +108,30 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
107
108
  ], 4)) : createCommentVNode("", true)
108
109
  ]),
109
110
  default: withCtx(() => [
110
- designProperty.value.dateType == "time" || designProperty.value.dateType == "timerange" ? (openBlock(), createBlock(_component_el_time_picker, {
111
- key: 0,
112
- "is-range": designProperty.value.dateType == "timerange",
113
- "range-separator": "-",
114
- clearable: designProperty.value.clearable,
111
+ createVNode(_component_el_input, {
115
112
  disabled: designProperty.value.state === "disabled",
116
113
  readonly: "",
117
114
  size: designProperty.value.size,
118
- style: { "width": "100%" },
119
- placeholder: designProperty.value.placeholder,
120
- "start-placeholder": designProperty.value.placeholder,
121
- "end-placeholder": designProperty.value.endPlaceholder,
122
- format: designProperty.value.format,
123
- modelValue: designProperty.value.value,
124
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => designProperty.value.value = $event),
125
- shortcuts: shortCuts.value,
126
- type: designProperty.value.dateType
127
- }, null, 8, ["is-range", "clearable", "disabled", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "modelValue", "shortcuts", "type"])) : (openBlock(), createBlock(_component_el_date_picker, {
128
- key: 1,
129
115
  clearable: designProperty.value.clearable,
130
- disabled: designProperty.value.state === "disabled",
131
- readonly: "",
132
- size: designProperty.value.size,
133
- style: { "width": "100%" },
134
116
  placeholder: designProperty.value.placeholder,
135
- "start-placeholder": designProperty.value.placeholder,
136
- "end-placeholder": designProperty.value.endPlaceholder,
137
- format: designProperty.value.format,
138
117
  modelValue: designProperty.value.value,
139
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => designProperty.value.value = $event),
140
- shortcuts: shortCuts.value,
141
- type: designProperty.value.dateType
142
- }, null, 8, ["clearable", "disabled", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "modelValue", "shortcuts", "type"]))
118
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => designProperty.value.value = $event)
119
+ }, {
120
+ prefix: withCtx(() => [
121
+ designProperty.value.dateType == "timerange" || designProperty.value.dateType == "time" ? (openBlock(), createBlock(_component_el_icon, { key: 0 }, {
122
+ default: withCtx(() => [
123
+ createVNode(unref(Clock))
124
+ ]),
125
+ _: 1
126
+ })) : (openBlock(), createBlock(_component_el_icon, { key: 1 }, {
127
+ default: withCtx(() => [
128
+ createVNode(unref(Calendar))
129
+ ]),
130
+ _: 1
131
+ }))
132
+ ]),
133
+ _: 1
134
+ }, 8, ["disabled", "size", "clearable", "placeholder", "modelValue"])
143
135
  ]),
144
136
  _: 1
145
137
  }, 8, ["required", "class", "label-width", "style"]);
@@ -8,7 +8,7 @@ import _sfc_main$3 from "./depttree-autoset.vue.js";
8
8
  import { OrganizationInput } from "agilebuilder-ui";
9
9
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
10
10
  import _sfc_main$4 from "../common/title-suffix.vue.js";
11
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
11
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
12
12
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
13
13
  const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
14
14
  const _hoisted_3 = { style: { "padding": "8px 0px 0px 0px" } };
@@ -75,7 +75,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
75
75
  default: withCtx(() => [
76
76
  createVNode(_component_el_collapse, {
77
77
  modelValue: openCollapseItems.value,
78
- "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => openCollapseItems.value = $event),
78
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => openCollapseItems.value = $event),
79
79
  style: { "margin-top": "6px" }
80
80
  }, {
81
81
  default: withCtx(() => [
@@ -230,20 +230,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
230
230
  ]),
231
231
  _: 1
232
232
  })) : createCommentVNode("", true),
233
- withDirectives(createVNode(_component_el_form_item, { class: "amb-design-attr-item" }, {
234
- default: withCtx(() => [
235
- createVNode(_component_el_input, {
236
- modelValue: __props.configure.props.base.title,
237
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.title = $event),
238
- placeholder: "请输入"
239
- }, null, 8, ["modelValue"])
240
- ]),
241
- _: 1
242
- }, 512), [
243
- [vShow, __props.configure.props.base.tittleShow]
244
- ]),
245
233
  withDirectives(createVNode(_component_el_form_item, {
246
- label: "国际化标题",
234
+ label: "标题",
247
235
  class: "amb-design-attr-item"
248
236
  }, {
249
237
  default: withCtx(() => [
@@ -263,7 +251,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
263
251
  default: withCtx(() => [
264
252
  createVNode(_component_el_input_number, {
265
253
  modelValue: __props.configure.props.base.titleWidth,
266
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.titleWidth = $event),
254
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.titleWidth = $event),
267
255
  style: { "width": "100%" },
268
256
  min: 0,
269
257
  max: 200,
@@ -281,7 +269,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
281
269
  default: withCtx(() => [
282
270
  createVNode(_component_el_radio_group, {
283
271
  modelValue: __props.configure.props.base.treeMultiple,
284
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.treeMultiple = $event),
272
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.treeMultiple = $event),
285
273
  class: "ml-4"
286
274
  }, {
287
275
  default: withCtx(() => [
@@ -310,7 +298,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
310
298
  default: withCtx(() => [
311
299
  createVNode(_component_el_input, {
312
300
  modelValue: __props.configure.props.base.separator,
313
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.separator = $event),
301
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.separator = $event),
314
302
  placeholder: ","
315
303
  }, null, 8, ["modelValue"])
316
304
  ]),
@@ -325,7 +313,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
325
313
  default: withCtx(() => [
326
314
  createVNode(_component_el_radio_group, {
327
315
  modelValue: __props.configure.props.base.size,
328
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.size = $event),
316
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.size = $event),
329
317
  class: "ml-4"
330
318
  }, {
331
319
  default: withCtx(() => [
@@ -360,7 +348,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
360
348
  default: withCtx(() => [
361
349
  createVNode(_component_el_radio_group, {
362
350
  modelValue: __props.configure.props.base.state,
363
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.state = $event),
351
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.state = $event),
364
352
  class: "ml-4"
365
353
  }, {
366
354
  default: withCtx(() => [
@@ -395,7 +383,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
395
383
  createElementVNode("div", _hoisted_2, [
396
384
  createVNode(_component_el_radio_group, {
397
385
  modelValue: __props.configure.props.base.deptScope,
398
- "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.deptScope = $event)
386
+ "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.deptScope = $event)
399
387
  }, {
400
388
  default: withCtx(() => [
401
389
  createVNode(_component_el_form_item, { class: "amb-design-attr-item" }, {
@@ -432,7 +420,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
432
420
  multiple: true,
433
421
  treeType: "DeptTree",
434
422
  value: __props.configure.props.base.deptScopeDepts,
435
- "onUpdate:value": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.deptScopeDepts = $event),
423
+ "onUpdate:value": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.deptScopeDepts = $event),
436
424
  models: __props.configure.props.base,
437
425
  fields: [{ type: "code", model: "deptScopeCodes" }],
438
426
  size: "small",
@@ -472,7 +460,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
472
460
  default: withCtx(() => [
473
461
  createVNode(_component_el_checkbox, {
474
462
  modelValue: __props.configure.props.verification.required,
475
- "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.verification.required = $event),
463
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.verification.required = $event),
476
464
  label: "必填"
477
465
  }, null, 8, ["modelValue"])
478
466
  ]),
@@ -1,7 +1,7 @@
1
1
  import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createTextVNode } from "vue";
2
2
  import _sfc_main$2 from "../../common/common-attr-size.vue.js";
3
3
  import BindVariable from "../../common/common-variable-bind.vue.js";
4
- import _sfc_main$1 from "../../common/common-i18n-setting.vue.js";
4
+ import _sfc_main$1 from "../../common/common-title-setting.vue.js";
5
5
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
6
6
  const _sfc_main = /* @__PURE__ */ defineComponent({
7
7
  __name: "divider-attr-base",
@@ -78,7 +78,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
78
78
  _: 1
79
79
  }),
80
80
  createVNode(_component_el_form_item, {
81
- label: "国际化标题",
81
+ label: "标题",
82
82
  class: "amb-design-attr-item"
83
83
  }, {
84
84
  default: withCtx(() => [
@@ -5,7 +5,7 @@ import _sfc_main$4 from "../../common/common-attr-size.vue.js";
5
5
  import _sfc_main$3 from "../common/uploading.vue.js";
6
6
  import BindVariable from "../../common/common-variable-bind.vue.js";
7
7
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
8
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
8
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
9
9
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
10
10
  const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
11
11
  const _sfc_main = /* @__PURE__ */ defineComponent({
@@ -74,7 +74,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
74
74
  default: withCtx(() => [
75
75
  createVNode(_component_el_collapse, {
76
76
  modelValue: openCollapseItems.value,
77
- "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => openCollapseItems.value = $event),
77
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => openCollapseItems.value = $event),
78
78
  style: { "margin-top": "6px" }
79
79
  }, {
80
80
  default: withCtx(() => [
@@ -200,21 +200,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
200
200
  withDirectives(createVNode(_component_el_form_item, {
201
201
  label: "标题",
202
202
  class: "amb-design-attr-item"
203
- }, {
204
- default: withCtx(() => [
205
- createVNode(_component_el_input, {
206
- modelValue: __props.configure.props.base.title,
207
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.title = $event),
208
- placeholder: "请输入"
209
- }, null, 8, ["modelValue"])
210
- ]),
211
- _: 1
212
- }, 512), [
213
- [vShow, __props.configure.props.base.tittleShow]
214
- ]),
215
- createVNode(_component_el_form_item, {
216
- label: "国际化标题",
217
- class: "amb-design-attr-item"
218
203
  }, {
219
204
  default: withCtx(() => [
220
205
  createVNode(_sfc_main$2, {
@@ -223,7 +208,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
223
208
  }, null, 8, ["configure", "systemCode"])
224
209
  ]),
225
210
  _: 1
226
- }),
211
+ }, 512), [
212
+ [vShow, __props.configure.props.base.tittleShow]
213
+ ]),
227
214
  withDirectives(createVNode(_component_el_form_item, {
228
215
  label: "标题宽度",
229
216
  class: "amb-design-attr-item"
@@ -231,7 +218,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
231
218
  default: withCtx(() => [
232
219
  createVNode(_component_el_input_number, {
233
220
  modelValue: __props.configure.props.base.titleWidth,
234
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.titleWidth = $event),
221
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.titleWidth = $event),
235
222
  style: { "width": "100%" },
236
223
  min: 0,
237
224
  max: 200,
@@ -249,7 +236,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
249
236
  default: withCtx(() => [
250
237
  createVNode(_component_el_input, {
251
238
  modelValue: __props.configure.props.base.placeholder,
252
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.placeholder = $event),
239
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.placeholder = $event),
253
240
  placeholder: "请输入"
254
241
  }, null, 8, ["modelValue"])
255
242
  ]),
@@ -262,7 +249,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
262
249
  default: withCtx(() => [
263
250
  createVNode(_component_el_radio_group, {
264
251
  modelValue: __props.configure.props.base.state,
265
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.state = $event),
252
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.state = $event),
266
253
  class: "ml-4"
267
254
  }, {
268
255
  default: withCtx(() => [
@@ -358,7 +345,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
358
345
  default: withCtx(() => [
359
346
  createVNode(_component_el_checkbox, {
360
347
  modelValue: __props.configure.props.verification.required,
361
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.verification.required = $event),
348
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.verification.required = $event),
362
349
  label: "必填"
363
350
  }, null, 8, ["modelValue"])
364
351
  ]),
@@ -5,7 +5,7 @@ import _sfc_main$4 from "../../common/common-attr-size.vue.js";
5
5
  import BindVariable from "../../common/common-variable-bind.vue.js";
6
6
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
7
7
  import _sfc_main$3 from "../common/title-suffix.vue.js";
8
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
8
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
9
9
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
10
10
  const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
11
11
  const _sfc_main = /* @__PURE__ */ defineComponent({
@@ -65,7 +65,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
65
65
  default: withCtx(() => [
66
66
  createVNode(_component_el_collapse, {
67
67
  modelValue: openCollapseItems.value,
68
- "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => openCollapseItems.value = $event),
68
+ "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => openCollapseItems.value = $event),
69
69
  style: { "margin-top": "6px" }
70
70
  }, {
71
71
  default: withCtx(() => [
@@ -190,21 +190,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
190
190
  withDirectives(createVNode(_component_el_form_item, {
191
191
  label: "标题",
192
192
  class: "amb-design-attr-item"
193
- }, {
194
- default: withCtx(() => [
195
- createVNode(_component_el_input, {
196
- modelValue: __props.configure.props.base.title,
197
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.title = $event),
198
- placeholder: "请输入"
199
- }, null, 8, ["modelValue"])
200
- ]),
201
- _: 1
202
- }, 512), [
203
- [vShow, __props.configure.props.base.tittleShow]
204
- ]),
205
- createVNode(_component_el_form_item, {
206
- label: "国际化标题",
207
- class: "amb-design-attr-item"
208
193
  }, {
209
194
  default: withCtx(() => [
210
195
  createVNode(_sfc_main$2, {
@@ -213,7 +198,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
213
198
  }, null, 8, ["configure", "systemCode"])
214
199
  ]),
215
200
  _: 1
216
- }),
201
+ }, 512), [
202
+ [vShow, __props.configure.props.base.tittleShow]
203
+ ]),
217
204
  withDirectives(createVNode(_component_el_form_item, {
218
205
  label: "标题宽度",
219
206
  class: "amb-design-attr-item"
@@ -221,7 +208,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
221
208
  default: withCtx(() => [
222
209
  createVNode(_component_el_input_number, {
223
210
  modelValue: __props.configure.props.base.titleWidth,
224
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.titleWidth = $event),
211
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.titleWidth = $event),
225
212
  style: { "width": "100%" },
226
213
  min: 0,
227
214
  max: 200,
@@ -239,7 +226,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
239
226
  default: withCtx(() => [
240
227
  createVNode(_component_el_input, {
241
228
  modelValue: __props.configure.props.base.placeholder,
242
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.placeholder = $event),
229
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.placeholder = $event),
243
230
  modelModifiers: { number: true },
244
231
  placeholder: "请输入"
245
232
  }, null, 8, ["modelValue"])
@@ -253,7 +240,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
253
240
  default: withCtx(() => [
254
241
  createVNode(_component_el_input, {
255
242
  modelValue: __props.configure.props.base.min,
256
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.min = $event),
243
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.min = $event),
257
244
  modelModifiers: { number: true },
258
245
  type: "number",
259
246
  placeholder: "请输入"
@@ -268,7 +255,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
268
255
  default: withCtx(() => [
269
256
  createVNode(_component_el_input, {
270
257
  modelValue: __props.configure.props.base.max,
271
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.max = $event),
258
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.max = $event),
272
259
  modelModifiers: { number: true },
273
260
  type: "number",
274
261
  placeholder: "请输入"
@@ -283,7 +270,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
283
270
  default: withCtx(() => [
284
271
  createVNode(_component_el_input, {
285
272
  modelValue: __props.configure.props.base.step,
286
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.step = $event),
273
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.step = $event),
287
274
  modelModifiers: { number: true },
288
275
  type: "number",
289
276
  placeholder: "请输入"
@@ -298,7 +285,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
298
285
  default: withCtx(() => [
299
286
  createVNode(_component_el_select, {
300
287
  modelValue: __props.configure.props.base.precision,
301
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.precision = $event),
288
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.precision = $event),
302
289
  modelModifiers: { number: true },
303
290
  placeholder: "请选择"
304
291
  }, {
@@ -323,7 +310,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
323
310
  default: withCtx(() => [
324
311
  createVNode(_component_el_radio_group, {
325
312
  modelValue: __props.configure.props.base.showButton,
326
- "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.showButton = $event),
313
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.showButton = $event),
327
314
  class: "ml-4"
328
315
  }, {
329
316
  default: withCtx(() => [
@@ -352,7 +339,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
352
339
  default: withCtx(() => [
353
340
  createVNode(_component_el_radio_group, {
354
341
  modelValue: __props.configure.props.base.size,
355
- "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.size = $event),
342
+ "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.size = $event),
356
343
  class: "ml-4"
357
344
  }, {
358
345
  default: withCtx(() => [
@@ -387,7 +374,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
387
374
  default: withCtx(() => [
388
375
  createVNode(_component_el_radio_group, {
389
376
  modelValue: __props.configure.props.base.state,
390
- "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.state = $event),
377
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.state = $event),
391
378
  class: "ml-4"
392
379
  }, {
393
380
  default: withCtx(() => [
@@ -437,7 +424,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
437
424
  default: withCtx(() => [
438
425
  createVNode(_component_el_checkbox, {
439
426
  modelValue: __props.configure.props.verification.required,
440
- "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.verification.required = $event),
427
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.verification.required = $event),
441
428
  label: "必填"
442
429
  }, null, 8, ["modelValue"])
443
430
  ]),
@@ -9,7 +9,7 @@ import BindVariable from "../../common/common-variable-bind.vue.js";
9
9
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
10
10
  import _sfc_main$5 from "../common/suffixmodule.vue.js";
11
11
  import _sfc_main$3 from "../common/title-suffix.vue.js";
12
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
12
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
13
13
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
14
14
  const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
15
15
  const _hoisted_3 = { style: { "padding": "8px 0px 0px 0px" } };
@@ -89,7 +89,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
89
89
  default: withCtx(() => [
90
90
  createVNode(_component_el_collapse, {
91
91
  modelValue: openCollapseItems.value,
92
- "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => openCollapseItems.value = $event),
92
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => openCollapseItems.value = $event),
93
93
  style: { "margin-top": "6px" }
94
94
  }, {
95
95
  default: withCtx(() => [
@@ -214,21 +214,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
214
214
  withDirectives(createVNode(_component_el_form_item, {
215
215
  label: "标题",
216
216
  class: "amb-design-attr-item"
217
- }, {
218
- default: withCtx(() => [
219
- createVNode(_component_el_input, {
220
- modelValue: __props.configure.props.base.title,
221
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.title = $event),
222
- placeholder: "请输入"
223
- }, null, 8, ["modelValue"])
224
- ]),
225
- _: 1
226
- }, 512), [
227
- [vShow, __props.configure.props.base.tittleShow]
228
- ]),
229
- createVNode(_component_el_form_item, {
230
- label: "国际化标题",
231
- class: "amb-design-attr-item"
232
217
  }, {
233
218
  default: withCtx(() => [
234
219
  createVNode(_sfc_main$2, {
@@ -237,7 +222,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
237
222
  }, null, 8, ["configure", "systemCode"])
238
223
  ]),
239
224
  _: 1
240
- }),
225
+ }, 512), [
226
+ [vShow, __props.configure.props.base.tittleShow]
227
+ ]),
241
228
  withDirectives(createVNode(_component_el_form_item, {
242
229
  label: "标题宽度",
243
230
  class: "amb-design-attr-item"
@@ -245,7 +232,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
245
232
  default: withCtx(() => [
246
233
  createVNode(_component_el_input_number, {
247
234
  modelValue: __props.configure.props.base.titleWidth,
248
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.titleWidth = $event),
235
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.titleWidth = $event),
249
236
  style: { "width": "100%" },
250
237
  min: 0,
251
238
  max: 200,
@@ -263,7 +250,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
263
250
  default: withCtx(() => [
264
251
  createVNode(_component_el_input, {
265
252
  modelValue: __props.configure.props.base.placeholder,
266
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.placeholder = $event),
253
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.placeholder = $event),
267
254
  placeholder: "请输入"
268
255
  }, null, 8, ["modelValue"])
269
256
  ]),
@@ -276,7 +263,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
276
263
  default: withCtx(() => [
277
264
  createVNode(_component_el_radio_group, {
278
265
  modelValue: __props.configure.props.base.clearable,
279
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.clearable = $event),
266
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.clearable = $event),
280
267
  class: "ml-4"
281
268
  }, {
282
269
  default: withCtx(() => [
@@ -305,7 +292,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
305
292
  default: withCtx(() => [
306
293
  createVNode(_component_el_switch, {
307
294
  modelValue: __props.configure.props.base.showInputNum,
308
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.showInputNum = $event)
295
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.showInputNum = $event)
309
296
  }, null, 8, ["modelValue"])
310
297
  ]),
311
298
  _: 1
@@ -317,7 +304,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
317
304
  default: withCtx(() => [
318
305
  createVNode(_component_el_radio_group, {
319
306
  modelValue: __props.configure.props.base.size,
320
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.size = $event),
307
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.size = $event),
321
308
  class: "ml-4"
322
309
  }, {
323
310
  default: withCtx(() => [
@@ -352,7 +339,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
352
339
  default: withCtx(() => [
353
340
  createVNode(_component_el_radio_group, {
354
341
  modelValue: __props.configure.props.base.state,
355
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.state = $event),
342
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.state = $event),
356
343
  class: "ml-4"
357
344
  }, {
358
345
  default: withCtx(() => [
@@ -404,7 +391,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
404
391
  default: withCtx(() => [
405
392
  createVNode(_component_el_radio_group, {
406
393
  modelValue: __props.configure.props.scan.enable,
407
- "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.scan.enable = $event),
394
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.scan.enable = $event),
408
395
  class: "ml-4"
409
396
  }, {
410
397
  default: withCtx(() => [
@@ -433,7 +420,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
433
420
  default: withCtx(() => [
434
421
  createVNode(_component_el_button, {
435
422
  type: "primary",
436
- onClick: _cache[11] || (_cache[11] = ($event) => BarCodeRuleOff.value = true)
423
+ onClick: _cache[10] || (_cache[10] = ($event) => BarCodeRuleOff.value = true)
437
424
  }, {
438
425
  default: withCtx(() => [
439
426
  createTextVNode("添加")
@@ -6,7 +6,7 @@ import _sfc_main$4 from "../common/pre-suffix.vue.js";
6
6
  import BindVariable from "../../common/common-variable-bind.vue.js";
7
7
  import _sfc_main$3 from "../common/data-format.vue.js";
8
8
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
9
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
9
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
10
10
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
11
11
  const _sfc_main = /* @__PURE__ */ defineComponent({
12
12
  __name: "label-attr-base",
@@ -65,7 +65,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
65
65
  default: withCtx(() => [
66
66
  createVNode(_component_el_collapse, {
67
67
  modelValue: openCollapseItems.value,
68
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => openCollapseItems.value = $event),
68
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => openCollapseItems.value = $event),
69
69
  style: { "margin-top": "6px" }
70
70
  }, {
71
71
  default: withCtx(() => [
@@ -189,21 +189,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
189
189
  withDirectives(createVNode(_component_el_form_item, {
190
190
  label: "标题",
191
191
  class: "amb-design-attr-item"
192
- }, {
193
- default: withCtx(() => [
194
- createVNode(_component_el_input, {
195
- modelValue: __props.configure.props.base.title,
196
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.title = $event),
197
- placeholder: "请输入"
198
- }, null, 8, ["modelValue"])
199
- ]),
200
- _: 1
201
- }, 512), [
202
- [vShow, __props.configure.props.base.tittleShow]
203
- ]),
204
- createVNode(_component_el_form_item, {
205
- label: "国际化标题",
206
- class: "amb-design-attr-item"
207
192
  }, {
208
193
  default: withCtx(() => [
209
194
  createVNode(_sfc_main$2, {
@@ -212,7 +197,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
212
197
  }, null, 8, ["configure", "systemCode"])
213
198
  ]),
214
199
  _: 1
215
- }),
200
+ }, 512), [
201
+ [vShow, __props.configure.props.base.tittleShow]
202
+ ]),
216
203
  withDirectives(createVNode(_component_el_form_item, {
217
204
  label: "标题宽度",
218
205
  class: "amb-design-attr-item"
@@ -220,7 +207,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
220
207
  default: withCtx(() => [
221
208
  createVNode(_component_el_input_number, {
222
209
  modelValue: __props.configure.props.base.titleWidth,
223
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.titleWidth = $event),
210
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.titleWidth = $event),
224
211
  style: { "width": "100%" },
225
212
  min: 0,
226
213
  max: 200,