super-page-runtime 2.3.3 → 2.3.4-sit1

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 (35) hide show
  1. package/dist/es/components/runtime/utils/api/page-expose-util.js +53 -53
  2. package/dist/es/components/runtime/utils/events/event-util.js +3 -3
  3. package/dist/es/components/runtime/utils/events/print-label.js +25 -26
  4. package/dist/es/components/runtime/utils/events/standard-event.js +18 -18
  5. package/dist/es/components/runtime/utils/events/validator-util.js +1 -1
  6. package/dist/es/components/runtime/utils/page-init-util.js +1 -2
  7. package/dist/es/components/runtime/utils/page-store.js +10 -10
  8. package/dist/es/components/runtime/utils/table-utils.js +1 -1
  9. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +6 -10
  10. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +6 -8
  11. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +7 -12
  12. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +17 -19
  13. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -2
  14. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +3 -3
  15. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +34 -34
  16. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +10 -12
  17. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +9 -10
  18. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +1 -1
  19. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +32 -32
  20. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +27 -27
  21. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +49 -47
  22. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +3 -5
  23. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -1
  24. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -1
  25. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +2 -2
  26. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +15 -15
  27. package/dist/es/components/runtime/views/home-chart.vue.d.ts +3 -3
  28. package/dist/es/components/runtime/views/home-chart.vue.js +24 -22
  29. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -1
  30. package/dist/es/components/runtime/views/super-page.vue.js +1 -1
  31. package/dist/es/components/runtime/views/super-page.vue2.js +50 -52
  32. package/dist/es/i18n/langs/cn.js +1 -1
  33. package/dist/es/i18n/langs/en.js +1 -1
  34. package/dist/es/style.css +87 -87
  35. package/package.json +2 -2
@@ -1,22 +1,22 @@
1
- import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, getVariableValue as n, setVariableValue as o, setValueForVariableName as i } from "../page-helper-util.js";
1
+ import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, getVariableValue as n, setVariableValue as i, setValueForVariableName as o } from "../page-helper-util.js";
2
2
  import { getComponentRef as a, getComponentRefByCode as r } from "../global-refs.js";
3
3
  import s from "../eventBus.js";
4
4
  import l from "agilebuilder-ui/src/utils/request";
5
5
  import { getFormData as c, getAdditionalParamMap as u, refreshPage as f } from "../events/standard-event.js";
6
- import { dynamicControlTableEdit as m, disabledAllFields as d, updateFormItemEditState as p } from "../events/validator-util.js";
6
+ import { dynamicControlTableEdit as m, disabledAllFields as p, updateFormItemEditState as d } from "../events/validator-util.js";
7
7
  import { deepCopy as g, getBaseUrl as y } from "../common-util.js";
8
8
  import { replacePrefix as b, isMobileBrowser as h } from "agilebuilder-ui/src/utils/common-util";
9
9
  import { getFormModelFields as E, getModelFields as P } from "../page-init-util.js";
10
10
  import { getCustomFunc as C } from "../events/event-util.js";
