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
@@ -2646,6 +2646,8 @@ const assemblyGroups = [
2646
2646
  name: "chart-column-line",
2647
2647
  label: "柱/折图",
2648
2648
  icon: chartColumn,
2649
+ initializationQuery: true,
2650
+ exportable: true,
2649
2651
  design: {
2650
2652
  style: {
2651
2653
  "margin-bottom": "18px"
@@ -2666,6 +2668,8 @@ const assemblyGroups = [
2666
2668
  name: "chart-pie",
2667
2669
  label: "饼图",
2668
2670
  icon: chartPie,
2671
+ initializationQuery: true,
2672
+ exportable: true,
2669
2673
  design: {
2670
2674
  style: {
2671
2675
  "margin-bottom": "18px",
@@ -2703,6 +2707,8 @@ const assemblyGroups = [
2703
2707
  name: "chart-gauge",
2704
2708
  label: "仪表盘",
2705
2709
  icon: chartGauge,
2710
+ initializationQuery: true,
2711
+ exportable: true,
2706
2712
  design: {
2707
2713
  style: {
2708
2714
  "margin-bottom": "18px",
@@ -2740,6 +2746,8 @@ const assemblyGroups = [
2740
2746
  name: "chart-radar",
2741
2747
  label: "雷达图",
2742
2748
  icon: chartRader,
2749
+ initializationQuery: true,
2750
+ exportable: true,
2743
2751
  design: {
2744
2752
  style: {
2745
2753
  "margin-bottom": "18px",
@@ -2777,6 +2785,8 @@ const assemblyGroups = [
2777
2785
  name: "chart-scatter",
2778
2786
  label: "散点图",
2779
2787
  icon: chartScatter,
2788
+ initializationQuery: true,
2789
+ exportable: true,
2780
2790
  design: {
2781
2791
  style: {
2782
2792
  "margin-bottom": "18px",
@@ -3110,6 +3120,14 @@ const standardButtonOperations = [
3110
3120
  {
3111
3121
  label: "统计",
3112
3122
  value: "queryCharts"
3123
+ },
3124
+ {
3125
+ label: "重置",
3126
+ value: "resetCharts"
3127
+ },
3128
+ {
3129
+ label: "导出",
3130
+ value: "exportCharts"
3113
3131
  }
3114
3132
  ]
3115
3133
  }
@@ -12,22 +12,22 @@ function formatConditionList(conditionList, attributeMap, fieldMap) {
12
12
  if (conditionList && conditionList.length > 0) {
13
13
  for (var i = 0; i < conditionList.length; i++) {
14
14
  const item = conditionList[i];
15
- if (item && item.propName && attributeMap) {
15
+ if (item && item.propDbName && attributeMap) {
16
16
  const operatorsArr = getOperators(
17
- fieldMap[item.propName]
17
+ fieldMap[item.propDbName]
18
18
  );
19
19
  if (operatorsArr && operatorsArr.length > 0) {
20
20
  const operator = operatorsArr.filter((operItem) => {
21
21
  return operItem.name === item.operator;
22
22
  });
23
23
  returnStr += item.leftBracket;
24
- if (fieldMap[item.propName] && fieldMap[item.propName].alias) {
25
- returnStr += fieldMap[item.propName].alias + " ";
24
+ if (fieldMap[item.propDbName] && fieldMap[item.propDbName].alias) {
25
+ returnStr += fieldMap[item.propDbName].alias + " ";
26
26
  }
27
27
  if (operator && operator.length > 0) {
28
28
  returnStr += operator[0].label + " ";
29
29
  }
30
- returnStr += item.defaultValue + item.rightBracket + " ";
30
+ returnStr += item.propValue + item.rightBracket + " ";
31
31
  if (item.joinSign) {
32
32
  if (item.joinSign === "or") {
33
33
  returnStr += "或者";
@@ -21,7 +21,7 @@ function convertToExploreTreeDatas(designItems, searchItemName, cachePageItemMap
21
21
  }
22
22
  function convertPageItemToTreeItem(pageItem, searchItemName, cachePageItemMap, eventResult) {
23
23
  const children = [];
24
- if (pageItem.items && pageItem.items.length > 0) {
24
+ if (pageItem.items && pageItem.items.length > 0 && pageItem.name != "table") {
25
25
  for (let index = 0; index < pageItem.items.length; index++) {
26
26
  const childItem = convertPageItemToTreeItem(pageItem.items[index], searchItemName, cachePageItemMap);
27
27
  if (childItem != null) {
@@ -400,6 +400,7 @@ function getControlConfig(item) {
400
400
  return null;
401
401
  }
402
402
  function getPropsFormat(item) {
403
+ var _a, _b;
403
404
  if (!item.props.format) {
404
405
  return null;
405
406
  } else {
@@ -417,6 +418,16 @@ function getPropsFormat(item) {
417
418
  format.type = item.props.format.type;
418
419
  format.formatConfigJson = JSON.stringify(item.props.format);
419
420
  return JSON.stringify(format);
421
+ } else if (item.props.format.type === "files") {
422
+ const format = { type: item.props.format.type };
423
+ const fileSet = {};
424
+ fileSet.showNameData = { name: item.props.format.showName, dbName: (_a = item.props.format.showName) == null ? void 0 : _a.toUpperCase() };
425
+ fileSet.serverNameData = {
426
+ name: item.props.format.serverName,
427
+ dbName: (_b = item.props.format.serverName) == null ? void 0 : _b.toUpperCase()
428
+ };
429
+ format.fileSet = fileSet;
430
+ return JSON.stringify(format);
420
431
  }
421
432
  return JSON.stringify(item.props.format);
422
433
  }
@@ -6,7 +6,7 @@ import _sfc_main$3 from "../../common/common-icon-bind.vue.js";
6
6
  import http from "agilebuilder-ui/src/utils/request";
7
7
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
8
8
  import _sfc_main$4 from "../../form/common/suffixmodule.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 _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
12
12
  const _hoisted_3 = { style: { "padding": "8px 0px 0px 0px" } };
@@ -95,7 +95,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
95
95
  default: withCtx(() => [
96
96
  createVNode(_component_el_collapse, {
97
97
  modelValue: openCollapseItems.value,
98
- "onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => openCollapseItems.value = $event),
98
+ "onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => openCollapseItems.value = $event),
99
99
  style: { "margin-top": "6px" }
100
100
  }, {
101
101
  default: withCtx(() => [
@@ -172,19 +172,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
172
172
  createVNode(_component_el_form_item, {
173
173
  label: "标题",
174
174
  class: "amb-design-attr-item"
175
- }, {
176
- default: withCtx(() => [
177
- createVNode(_component_el_input, {
178
- modelValue: __props.configure.props.base.title,
179
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.title = $event),
180
- placeholder: "请输入"
181
- }, null, 8, ["modelValue"])
182
- ]),
183
- _: 1
184
- }),
185
- createVNode(_component_el_form_item, {
186
- label: "国际化标题",
187
- class: "amb-design-attr-item"
188
175
  }, {
189
176
  default: withCtx(() => [
190
177
  createVNode(_sfc_main$2, {
@@ -201,7 +188,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
201
188
  default: withCtx(() => [
202
189
  createVNode(_component_el_radio_group, {
203
190
  modelValue: __props.configure.props.base.size,
204
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.size = $event),
191
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.size = $event),
205
192
  class: "ml-4"
206
193
  }, {
207
194
  default: withCtx(() => [
@@ -236,7 +223,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
236
223
  default: withCtx(() => [
237
224
  createVNode(_component_el_radio_group, {
238
225
  modelValue: __props.configure.props.base.state,
239
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.state = $event),
226
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.state = $event),
240
227
  class: "ml-4"
241
228
  }, {
242
229
  default: withCtx(() => [
@@ -276,7 +263,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
276
263
  default: withCtx(() => [
277
264
  createVNode(_component_el_select, {
278
265
  modelValue: __props.configure.props.base.type,
279
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.type = $event),
266
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.type = $event),
280
267
  class: "ml-4",
281
268
  clearable: ""
282
269
  }, {
@@ -316,7 +303,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
316
303
  key: __props.configure.uuid,
317
304
  iconType: __props.configure.props.base.iconType,
318
305
  iconValue: __props.configure.props.base.iconValue,
319
- "onUpdate:modelValue": _cache[7] || (_cache[7] = (iconType, iconValue) => afterBindIcon(iconType, iconValue))
306
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = (iconType, iconValue) => afterBindIcon(iconType, iconValue))
320
307
  }, null, 8, ["iconType", "iconValue"]))
321
308
  ]),
322
309
  _: 1
@@ -328,7 +315,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
328
315
  default: withCtx(() => [
329
316
  createVNode(_component_el_radio_group, {
330
317
  modelValue: __props.configure.props.base.iconPosition,
331
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.iconPosition = $event),
318
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.iconPosition = $event),
332
319
  class: "ml-4"
333
320
  }, {
334
321
  default: withCtx(() => [
@@ -359,7 +346,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
359
346
  default: withCtx(() => [
360
347
  createVNode(_component_el_radio_group, {
361
348
  modelValue: __props.configure.props.base.text,
362
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.text = $event),
349
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.text = $event),
363
350
  class: "ml-4"
364
351
  }, {
365
352
  default: withCtx(() => [
@@ -388,7 +375,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
388
375
  default: withCtx(() => [
389
376
  createVNode(_component_el_radio_group, {
390
377
  modelValue: __props.configure.props.base.plain,
391
- "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.plain = $event),
378
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.plain = $event),
392
379
  class: "ml-4"
393
380
  }, {
394
381
  default: withCtx(() => [
@@ -417,7 +404,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
417
404
  default: withCtx(() => [
418
405
  createVNode(_component_el_radio_group, {
419
406
  modelValue: __props.configure.props.base.round,
420
- "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.round = $event),
407
+ "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.round = $event),
421
408
  class: "ml-4"
422
409
  }, {
423
410
  default: withCtx(() => [
@@ -446,7 +433,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
446
433
  default: withCtx(() => [
447
434
  createVNode(_component_el_radio_group, {
448
435
  modelValue: __props.configure.props.base.loading,
449
- "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.loading = $event),
436
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.loading = $event),
450
437
  class: "ml-4"
451
438
  }, {
452
439
  default: withCtx(() => [
@@ -475,7 +462,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
475
462
  default: withCtx(() => [
476
463
  createVNode(_component_el_radio_group, {
477
464
  modelValue: __props.configure.props.base.focus,
478
- "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.base.focus = $event),
465
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.focus = $event),
479
466
  class: "ml-4"
480
467
  }, {
481
468
  default: withCtx(() => [
@@ -504,7 +491,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
504
491
  default: withCtx(() => [
505
492
  createVNode(_component_el_radio_group, {
506
493
  modelValue: __props.configure.props.base.originalType,
507
- "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => __props.configure.props.base.originalType = $event),
494
+ "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.base.originalType = $event),
508
495
  class: "ml-4"
509
496
  }, {
510
497
  default: withCtx(() => [
@@ -566,7 +553,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
566
553
  default: withCtx(() => [
567
554
  createVNode(_component_el_switch, {
568
555
  modelValue: __props.configure.props.base.isNeedValueMapping,
569
- "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.base.isNeedValueMapping = $event),
556
+ "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => __props.configure.props.base.isNeedValueMapping = $event),
570
557
  size: "default"
571
558
  }, null, 8, ["modelValue"])
572
559
  ]),
@@ -579,7 +566,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
579
566
  default: withCtx(() => [
580
567
  createVNode(_component_el_switch, {
581
568
  modelValue: __props.configure.props.base.isPermission,
582
- "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.configure.props.base.isPermission = $event),
569
+ "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.base.isPermission = $event),
583
570
  size: "default"
584
571
  }, null, 8, ["modelValue"])
585
572
  ]),
@@ -592,7 +579,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
592
579
  default: withCtx(() => [
593
580
  createVNode(_component_el_switch, {
594
581
  modelValue: __props.configure.props.base.isAsync,
595
- "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => __props.configure.props.base.isAsync = $event),
582
+ "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.configure.props.base.isAsync = $event),
596
583
  size: "default"
597
584
  }, null, 8, ["modelValue"])
598
585
  ]),
@@ -605,7 +592,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
605
592
  default: withCtx(() => [
606
593
  createVNode(_component_el_switch, {
607
594
  modelValue: __props.configure.props.base.isEnableRequired,
608
- "onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => __props.configure.props.base.isEnableRequired = $event),
595
+ "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => __props.configure.props.base.isEnableRequired = $event),
609
596
  size: "default"
610
597
  }, null, 8, ["modelValue"])
611
598
  ]),
@@ -618,7 +605,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
618
605
  default: withCtx(() => [
619
606
  createVNode(_component_el_switch, {
620
607
  modelValue: __props.configure.props.base.isSafeDelete,
621
- "onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => __props.configure.props.base.isSafeDelete = $event),
608
+ "onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => __props.configure.props.base.isSafeDelete = $event),
622
609
  size: "default"
623
610
  }, null, 8, ["modelValue"])
624
611
  ]),
@@ -631,7 +618,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
631
618
  default: withCtx(() => [
632
619
  createVNode(_component_el_select, {
633
620
  modelValue: templateFileUuids.value,
634
- "onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => templateFileUuids.value = $event),
621
+ "onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => templateFileUuids.value = $event),
635
622
  filterable: "",
636
623
  multiple: "",
637
624
  onChange: templateFilesChange
@@ -657,7 +644,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
657
644
  default: withCtx(() => [
658
645
  createVNode(_component_el_select, {
659
646
  modelValue: __props.configure.props.base.conditionsForExecution,
660
- "onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => __props.configure.props.base.conditionsForExecution = $event)
647
+ "onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => __props.configure.props.base.conditionsForExecution = $event)
661
648
  }, {
662
649
  default: withCtx(() => [
663
650
  createVNode(_component_el_option, {
@@ -685,7 +672,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
685
672
  default: withCtx(() => [
686
673
  createVNode(_component_el_select, {
687
674
  modelValue: __props.configure.props.base.tableUuid,
688
- "onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => __props.configure.props.base.tableUuid = $event),
675
+ "onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => __props.configure.props.base.tableUuid = $event),
689
676
  clearable: "",
690
677
  filterable: ""
691
678
  }, {
@@ -9,7 +9,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
9
9
  // JSON格式数组
10
10
  conditionList: {
11
11
  type: String,
12
- default: "[]"
12
+ default: null
13
13
  },
14
14
  list: {
15
15
  type: Array,
@@ -36,12 +36,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
36
36
  }
37
37
  function saveCondition(table) {
38
38
  tableData.value[tableSelectIndex.value]["conditionList"] = table;
39
+ console.log("%c描述-091521", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", tableData.value);
39
40
  }
40
41
  function saveData() {
41
42
  $emit("save", tableData.value);
42
43
  $emit("close");
43
44
  }
44
45
  function opencombinationDialog(row, index) {
46
+ console.log("%c描述-100626", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", row);
45
47
  conditionList.value = row.conditionList;
46
48
  tableSelectIndex.value = index;
47
49
  combinationVisible.value = true;
@@ -246,12 +248,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
246
248
  }, 8, ["data"]),
247
249
  combinationVisible.value ? (openBlock(), createBlock(_sfc_main$1, {
248
250
  key: 0,
249
- conditionList: conditionList.value,
251
+ list: conditionList.value,
250
252
  fieldNameList: __props.pageDesign.modelFields,
251
253
  fieldMap: __props.pageDesign.modelFieldsMap,
252
254
  onSave: saveCondition,
253
255
  onClose: closeCombination
254
- }, null, 8, ["conditionList", "fieldNameList", "fieldMap"])) : createCommentVNode("", true)
256
+ }, null, 8, ["list", "fieldNameList", "fieldMap"])) : createCommentVNode("", true)
255
257
  ]),
256
258
  _: 1
257
259
  });
@@ -2,7 +2,7 @@ import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx
2
2
  import _sfc_main$3 from "../../form/common/row-ul-li.vue.js";
3
3
  import BindVariable from "../../common/common-variable-bind.vue.js";
4
4
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
5
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
5
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
6
6
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
7
7
  const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
8
8
  const _sfc_main = /* @__PURE__ */ defineComponent({
@@ -46,7 +46,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
46
46
  default: withCtx(() => [
47
47
  createVNode(_component_el_collapse, {
48
48
  modelValue: openCollapseItems.value,
49
- "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => openCollapseItems.value = $event),
49
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => openCollapseItems.value = $event),
50
50
  style: { "margin-top": "6px" }
51
51
  }, {
52
52
  default: withCtx(() => [
@@ -100,19 +100,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
100
100
  createVNode(_component_el_form_item, {
101
101
  label: "标题",
102
102
  class: "amb-design-attr-item"
103
- }, {
104
- default: withCtx(() => [
105
- createVNode(_component_el_input, {
106
- modelValue: __props.configure.props.base.title,
107
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.base.title = $event),
108
- placeholder: "请输入"
109
- }, null, 8, ["modelValue"])
110
- ]),
111
- _: 1
112
- }),
113
- createVNode(_component_el_form_item, {
114
- label: "国际化标题",
115
- class: "amb-design-attr-item"
116
103
  }, {
117
104
  default: withCtx(() => [
118
105
  createVNode(_sfc_main$2, {
@@ -129,7 +116,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
129
116
  default: withCtx(() => [
130
117
  createVNode(_component_el_radio_group, {
131
118
  modelValue: __props.configure.props.dataOrigin.optionValueSetType,
132
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.dataOrigin.optionValueSetType = $event)
119
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.dataOrigin.optionValueSetType = $event)
133
120
  }, {
134
121
  default: withCtx(() => [
135
122
  createVNode(_component_el_radio, { value: "static" }, {
@@ -184,7 +171,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
184
171
  default: withCtx(() => [
185
172
  createVNode(_component_el_radio_group, {
186
173
  modelValue: __props.configure.props.base.size,
187
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.size = $event),
174
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.base.size = $event),
188
175
  class: "ml-4"
189
176
  }, {
190
177
  default: withCtx(() => [
@@ -219,7 +206,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
219
206
  default: withCtx(() => [
220
207
  createVNode(_component_el_radio_group, {
221
208
  modelValue: __props.configure.props.base.state,
222
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.state = $event),
209
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.state = $event),
223
210
  class: "ml-4"
224
211
  }, {
225
212
  default: withCtx(() => [
@@ -259,7 +246,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
259
246
  default: withCtx(() => [
260
247
  createVNode(_component_el_radio_group, {
261
248
  modelValue: __props.configure.props.base.trigger,
262
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.trigger = $event),
249
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.trigger = $event),
263
250
  class: "ml-4"
264
251
  }, {
265
252
  default: withCtx(() => [
@@ -288,7 +275,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
288
275
  default: withCtx(() => [
289
276
  createVNode(_component_el_radio_group, {
290
277
  modelValue: __props.configure.props.base.triggerElement,
291
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.triggerElement = $event),
278
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.triggerElement = $event),
292
279
  class: "ml-4"
293
280
  }, {
294
281
  default: withCtx(() => [
@@ -318,7 +305,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
318
305
  default: withCtx(() => [
319
306
  createVNode(_component_el_select, {
320
307
  modelValue: __props.configure.props.base.buttonType,
321
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.buttonType = $event),
308
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.buttonType = $event),
322
309
  class: "ml-4"
323
310
  }, {
324
311
  default: withCtx(() => [
@@ -356,7 +343,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
356
343
  default: withCtx(() => [
357
344
  createVNode(_component_el_radio_group, {
358
345
  modelValue: __props.configure.props.base.splitButton,
359
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.splitButton = $event),
346
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.splitButton = $event),
360
347
  class: "ml-4"
361
348
  }, {
362
349
  default: withCtx(() => [
@@ -385,7 +372,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
385
372
  default: withCtx(() => [
386
373
  createVNode(_component_el_select, {
387
374
  modelValue: __props.configure.props.base.placement,
388
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.placement = $event),
375
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.placement = $event),
389
376
  clearable: "",
390
377
  class: "ml-4"
391
378
  }, {
@@ -3,7 +3,7 @@ import { getFormComponentOptions } from "../../../../utils/assemblys-config.js";
3
3
  import _sfc_main$3 from "../../common/common-icon-bind.vue.js";
4
4
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
5
5
  import http from "agilebuilder-ui/src/utils/request";
6
- import _sfc_main$2 from "../../common/common-i18n-setting.vue.js";
6
+ import _sfc_main$2 from "../../common/common-title-setting.vue.js";
7
7
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
8
8
  const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
9
9
  const _hoisted_3 = { style: { "padding": "8px 0px 0px 0px" } };
@@ -80,7 +80,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
80
80
  default: withCtx(() => [
81
81
  createVNode(_component_el_collapse, {
82
82
  modelValue: openCollapseItems.value,
83
- "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => openCollapseItems.value = $event),
83
+ "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => openCollapseItems.value = $event),
84
84
  style: { "margin-top": "6px" }
85
85
  }, {
86
86
  default: withCtx(() => [
@@ -157,19 +157,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
157
157
  createVNode(_component_el_form_item, {
158
158
  label: "标题",
159
159
  class: "amb-design-attr-item"
160
- }, {
161
- default: withCtx(() => [
162
- createVNode(_component_el_input, {
163
- modelValue: __props.configure.props.base.title,
164
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.title = $event),
165
- placeholder: "请输入"
166
- }, null, 8, ["modelValue"])
167
- ]),
168
- _: 1
169
- }),
170
- createVNode(_component_el_form_item, {
171
- label: "国际化标题",
172
- class: "amb-design-attr-item"
173
160
  }, {
174
161
  default: withCtx(() => [
175
162
  createVNode(_sfc_main$2, {
@@ -186,7 +173,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
186
173
  default: withCtx(() => [
187
174
  createVNode(_component_el_radio_group, {
188
175
  modelValue: __props.configure.props.base.size,
189
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.size = $event),
176
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.size = $event),
190
177
  class: "ml-4"
191
178
  }, {
192
179
  default: withCtx(() => [
@@ -221,7 +208,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
221
208
  default: withCtx(() => [
222
209
  createVNode(_component_el_radio_group, {
223
210
  modelValue: __props.configure.props.base.state,
224
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.state = $event),
211
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.state = $event),
225
212
  class: "ml-4"
226
213
  }, {
227
214
  default: withCtx(() => [
@@ -250,7 +237,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
250
237
  default: withCtx(() => [
251
238
  createVNode(_component_el_select, {
252
239
  modelValue: templateFileUuids.value,
253
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => templateFileUuids.value = $event),
240
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => templateFileUuids.value = $event),
254
241
  multiple: "",
255
242
  onChange: templateFilesChange
256
243
  }, {
@@ -286,7 +273,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
286
273
  default: withCtx(() => [
287
274
  createVNode(_component_el_select, {
288
275
  modelValue: __props.configure.props.base.type,
289
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.type = $event),
276
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.type = $event),
290
277
  class: "ml-4",
291
278
  clearable: ""
292
279
  }, {
@@ -326,7 +313,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
326
313
  key: __props.configure.uuid,
327
314
  iconType: __props.configure.props.base.iconType,
328
315
  iconValue: __props.configure.props.base.iconValue,
329
- "onUpdate:modelValue": _cache[8] || (_cache[8] = (iconType, iconValue) => afterBindIcon(iconType, iconValue))
316
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = (iconType, iconValue) => afterBindIcon(iconType, iconValue))
330
317
  }, null, 8, ["iconType", "iconValue"]))
331
318
  ]),
332
319
  _: 1
@@ -338,7 +325,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
338
325
  default: withCtx(() => [
339
326
  createVNode(_component_el_radio_group, {
340
327
  modelValue: __props.configure.props.base.iconPosition,
341
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.iconPosition = $event),
328
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.iconPosition = $event),
342
329
  class: "ml-4"
343
330
  }, {
344
331
  default: withCtx(() => [
@@ -369,7 +356,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
369
356
  default: withCtx(() => [
370
357
  createVNode(_component_el_radio_group, {
371
358
  modelValue: __props.configure.props.base.text,
372
- "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.text = $event),
359
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.text = $event),
373
360
  class: "ml-4"
374
361
  }, {
375
362
  default: withCtx(() => [
@@ -398,7 +385,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
398
385
  default: withCtx(() => [
399
386
  createVNode(_component_el_radio_group, {
400
387
  modelValue: __props.configure.props.base.plain,
401
- "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.plain = $event),
388
+ "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.configure.props.base.plain = $event),
402
389
  class: "ml-4"
403
390
  }, {
404
391
  default: withCtx(() => [
@@ -427,7 +414,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
427
414
  default: withCtx(() => [
428
415
  createVNode(_component_el_radio_group, {
429
416
  modelValue: __props.configure.props.base.round,
430
- "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.round = $event),
417
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.base.round = $event),
431
418
  class: "ml-4"
432
419
  }, {
433
420
  default: withCtx(() => [
@@ -456,7 +443,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
456
443
  default: withCtx(() => [
457
444
  createVNode(_component_el_radio_group, {
458
445
  modelValue: __props.configure.props.base.loading,
459
- "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.base.loading = $event),
446
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.loading = $event),
460
447
  class: "ml-4"
461
448
  }, {
462
449
  default: withCtx(() => [
@@ -485,7 +472,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
485
472
  default: withCtx(() => [
486
473
  createVNode(_component_el_radio_group, {
487
474
  modelValue: __props.configure.props.base.focus,
488
- "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => __props.configure.props.base.focus = $event),
475
+ "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.base.focus = $event),
489
476
  class: "ml-4"
490
477
  }, {
491
478
  default: withCtx(() => [
@@ -514,7 +501,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
514
501
  default: withCtx(() => [
515
502
  createVNode(_component_el_radio_group, {
516
503
  modelValue: __props.configure.props.base.originalType,
517
- "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.base.originalType = $event),
504
+ "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => __props.configure.props.base.originalType = $event),
518
505
  class: "ml-4"
519
506
  }, {
520
507
  default: withCtx(() => [
@@ -560,7 +547,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
560
547
  default: withCtx(() => [
561
548
  createVNode(_component_el_switch, {
562
549
  modelValue: __props.configure.props.base.isPermission,
563
- "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.configure.props.base.isPermission = $event),
550
+ "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.base.isPermission = $event),
564
551
  size: "default"
565
552
  }, null, 8, ["modelValue"])
566
553
  ]),