11
- const $ = { showElement: function(e2, t2, n2) {
11
+ const k = { showElement: function(e2, t2, n2) {
12
12
  n2 ? j(e2, "showElement", t2) : t2.forEach((t3) => {
13
13
  const n3 = r(e2, t3);
14
- n3 ? n3.show() : console.error(`未找到code为${t3}的组件`);
14
+ n3 && n3.show();
15
15
  });
16
16
  }, hideElement: function(e2, t2, n2) {
17
17
  n2 ? j(e2, "hideElement", t2) : t2.forEach((t3) => {
18
18
  const n3 = r(e2, t3);
19
- n3 ? n3.hide() : console.error(`未找到code为${t3}的组件`);
19
+ n3 && n3.hide();
20
20
  });
21
21
  }, enableElement: function(e2, t2, n2) {
22
22
  n2 ? j(e2, "enableElement", t2) : t2.forEach((t3) => {
@@ -24,7 +24,7 @@ const $ = { showElement: function(e2, t2, n2) {
24
24
  if (n3) {
25
25
  const e3 = n3.getConfigure();
26
26
  e3 && e3.runtime.props && (e3.runtime.props.state = "enabled");
27
- } else console.error(`未找到code为${t3}的组件`);
27
+ }
28
28
  });
29
29
  }, disableElement: function(e2, t2, n2) {
30
30
  n2 ? j(e2, "disableElement", t2) : t2.forEach((t3) => {
@@ -32,111 +32,111 @@ const $ = { showElement: function(e2, t2, n2) {
32
32
  if (n3) {
33
33
  const e3 = n3.getConfigure();
34
34
  e3 && e3.runtime.props && (e3.runtime.props.state = "disabled");
35
- } else console.error(`未找到code为${t3}的组件`);
35
+ }
36
36
  });
37
37
  }, setEntityDataValue: function(e2, t2) {
38
38
  Object.keys(t2).forEach((n2) => {
39
- i(e2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", t2[n2]);
39
+ o(e2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", t2[n2]);
40
40
  });
41
41
  }, setEntityPageValue: function(e2, t2) {
42
42
  Object.keys(t2).forEach((n2) => {
43
- i(e2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", t2[n2]);
43
+ o(e2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", t2[n2]);
44
44
  });
45
45
  }, setEntityValueByType: function(e2, t2, n2) {
46
- Object.keys(n2).forEach((o2) => {
47
- i(e2.entity, o2.startsWith("${") ? o2 : "${" + t2 + "." + o2 + "}", n2[o2]);
46
+ Object.keys(n2).forEach((i2) => {
47
+ o(e2.entity, i2.startsWith("${") ? i2 : "${" + t2 + "." + i2 + "}", n2[i2]);
48
48
  });
49
49
  }, dynamicControlFormEdit: function(e2, t2, n2) {
50
- n2 ? j(e2, "dynamicControlFormEdit", t2) : p(e2, t2);
50
+ n2 ? j(e2, "dynamicControlFormEdit", t2) : d(e2, t2);
51
51
  }, disabledAllFields(e2) {
52
- d(e2);
52
+ p(e2);
53
53
  }, dynamicControlTableEdit(e2, t2, n2) {
54
54
  m(e2, t2, n2);
55
55
  }, executeServiceFlow: function(e2, t2, n2) {
56
- const o2 = e2.code;
56
+ const i2 = e2.code;
57
57
  n2 || (n2 = { entity: e2.entity.data, serviceVariables: {}, requestParams: u(e2), taskParamMap: e2.entity.task, dynamicDimensionValue: [], dynamicSortValue: "" }), n2.entity || (n2.entity = e2.entity.data), n2.requestParams || (n2.requestParams = u(e2)), n2.taskParamMap || (n2.taskParamMap = e2.entity.task);
58
- const i2 = e2.backendUrl, a2 = y(i2, e2.isTest);
59
- return l.post(`${a2}/dsc/service-flow/execute/${o2}/${t2}`, n2);
58
+ const o2 = e2.backendUrl, a2 = y(o2, e2.isTest);
59
+ return l.post(`${a2}/dsc/service-flow/execute/${i2}/${t2}`, n2);
60
60
  }, openPage: function(e2, t2) {
61
61
  s.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
62
62
  }, refreshPage: function(e2, t2) {
63
63
  f(e2, t2);
64
64
  }, refreshSubTableHandle: function(e2, t2) {
65
65
  let n2;
66
- const o2 = r(e2, t2);
67
- if (o2) {
68
- const e3 = o2.getConfigure();
69
- e3 && e3.uuid && e3.name && "table" === e3.name && (n2 = e3.uuid);
70
- }
71
- n2 ? s.$emit("_refreshSubTableHandle_" + n2) : console.error("tableUUid is undefined");
72
- }, refreshChildData(e2, t2, n2) {
73
- let o2;
74
66
  const i2 = r(e2, t2);
75
67
  if (i2) {
76
68
  const e3 = i2.getConfigure();
77
- e3 && e3.uuid && e3.name && "table" === e3.name && (o2 = e3.uuid);
69
+ e3 && e3.uuid && e3.name && "table" === e3.name && (n2 = e3.uuid);
78
70
  }
79
- o2 ? s.$emit("_refreshChildData_" + o2, n2) : console.error("tableUUid is undefined");
71
+ n2 && s.$emit("_refreshSubTableHandle_" + n2);
72
+ }, refreshChildData(e2, t2, n2) {
73
+ let i2;
74
+ const o2 = r(e2, t2);
75
+ if (o2) {
76
+ const e3 = o2.getConfigure();
77
+ e3 && e3.uuid && e3.name && "table" === e3.name && (i2 = e3.uuid);
78
+ }
79
+ i2 && s.$emit("_refreshChildData_" + i2, n2);
80
80
  }, getServerConfigValue: (e2) => window.$vueApp.config.globalProperties[e2], getBackendUrl: (e2) => y(e2.backendUrl, false), getPlateBackendUrl: () => window.$vueApp.config.globalProperties.baseAPI, getEntity: (e2) => e2.entity.data, getEntityValue: (e2, t2) => e2.entity.data ? e2.entity.data[t2] : null, getPageData: (e2) => e2.entity.page, getPageDataValue: (e2, t2) => e2.entity.page ? e2.entity.page[t2] : null, getAdditionalParams: (e2) => u(e2), getAdditionalParamValue(e2, t2) {
81
81
  const n2 = u(e2);
82
82
  return n2 ? n2[t2] : null;
83
- }, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(i2) {
83
+ }, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(o2) {
84
84
  var _a, _b, _c, _d, _e, _f, _g, _h;
85
- const r2 = i2.entity ? i2.entity : {}, s2 = g(r2), l2 = e(i2);
85
+ const r2 = o2.entity ? o2.entity : {}, s2 = g(r2), l2 = e(o2);
86
86
  for (const e2 in l2) {
87
- const r3 = t(i2, e2), l3 = a(i2, e2);
87
+ const r3 = t(o2, e2), l3 = a(o2, e2);
88
88
  if (l3) {
89
89
  const e3 = l3.getConfigure();
90
90
  if (e3 && ((_b = (_a = e3.props) == null ? void 0 : _a.dataOrigin) == null ? void 0 : _b.optionValueSetType) && ("static" === ((_d = (_c = e3.props) == null ? void 0 : _c.dataOrigin) == null ? void 0 : _d.optionValueSetType) || "optionGroup" === ((_f = (_e = e3.props) == null ? void 0 : _e.dataOrigin) == null ? void 0 : _f.optionValueSetType))) if (e3.name && ("select" === e3.name && ((_h = (_g = e3.props) == null ? void 0 : _g.base) == null ? void 0 : _h.multiple) || "checkbox" === e3.name)) {
91
- const t2 = E(i2, e3), a2 = n(s2, t2);
91
+ const t2 = E(o2, e3), a2 = n(s2, t2);
92
92
  if (a2) {
93
- const e4 = v(a2.split(","), r3);
94
- o(s2, t2, e4);
93
+ const e4 = V(a2.split(","), r3);
94
+ i(s2, t2, e4);
95
95
  }
96
96
  } else {
97
- const t2 = E(i2, e3), a2 = v(n(s2, t2), r3);
98
- o(s2, t2, a2);
97
+ const t2 = E(o2, e3), a2 = V(n(s2, t2), r3);
98
+ i(s2, t2, a2);
99
99
  }
100
100
  }
101
101
  }
102
- const c2 = i2.listCodesMap;
102
+ const c2 = o2.listCodesMap;
103
103
  for (const e2 in c2) {
104
104
  let t2;
105
105
  if (e2.indexOf("__") > 0 && (t2 = e2.substring(e2.lastIndexOf("__") + 2)), t2) {
106
- const o2 = a(i2, t2);
107
- if (o2) {
108
- const t3 = o2.getConfigure(), i3 = t3.code ? t3.code : e2, a2 = P(t3, i3), r3 = n(s2, a2);
109
- k(o2.getTableSelectOptions(e2), r3);
106
+ const i2 = a(o2, t2);
107
+ if (i2) {
108
+ const t3 = i2.getConfigure(), o3 = t3.code ? t3.code : e2, a2 = P(t3, o3), r3 = n(s2, a2);
109
+ v(i2.getTableSelectOptions(e2), r3);
110
110
  }
111
111
  }
112
112
  }
113
113
  return s2.data;
114
114
  }, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => C(e2, t2), replaceUrlPrefix: (e2) => b(e2) };
115
- function k(e2, t2) {
115
+ function v(e2, t2) {
116
116
  e2 && t2 && t2.forEach((t3) => {
117
117
  Object.keys(e2).forEach((n2) => {
118
- const o2 = t3[n2], i2 = e2[n2], a2 = i2.options, r2 = i2.column;
118
+ const i2 = t3[n2], o2 = e2[n2], a2 = o2.options, r2 = o2.column;
119
119
  let s2;
120
120
  if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
121
- if (o2) {
122
- s2 = v(o2.split(","), a2);
121
+ if (i2) {
122
+ s2 = V(i2.split(","), a2);
123
123
  }
124
- } else s2 = v(o2, a2);
124
+ } else s2 = V(i2, a2);
125
125
  t3[n2] = s2;
126
126
  });
127
127
  });
128
128
  }
129
- function v(e2, t2) {
129
+ function V(e2, t2) {
130
130
  let n2;
131
- return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((o2) => {
132
- n2 = n2 + V(e2, t2) + ",";
133
- }), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = V(e2, t2))), n2;
131
+ return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((i2) => {
132
+ n2 = n2 + $(e2, t2) + ",";
133
+ }), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = $(e2, t2))), n2;
134
134
  }
135
- function V(e2, t2) {
135
+ function $(e2, t2) {
136
136
  let n2 = e2;
137
- if (null != e2 && t2) for (let o2 = 0; o2 < t2.length; o2++) {
138
- const i2 = t2[o2].value, a2 = t2[o2].label ? t2[o2].label : t2[o2].name;
139
- if (e2 + "" == i2 + "" && null != a2) {
137
+ if (null != e2 && t2) for (let i2 = 0; i2 < t2.length; i2++) {
138
+ const o2 = t2[i2].value, a2 = t2[i2].label ? t2[i2].label : t2[i2].name;
139
+ if (e2 + "" == o2 + "" && null != a2) {
140
140
  n2 = a2;
141
141
  break;
142
142
  }
@@ -147,5 +147,5 @@ function j(e2, t2, n2) {
147
147
  e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = n2;
148
148
  }
149
149
  export {
150
- $ as functions
150
+ k as functions
151
151
  };
@@ -146,10 +146,10 @@ function F(e2, t2, i2) {
146
146
  r3 ? n(r3) ? r3.then((n2) => {
147
147
  n2 ? A(e2, t2, c2, i2) : e2.canClick = true;
148
148
  }).catch((n2) => {
149
- console.error(n2), e2.canClick = true;
149
+ e2.canClick = true;
150
150
  }) : A(e2, t2, c2, i2) : e2.canClick = true;
151
151
  }).catch((n2) => {
152
- console.error(n2), e2.canClick = true;
152
+ e2.canClick = true;
153
153
  });
154
154
  }
155
155
  function T(e2, n2, t2, i2, o2) {
@@ -214,7 +214,7 @@ function A(e2, t2, i2, o2) {
214
214
  n(a2) ? a2.then((n2) => {
215
215
  n2 ? q(e3, t3, o3, c2, n2, u3) : e3.canClick = true;
216
216
  }).catch((n2) => {
217
- console.error(n2), e3.canClick = true;
217
+ e3.canClick = true;
218
218
  }) : q(e3, t3, o3, c2, a2, u3);
219
219
  } else q(e3, t3, o3, false, null, u3);
220
220
  }(e2, t2, i2, o2);
@@ -3,27 +3,26 @@ import { hiprint as t, disAutoConnect as n } from "vue-plugin-hiprint";
3
3
  import { generateCodeByRule as o } from "../barcode-util.js";
4
4
  function a(n2, a2) {
5
5
  e.post(window.$vueApp.config.globalProperties.baseAPI + "/dc/print-models/by-codes", [a2]).then((e2) => {
6
- const a3 = JSON.parse(e2[0].template), r2 = [];
6
+ const a3 = JSON.parse(e2[0].template), i2 = [];
7
7
  a3.panels.forEach((e3) => {
8
8
  e3.printElements.forEach((e4) => {
9
- "barcode" !== e4.options.textType && "qrcode" !== e4.options.textType || r2.push(e4.options);
9
+ "barcode" !== e4.options.textType && "qrcode" !== e4.options.textType || i2.push(e4.options);
10
10
  });
11
11
  });
12
- const i = new t.PrintTemplate({ template: a3 }), l = { callback: () => {
12
+ const l = new t.PrintTemplate({ template: a3 }), r = { callback: () => {
13
13
  }, styleHandler: () => "" }, c = { leftOffset: -1, topOffset: -1 }, f = {};
14
14
  a3.panels[0].printElements.forEach((e3) => {
15
15
  if ("datetime" === e3.options.dataType && e3.options.field) {
16
16
  const t2 = e3.options.field.substring(6);
17
17
  f[t2] = e3.options.dateFormat;
18
18
  }
19
- }), n2.pageContext.pageType ? "list" === n2.pageContext.pageType ? function(e3, t2, n3, a4, s2, r3) {
20
- const i2 = JSON.parse(JSON.stringify(e3.selections));
21
- if (i2.forEach((e4) => {
19
+ }), n2.pageContext.pageType ? "list" === n2.pageContext.pageType ? function(e3, t2, n3, a4, s2, i3) {
20
+ const l2 = JSON.parse(JSON.stringify(e3.selections));
21
+ if (l2.forEach((e4) => {
22
22
  Object.keys(t2).forEach((t3) => {
23
23
  if (e4[t3] && "number" == typeof e4[t3] && !isNaN(e4[t3])) try {
24
24
  e4[t3] = new Date(e4[t3]);
25
25
  } catch (e5) {
26
- console.error(`日期格式化失败: ${e5}`);
27
26
  }
28
27
  });
29
28
  }), n3.length > 0) {
@@ -31,51 +30,51 @@ function a(n2, a2) {
31
30
  n3.forEach((t3) => {
32
31
  e4.push(function(e5, t4) {
33
32
  return new Promise((n4, a5) => {
34
- const s3 = e5.field.split("."), r4 = [];
33
+ const s3 = e5.field.split("."), i4 = [];
35
34
  s3.length < 2 && n4([]);
36
35
  try {
37
36
  p(s3[1]).then((e6) => {
38
37
  t4.forEach((t5, n5) => {
39
38
  const a6 = { type: s3[0], name: s3[1], value: null, index: n5 };
40
- a6.value = o(JSON.parse(e6.barcodeModelItems), t5), r4.push(a6);
41
- }), n4(r4);
39
+ a6.value = o(JSON.parse(e6.barcodeModelItems), t5), i4.push(a6);
40
+ }), n4(i4);
42
41
  });
43
42
  } catch (e6) {
44
- console.error("获取条码规则失败:", e6), n4([]);
43
+ n4([]);
45
44
  }
46
45
  });
47
- }(t3, i2));
46
+ }(t3, l2));
48
47
  }), Promise.all(e4).then((e5) => {
49
48
  e5.forEach((e6) => {
50
49
  e6.forEach((e7) => {
51
- const t3 = e7.index, n4 = i2[t3];
50
+ const t3 = e7.index, n4 = l2[t3];
52
51
  n4[e7.type] || (n4[e7.type] = {}), n4[e7.type][e7.name] = e7.value;
53
52
  });
54
- }), a4.print(i2, s2, r3);
53
+ }), a4.print(l2, s2, i3);
55
54
  });
56
- } else a4.print(i2, s2, r3);
57
- }(n2, f, r2, i, c, l) : "form" === n2.pageContext.pageType && s(n2, r2, i, c, l) : s(n2, r2, i, c, l);
55
+ } else a4.print(l2, s2, i3);
56
+ }(n2, f, i2, l, c, r) : "form" === n2.pageContext.pageType && s(n2, i2, l, c, r) : s(n2, i2, l, c, r);
58
57
  });
59
58
  }
60
59
  function s(e2, t2, n2, a2, s2) {
61
60
  if (t2.length > 0) {
62
- const r2 = [];
61
+ const i2 = [];
63
62
  t2.forEach((t3) => {
64
- r2.push(function(e3, t4) {
63
+ i2.push(function(e3, t4) {
65
64
  return new Promise((n3, a3) => {
66
- const s3 = t4.field.split("."), r3 = { type: null, name: null, value: null };
67
- s3.length < 2 && n3(r3), r3.type = s3[0], r3.name = s3[1];
65
+ const s3 = t4.field.split("."), i3 = { type: null, name: null, value: null };
66
+ s3.length < 2 && n3(i3), i3.type = s3[0], i3.name = s3[1];
68
67
  try {
69
- p(r3.name).then((t5) => {
68
+ p(i3.name).then((t5) => {
70
69
  const a4 = JSON.parse(t5.barcodeModelItems);
71
- r3.value = o(a4, e3.entity.data), n3(r3);
70
+ i3.value = o(a4, e3.entity.data), n3(i3);
72
71
  });
73
72
  } catch (e4) {
74
- console.error("获取条码规则失败:", e4), n3(r3);
73
+ n3(i3);
75
74
  }
76
75
  });
77
76
  }(e2.pageContext, t3));
78
- }), Promise.all(r2).then((t3) => {
77
+ }), Promise.all(i2).then((t3) => {
79
78
  const o2 = {};
80
79
  t3.forEach((e3) => {
81
80
  e3.type && e3.name && e3.value && (o2[e3.type] || (o2[e3.type] = {}), o2[e3.type][e3.name] = e3.value);
@@ -93,8 +92,8 @@ function p(t2) {
93
92
  return e.get(window.$vueApp.config.globalProperties.baseAPI + `/dc/setting-barcode-models/by-name?name=${n2}`);
94
93
  }
95
94
  n();
96
- const r = { printLabel: a };
95
+ const i = { printLabel: a };
97
96
  export {
98
- r as default,
97
+ i as default,
99
98
  a as printLabel
100
99
  };
@@ -8,8 +8,8 @@ import C from "../eventBus.js";
8
8
  import T from "axios";
9
9
  import { handleEvent as y, getTableUuid as h, doAfterClickEvent as P } from "./event-util.js";
10
10
  import { setStoreInfo as w } from "../store-util.js";
11
- import { getPermissionCodes as k, getDefaultValue as R, getModelFields as M } from "../page-init-util.js";
12
- import { updateChartDatasources as N, caculateShowCondition as v, getVariableValue as S, setVariableValue as I } from "../page-helper-util.js";
11
+ import { getPermissionCodes as k, getDefaultValue as R, getModelFields as N } from "../page-init-util.js";
12
+ import { updateChartDatasources as M, caculateShowCondition as v, getVariableValue as S, setVariableValue as I } from "../page-helper-util.js";
13
13
  import x from "./print-label.js";
14
14
  import { getTableNameByTableUuid as A } from "../table-utils.js";
15
15
  import { getWorkflowRules as O, packageCustomRules as U } from "./validator-util.js";
@@ -226,8 +226,7 @@ const j = { save: function(e2) {
226
226
  let t2 = null;
227
227
  try {
228
228
  if (t2 = e3.menuItem ? e3.menuItem.templateUuid : e3.configureObj.props.base.template[0].templateUuid, !t2) throw new Error("未找到模板");
229
- } catch (t3) {
230
- console.error("打印标签失败,未在配置中找到找到模板", t3, e3);
229
+ } catch (e4) {
231
230
  }
232
231
  x.printLabel(e3, t2);
233
232
  }(e2);
@@ -280,7 +279,7 @@ function D(e2) {
280
279
  let o2 = null;
281
280
  n2 && n2.runtime && (o2 = n2.runtime.props);
282
281
  const i2 = o2 ? o2.state : void 0;
283
- o2 && (o2.state = "disabled"), N(t2, s2, void 0, e2.isInitChart).then(() => {
282
+ o2 && (o2.state = "disabled"), M(t2, s2, void 0, e2.isInitChart).then(() => {
284
283
  o2 && (o2.state = i2);
285
284
  }).catch(() => {
286
285
  o2 && (o2.state = i2);
@@ -378,10 +377,11 @@ function q(t2, s2, n2, o2, i2) {
378
377
  let i3 = s3.props.base.successOperation;
379
378
  const a3 = s3.props.base.isNeedValueMapping, r2 = h(t3, s3);
380
379
  i3 || z.includes(s3.name) || (i3 = "refresh");
381
- if ("refresh" === i3) if (r2) {
382
- b(t3, r2).refresh();
383
- } else console.error("tableUuid is empty");
384
- else if ("closeWindow" === i3 || "closeWindowAndRefresh" === i3) {
380
+ if ("refresh" === i3) {
381
+ if (r2) {
382
+ b(t3, r2).refresh();
383
+ }
384
+ } else if ("closeWindow" === i3 || "closeWindowAndRefresh" === i3) {
385
385
  const o4 = e(t3.entity.page);
386
386
  let i4 = n3;
387
387
  i4 || (i4 = {}), Object.assign(o4, i4), J(t3, s3, o4, a3);
@@ -435,7 +435,7 @@ function Y(e2, t2, s2, n2, o2) {
435
435
  Array.isArray(e3) && e3.length > 0 && (n3 = e3[0]), t3.forEach((e4) => {
436
436
  const t4 = e4.source;
437
437
  if (!t4) return;
438
- const o3 = t4.split("."), i3 = S(n3, o3), a2 = e4.target, r2 = M(null, a2);
438
+ const o3 = t4.split("."), i3 = S(n3, o3), a2 = e4.target, r2 = N(null, a2);
439
439
  I(s3.entity, r2, i3);
440
440
  });
441
441
  }
@@ -453,7 +453,7 @@ function K(e2, t2, s2, n2) {
453
453
  const s3 = h(e2, t2);
454
454
  if (s3) {
455
455
  b(e2, s3).refresh();
456
- } else console.error("tableUuid is empty");
456
+ }
457
457
  } else if (i2 && "form" === i2) {
458
458
  const t3 = e2.entity.data;
459
459
  fe(e2, t3.ID ? t3.ID : t3.id);
@@ -514,10 +514,10 @@ function X(e2, s2) {
514
514
  null != w2 && f2.append("isWorkflowEntity", w2 + "");
515
515
  const R2 = k(a2, i2);
516
516
  R2 && f2.append("functionCode", R2);
517
- const M2 = ie(i2);
518
- f2.append("additionalParamMapStr", JSON.stringify(M2));
519
- const N2 = void 0 === p2.isPermission || "true" === p2.isPermission || p2.isPermission;
520
- f2.append("isPermission", N2 + "");
517
+ const N2 = ie(i2);
518
+ f2.append("additionalParamMapStr", JSON.stringify(N2));
519
+ const M2 = void 0 === p2.isPermission || "true" === p2.isPermission || p2.isPermission;
520
+ f2.append("isPermission", M2 + "");
521
521
  const v2 = i2.systemCode;
522
522
  v2 && f2.append("systemCode", v2);
523
523
  const S2 = i2.backendUrl;
@@ -554,7 +554,7 @@ function ee(e2) {
554
554
  const p2 = (_a = n2.props.base) == null ? void 0 : _a.logSetting;
555
555
  p2 && (c2.logSettingText = p2.join("")), c2.systemCode || (c2.systemCode = i2);
556
556
  const d2 = ie(t2);
557
- c2.additionalParamMap = d2, d2.ids && d2.ids.length > 0 && ("string" == typeof d2.ids ? c2.ids = d2.ids.split(",") : Array.isArray(d2.ids) ? c2.ids = d2.ids : "number" == typeof ids ? c2.ids = [d2.ids] : console.error("ids参数类型错误"));
557
+ c2.additionalParamMap = d2, d2.ids && d2.ids.length > 0 && ("string" == typeof d2.ids ? c2.ids = d2.ids.split(",") : Array.isArray(d2.ids) ? c2.ids = d2.ids : "number" == typeof ids && (c2.ids = [d2.ids]));
558
558
  const m2 = n2.props.base.successOperation;
559
559
  return m2 && "noOperation" === m2 && (c2.unControlVersion = true), c2.isWorkflowEntity = true, c2;
560
560
  }
@@ -807,7 +807,7 @@ function ge(e2, s2, o2) {
807
807
  let d2 = t2 || null, f2 = t2 ? [t2] : null;
808
808
  void 0 === s3 || s3 ? (d2 || (d2 = p2 && p2.id ? p2.id : null), f2 || (f2 = p2 ? p2.ids : null)) : (d2 = null, f2 = null, p2._id = p2.id, p2.id = null);
809
809
  const g2 = p2 ? p2.taskId : null, b2 = u2, C2 = { pageCode: u2, pageVersion: l2, tableName: e3.tableName, formNoRuleCode: e3.formNoRuleCode, isWorkflowEntity: true, systemCode: a2, functionCode: b2 + ".workflowGets", listCodesMap: e3.listCodesMap };
810
- if (e3.listCodesMap, (!e3.listCodesMap || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
810
+ if ((!e3.listCodesMap || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
811
811
  const t3 = {};
812
812
  e3.tableUuids.forEach((e4) => {
813
813
  const s4 = r(u2, l2, e4);
@@ -860,7 +860,7 @@ function ge(e2, s2, o2) {
860
860
  let d2 = t2 || null, f2 = t2 ? [t2] : null;
861
861
  void 0 === s3 || s3 ? (d2 || (d2 = p2 && p2.id ? p2.id : null), f2 || (f2 = p2 ? p2.ids : null)) : (d2 = null, f2 = null, p2._id = p2.id, p2.id = null);
862
862
  const g2 = p2 ? p2.taskId : null, b2 = u2, C2 = n(e3.backendUrl, e3.isTest), T2 = { pageCode: u2, pageVersion: l2, tableName: e3.tableName, formNoRuleCode: e3.formNoRuleCode, id: d2, systemCode: a2, functionCode: b2 + ".gets", listCodesMap: e3.listCodesMap };
863
- if (!T2.id && p2 && p2._t_ && m(p2._t_ + "_id") && (T2.id = m(p2._t_ + "_id")), f2 && (T2.ids = be(f2)), e3.notIdInitializationList && (T2.noIdAndTaskIdInitSetting = JSON.stringify(e3.notIdInitializationList)), p2 && (T2.additionalParamMap = p2), e3.beanName && (T2.beanName = e3.beanName), g2 && (T2.taskId = g2), e3.listCodesMap, (!e3.listCodesMap || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
863
+ if (!T2.id && p2 && p2._t_ && m(p2._t_ + "_id") && (T2.id = m(p2._t_ + "_id")), f2 && (T2.ids = be(f2)), e3.notIdInitializationList && (T2.noIdAndTaskIdInitSetting = JSON.stringify(e3.notIdInitializationList)), p2 && (T2.additionalParamMap = p2), e3.beanName && (T2.beanName = e3.beanName), g2 && (T2.taskId = g2), (!e3.listCodesMap || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
864
864
  const t3 = {};
865
865
  e3.tableUuids.forEach((e4) => {
866
866
  const s4 = r(u2, l2, e4);
@@ -136,7 +136,7 @@ function b(e2, t2, n2) {
136
136
  }), r2.includes(false) && e6(false), s3.length > 0 ? Promise.all(s3).then((t4) => {
137
137
  t4.includes(false) ? e6(false) : e6(true);
138
138
  }).catch((t4) => {
139
- console.error(t4), e6(false);
139
+ e6(false);
140
140
  }) : e6(true);
141
141
  });
142
142
  return null;
@@ -40,7 +40,6 @@ function g(e2) {
40
40
  e3.duplicateFieldList && e3.duplicateFieldList.length > 0 && (e3.duplicateFieldList = e3.duplicateFieldList.map((e4) => "string" == typeof e4 ? { propDbName: e4 } : e4));
41
41
  }), e2.props.judgeHeavyList) : null;
42
42
  } catch (e3) {
43
- console.error("getJudgeHeavyList error:", e3);
44
43
  }
45
44
  }
46
45
  function b(e2) {
@@ -62,7 +61,7 @@ function y(e2, t2) {
62
61
  }
63
62
  }
64
63
  function h(e2, t2) {
65
- if (e2 && (e2.params && Object.assign(t2, e2.params), e2.query, e2.query)) {
64
+ if (e2 && (e2.params && Object.assign(t2, e2.params), e2.query)) {
66
65
  Object.assign(t2, e2.query);
67
66
  v(e2.query.paramStoreId, t2);
68
67
  }
@@ -1,18 +1,18 @@
1
1
  import { ref as e } from "vue";
2
- import { defineStore as a } from "pinia";
3
- import o from "./eventBus.js";
4
- const t = a("pageContextUtil", () => {
5
- const a2 = e({ systemCode: "", systemVersion: -1 }), t2 = e(false), n = e(false), u = e(false), l = e(0), v = e(0);
6
- return { pageContext: a2, setPageContext: function(e2) {
7
- a2.value = e2;
2
+ import { defineStore as o } from "pinia";
3
+ import a from "./eventBus.js";
4
+ const t = o("pageContextUtil", () => {
5
+ const o2 = e({ systemCode: "", systemVersion: -1 }), t2 = e(false), n = e(false), u = e(false), l = e(0), d = e(0);
6
+ return { pageContext: o2, setPageContext: function(e2) {
7
+ o2.value = e2;
8
8
  }, countComponentsTotalNmber: function() {
9
9
  l.value++, t2.value = false, u.value = false;
10
10
  }, countComponentsLoadedNumber: function() {
11
- v.value++, u.value = false;
12
- }, componentsTotalNmber: l, componentsLoadedNumber: v, setPageComponentsLoaded: function(e2) {
13
- t2.value = e2, t2.value && n.value && (o.$emit("pageLoaded"), u.value = true);
11
+ d.value++, u.value = false;
12
+ }, componentsTotalNmber: l, componentsLoadedNumber: d, setPageComponentsLoaded: function(e2) {
13
+ t2.value = e2, t2.value && n.value && (a.$emit("pageLoaded"), u.value = true);
14
14
  }, setFormPageDataLoadState: function(e2) {
15
- n.value = e2, t2.value && n.value && (t2.value, n.value, u.value = true);
15
+ n.value = e2, t2.value && n.value && (u.value = true);
16
16
  }, formPageDataLoaded: n, pageComponentsLoaded: t2, restorePageLoadState: function() {
17
17
  t2.value = false, n.value = false, u.value = false;
18
18
  }, pageLoaded: u, getPageLoaded: function() {
@@ -18,7 +18,7 @@ function r(t2, e2) {
18
18
  }
19
19
  function u(t2, i2, s2, n2) {
20
20
  const r2 = !(!i2.props || !i2.props.base) && i2.props.base.showOperation, u2 = i2.btnList;
21
- i2.btnList, r2 && u2 && u2.forEach((i3) => {
21
+ r2 && u2 && u2.forEach((i3) => {
22
22
  const r3 = {}, u3 = Object.assign({}, i3.props.base);
23
23
  if ("custom" === i3.name ? u3.customControl = u3.name : u3.elementType = "el-button", void 0 === i3.isPermission || i3.isPermission + "" == "true") {
24
24
  const o2 = e(i3, t2);
@@ -1,13 +1,9 @@
1
- import { defineComponent as e, watch as l, resolveComponent as o, createBlock as a, createElementBlock as u, openBlock as r, withCtx as n, Fragment as d, renderList as p } from "vue";
2
- const t = e({ __name: "common-chart-header-group", props: { headerInfo: { type: Object, required: true } }, setup(e2) {
3
- const t2 = e2;
4
- return l(t2.headerInfo, () => {
5
- t2.headerInfo;
6
- }), (l2, t3) => {
7
- const h = o("el-checkbox"), f = o("el-checkbox-group"), m = o("el-radio"), V = o("el-radio-button"), b = o("el-radio-group");
8
- return "checkbox" == e2.headerInfo.groupComponent ? (r(), a(f, { key: 0, modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t3[0] || (t3[0] = (l3) => e2.headerInfo.groupValue = l3) }, { default: n(() => [(r(true), u(d, null, p(e2.headerInfo.options, (e3) => (r(), a(h, { label: e3.label, value: e3.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"])) : "radio" == e2.headerInfo.groupComponent ? (r(true), u(d, { key: 1 }, p(e2.headerInfo.options, (l3) => (r(), a(m, { modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t3[1] || (t3[1] = (l4) => e2.headerInfo.groupValue = l4), value: l3.value, label: l3.label }, null, 8, ["modelValue", "value", "label"]))), 256)) : (r(), a(b, { key: 2, modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t3[2] || (t3[2] = (l3) => e2.headerInfo.groupValue = l3) }, { default: n(() => [(r(true), u(d, null, p(e2.headerInfo.options, (e3) => (r(), a(V, { label: e3.label, value: e3.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"]));
9
- };
10
- } });
1
+ import { defineComponent as e, watch as l, resolveComponent as o, createBlock as a, createElementBlock as u, openBlock as r, withCtx as d, Fragment as n, renderList as p } from "vue";
2
+ const t = e({ __name: "common-chart-header-group", props: { headerInfo: { type: Object, required: true } }, setup: (e2) => (l(e2.headerInfo, () => {
3
+ }), (l2, t2) => {
4
+ const h = o("el-checkbox"), f = o("el-checkbox-group"), m = o("el-radio"), V = o("el-radio-button"), b = o("el-radio-group");
5
+ return "checkbox" == e2.headerInfo.groupComponent ? (r(), a(f, { key: 0, modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t2[0] || (t2[0] = (l3) => e2.headerInfo.groupValue = l3) }, { default: d(() => [(r(true), u(n, null, p(e2.headerInfo.options, (e3) => (r(), a(h, { label: e3.label, value: e3.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"])) : "radio" == e2.headerInfo.groupComponent ? (r(true), u(n, { key: 1 }, p(e2.headerInfo.options, (l3) => (r(), a(m, { modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t2[1] || (t2[1] = (l4) => e2.headerInfo.groupValue = l4), value: l3.value, label: l3.label }, null, 8, ["modelValue", "value", "label"]))), 256)) : (r(), a(b, { key: 2, modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t2[2] || (t2[2] = (l3) => e2.headerInfo.groupValue = l3) }, { default: d(() => [(r(true), u(n, null, p(e2.headerInfo.options, (e3) => (r(), a(V, { label: e3.label, value: e3.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"]));
6
+ }) });
11
7
  export {
12
8
  t as default
13
9
  };
@@ -3,13 +3,12 @@ import { Search as p } from "@element-plus/icons-vue";
3
3
  import g from "./common-chart-header-group.vue.js";
4
4
  import m from "./common-chart-header-breadcrumb.vue.js";
5
5
  import b from "./common-homepage-search.vue.js";
6
- import { setVariableValueWithProp as v, getValueFromSource as y, setValueForVariableName as O } from "../../../../utils/page-helper-util.js";
7
- const w = { class: "amb-widget-chart-header" }, x = { class: "amb-widget-chart-header-item" }, k = { class: "amb-widget-chart-header-item amb-widget-chart-header-center" }, j = { class: "amb-widget-chart-header-item" }, C = { key: 0, class: "amb-widget-chart-header-item" }, P = e({ __name: "common-chart-header", props: { headerInfo: { type: Object, required: true }, configure: { type: Object, required: true }, pageContext: { type: Object, required: true } }, emits: ["drill-end"], setup(e2, { expose: P2, emit: _ }) {
6
+ import { setVariableValueWithProp as v, getValueFromSource as y, setValueForVariableName as w } from "../../../../utils/page-helper-util.js";
7
+ const x = { class: "amb-widget-chart-header" }, O = { class: "amb-widget-chart-header-item" }, k = { class: "amb-widget-chart-header-item amb-widget-chart-header-center" }, j = { class: "amb-widget-chart-header-item" }, C = { key: 0, class: "amb-widget-chart-header-item" }, P = e({ __name: "common-chart-header", props: { headerInfo: { type: Object, required: true }, configure: { type: Object, required: true }, pageContext: { type: Object, required: true } }, emits: ["drill-end"], setup(e2, { expose: P2, emit: _ }) {
8
8
  const N = e2, D = o(null), A = o(), R = _;
9
9
  function S(e3) {
10
10
  const o2 = N.headerInfo.drillOptions.length;
11
- if (e3 >= o2) N.headerInfo.drillOptions;
12
- else {
11
+ if (!(e3 >= o2)) {
13
12
  for (let r2 = o2 - 1; r2 >= e3; r2--) N.headerInfo.drillOptions.splice(r2, 1);
14
13
  q(e3);
15
14
  }
@@ -35,7 +34,7 @@ const w = { class: "amb-widget-chart-header" }, x = { class: "amb-widget-chart-h
35
34
  for (let e4 of o2.variables) {
36
35
  if (!e4.fieldName || !e4.variable) continue;
37
36
  const o3 = y(r2, e4.fieldName, void 0);
38
- O(N.pageContext.entity, e4.variable, o3);
37
+ w(N.pageContext.entity, e4.variable, o3);
39
38
  }
40
39
  }
41
40
  N.headerInfo.drillOptions || (N.headerInfo.drillOptions = []);
@@ -47,12 +46,11 @@ const w = { class: "amb-widget-chart-header" }, x = { class: "amb-widget-chart-h
47
46
  if (r2 + 1 >= N.headerInfo.options.length) {
48
47
  return F(o2 && e3.dataIndex < o2.length ? o2[e3.dataIndex] : void 0), void R("drill-end", e3);
49
48
  }
50
- N.headerInfo.options;
51
49
  const n2 = N.headerInfo.options[r2], t2 = o2 && e3.dataIndex < o2.length ? o2[e3.dataIndex] : null, a2 = { fieldName: n2.target ? n2.target.replace(".", "_") : "", rawFieldName: n2.target ? n2.target : "", label: e3.name, value: e3.name, data: t2 };
52
50
  N.headerInfo.drillOptions.push(a2), q(r2 + 1);
53
51
  }, closeDrill: S }), (o2, v2) => {
54
- const y2 = r("el-icon"), O2 = r("el-tooltip");
55
- return t(), n("div", w, [a("div", x, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && (!e2.headerInfo.textAlign || "left" == e2.headerInfo.textAlign)]]), !e2.headerInfo.showDrill || e2.headerInfo.groupPosition && "left" != e2.headerInfo.groupPosition ? l("", true) : (t(), d(m, { key: 0, ref_key: "drillObjRef", ref: D, headerInfo: e2.headerInfo, onCloseDrill: S }, null, 8, ["headerInfo"])), !e2.headerInfo.showGroup || e2.headerInfo.groupPosition && "left" != e2.headerInfo.groupPosition ? l("", true) : (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"]))]), a("div", k, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && "center" == e2.headerInfo.textAlign]]), e2.headerInfo.showDrill && "center" == e2.headerInfo.groupPosition ? (t(), d(m, { key: 0, headerInfo: e2.headerInfo, onCloseDrill: S, ref_key: "drillObjRef", ref: D }, null, 8, ["headerInfo"])) : l("", true), e2.headerInfo.showGroup && "center" == e2.headerInfo.groupPosition ? (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"])) : l("", true)]), a("div", j, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && "right" == e2.headerInfo.textAlign]]), e2.headerInfo.showDrill && "right" == e2.headerInfo.groupPosition ? (t(), d(m, { key: 0, headerInfo: e2.headerInfo, onCloseDrill: S, ref_key: "drillObjRef", ref: D }, null, 8, ["headerInfo"])) : l("", true), e2.headerInfo.showGroup && "right" == e2.headerInfo.groupPosition ? (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"])) : l("", true)]), e2.pageContext.showHomepageSearch ? (t(), n("div", C, [c(O2, { content: "打开查询弹窗", effect: "light" }, { default: I(() => [c(y2, { onClick: G }, { default: I(() => [c(u(p))]), _: 1 })]), _: 1 }), c(b, { ref_key: "commonHomepageSearchRef", ref: A, configure: e2.configure, pageContext: e2.pageContext }, null, 8, ["configure", "pageContext"])])) : l("", true)]);
52
+ const y2 = r("el-icon"), w2 = r("el-tooltip");
53
+ return t(), n("div", x, [a("div", O, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && (!e2.headerInfo.textAlign || "left" == e2.headerInfo.textAlign)]]), !e2.headerInfo.showDrill || e2.headerInfo.groupPosition && "left" != e2.headerInfo.groupPosition ? l("", true) : (t(), d(m, { key: 0, ref_key: "drillObjRef", ref: D, headerInfo: e2.headerInfo, onCloseDrill: S }, null, 8, ["headerInfo"])), !e2.headerInfo.showGroup || e2.headerInfo.groupPosition && "left" != e2.headerInfo.groupPosition ? l("", true) : (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"]))]), a("div", k, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && "center" == e2.headerInfo.textAlign]]), e2.headerInfo.showDrill && "center" == e2.headerInfo.groupPosition ? (t(), d(m, { key: 0, headerInfo: e2.headerInfo, onCloseDrill: S, ref_key: "drillObjRef", ref: D }, null, 8, ["headerInfo"])) : l("", true), e2.headerInfo.showGroup && "center" == e2.headerInfo.groupPosition ? (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"])) : l("", true)]), a("div", j, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && "right" == e2.headerInfo.textAlign]]), e2.headerInfo.showDrill && "right" == e2.headerInfo.groupPosition ? (t(), d(m, { key: 0, headerInfo: e2.headerInfo, onCloseDrill: S, ref_key: "drillObjRef", ref: D }, null, 8, ["headerInfo"])) : l("", true), e2.headerInfo.showGroup && "right" == e2.headerInfo.groupPosition ? (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"])) : l("", true)]), e2.pageContext.showHomepageSearch ? (t(), n("div", C, [c(w2, { content: "打开查询弹窗", effect: "light" }, { default: I(() => [c(y2, { onClick: G }, { default: I(() => [c(u(p))]), _: 1 })]), _: 1 }), c(b, { ref_key: "commonHomepageSearchRef", ref: A, configure: e2.configure, pageContext: e2.pageContext }, null, 8, ["configure", "pageContext"])])) : l("", true)]);
56
54
  };
57
55
  } });
58
56
  export {