super-page-runtime 2.3.4 → 2.3.5-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 (59) hide show
  1. package/dist/es/components/runtime/utils/api/page-expose-util.js +78 -70
  2. package/dist/es/components/runtime/utils/barcode-util.js +5 -5
  3. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +45 -46
  4. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +14 -16
  5. package/dist/es/components/runtime/utils/charts/chart-util.js +24 -26
  6. package/dist/es/components/runtime/utils/common-util.d.ts +1 -1
  7. package/dist/es/components/runtime/utils/common-util.js +62 -47
  8. package/dist/es/components/runtime/utils/events/event-util.js +119 -119
  9. package/dist/es/components/runtime/utils/events/print-label.js +25 -27
  10. package/dist/es/components/runtime/utils/events/standard-event.js +471 -481
  11. package/dist/es/components/runtime/utils/events/validator-util.js +24 -24
  12. package/dist/es/components/runtime/utils/form/scan-util.js +3 -4
  13. package/dist/es/components/runtime/utils/page-helper-util.js +275 -275
  14. package/dist/es/components/runtime/utils/page-init-util.d.ts +1 -1
  15. package/dist/es/components/runtime/utils/page-init-util.js +67 -60
  16. package/dist/es/components/runtime/utils/page-store.js +1 -1
  17. package/dist/es/components/runtime/utils/table-utils.d.ts +14 -0
  18. package/dist/es/components/runtime/utils/table-utils.js +62 -37
  19. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +12 -16
  20. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +6 -10
  21. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +9 -11
  22. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +3 -3
  23. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +14 -15
  24. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +11 -12
  25. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +17 -18
  26. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +18 -19
  27. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +8 -1
  28. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +10 -15
  29. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +6 -6
  30. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +130 -131
  31. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +8 -4
  32. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +24 -26
  33. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +1 -3
  34. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +63 -63
  35. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +10 -12
  36. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +40 -43
  37. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +116 -119
  38. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +42 -42
  39. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +1 -1
  40. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +62 -63
  41. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -1
  42. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +35 -34
  43. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +32 -32
  44. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +17 -17
  45. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +54 -52
  46. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +6 -8
  47. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +9 -10
  48. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -1
  49. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -1
  50. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +59 -50
  51. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +2 -2
  52. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +63 -61
  53. package/dist/es/components/runtime/views/home-chart.vue.js +9 -9
  54. package/dist/es/components/runtime/views/super-page-dialog.vue.js +6 -7
  55. package/dist/es/components/runtime/views/super-page.vue.d.ts +2 -2
  56. package/dist/es/components/runtime/views/super-page.vue.js +1 -1
  57. package/dist/es/components/runtime/views/super-page.vue2.js +138 -141
  58. package/dist/es/style.css +82 -82
  59. package/package.json +2 -2
@@ -1,151 +1,159 @@
1
- import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, getVariableValue as n, setVariableValue as o, setValueForVariableName as i } from "../page-helper-util.js";
2
- import { getComponentRef as a, getComponentRefByCode as r } from "../global-refs.js";
3
- import s from "../eventBus.js";
1
+ import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, getVariableValue as n, setVariableValue as i, setValueForVariableName as o } from "../page-helper-util.js";
2
+ import { getComponentRef as a, getComponentRefByCode as s } from "../global-refs.js";
3
+ import r 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) {
12
- n2 ? j(e2, "showElement", t2) : t2.forEach((t3) => {
13
- const n3 = r(e2, t3);
14
- n3 ? n3.show() : console.error(`未找到code为${t3}的组件`);
11
+ import { isHasFieldPermissionAuth as k } from "../table-utils.js";
12
+ const v = { showElement: function(e2, t2, n2) {
13
+ n2 ? A(e2, "showElement", t2) : t2.forEach((t3) => {
14
+ const n3 = s(e2, t3);
15
+ n3 && n3.show();
15
16
  });
16
17
  }, hideElement: function(e2, t2, n2) {
17
- n2 ? j(e2, "hideElement", t2) : t2.forEach((t3) => {
18
- const n3 = r(e2, t3);
19
- n3 ? n3.hide() : console.error(`未找到code为${t3}的组件`);
18
+ n2 ? A(e2, "hideElement", t2) : t2.forEach((t3) => {
19
+ const n3 = s(e2, t3);
20
+ n3 && n3.hide();
20
21
  });
21
22
  }, enableElement: function(e2, t2, n2) {
22
- n2 ? j(e2, "enableElement", t2) : t2.forEach((t3) => {
23
- const n3 = r(e2, t3);
23
+ n2 ? A(e2, "enableElement", t2) : t2.forEach((t3) => {
24
+ const n3 = s(e2, t3);
24
25
  if (n3) {
25
26
  const e3 = n3.getConfigure();
26
27
  e3 && e3.runtime.props && (e3.runtime.props.state = "enabled");
27
- } else console.error(`未找到code为${t3}的组件`);
28
+ }
28
29
  });
29
30
  }, disableElement: function(e2, t2, n2) {
30
- n2 ? j(e2, "disableElement", t2) : t2.forEach((t3) => {
31
- const n3 = r(e2, t3);
31
+ n2 ? A(e2, "disableElement", t2) : t2.forEach((t3) => {
32
+ const n3 = s(e2, t3);
32
33
  if (n3) {
33
34
  const e3 = n3.getConfigure();
34
35
  e3 && e3.runtime.props && (e3.runtime.props.state = "disabled");
35
- } else console.error(`未找到code为${t3}的组件`);
36
+ }
36
37
  });
37
38
  }, setEntityDataValue: function(e2, t2) {
38
39
  Object.keys(t2).forEach((n2) => {
39
- i(e2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", t2[n2]);
40
+ o(e2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", t2[n2]);
40
41
  });
41
42
  }, setEntityPageValue: function(e2, t2) {
42
43
  Object.keys(t2).forEach((n2) => {
43
- i(e2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", t2[n2]);
44
+ o(e2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", t2[n2]);
44
45
  });
45
46
  }, setEntityValueByType: function(e2, t2, n2) {
46
- Object.keys(n2).forEach((o2) => {
47
- i(e2.entity, o2.startsWith("${") ? o2 : "${" + t2 + "." + o2 + "}", n2[o2]);
47
+ Object.keys(n2).forEach((i2) => {
48
+ o(e2.entity, i2.startsWith("${") ? i2 : "${" + t2 + "." + i2 + "}", n2[i2]);
48
49
  });
49
50
  }, dynamicControlFormEdit: function(e2, t2, n2) {
50
- n2 ? j(e2, "dynamicControlFormEdit", t2) : p(e2, t2);
51
+ n2 ? A(e2, "dynamicControlFormEdit", t2) : d(e2, t2);
51
52
  }, disabledAllFields(e2) {
52
- d(e2);
53
+ p(e2);
53
54
  }, dynamicControlTableEdit(e2, t2, n2) {
54
55
  m(e2, t2, n2);
55
56
  }, executeServiceFlow: function(e2, t2, n2) {
56
- const o2 = e2.code;
57
+ const i2 = e2.code;
57
58
  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);
59
+ const o2 = e2.backendUrl, a2 = y(o2, e2.isTest);
60
+ return l.post(`${a2}/dsc/service-flow/execute/${i2}/${t2}`, n2);
60
61
  }, openPage: function(e2, t2) {
61
- s.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
62
+ r.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
62
63
  }, refreshPage: function(e2, t2) {
63
64
  f(e2, t2);
64
65
  }, refreshSubTableHandle: function(e2, t2) {
65
66
  let n2;
66
- const o2 = r(e2, t2);
67
- if (o2) {
68
- const e3 = o2.getConfigure();
67
+ const i2 = s(e2, t2);
68
+ if (i2) {
69
+ const e3 = i2.getConfigure();
69
70
  e3 && e3.uuid && e3.name && "table" === e3.name && (n2 = e3.uuid);
70
71
  }
71
- n2 ? s.$emit("_refreshSubTableHandle_" + n2) : console.error("tableUUid is undefined");
72
+ n2 && r.$emit("_refreshSubTableHandle_" + n2);
72
73
  }, refreshChildData(e2, t2, n2) {
73
- let o2;
74
- const i2 = r(e2, t2);
75
- if (i2) {
76
- const e3 = i2.getConfigure();
77
- e3 && e3.uuid && e3.name && "table" === e3.name && (o2 = e3.uuid);
74
+ let i2;
75
+ const o2 = s(e2, t2);
76
+ if (o2) {
77
+ const e3 = o2.getConfigure();
78
+ e3 && e3.uuid && e3.name && "table" === e3.name && (i2 = e3.uuid);
78
79
  }
79
- o2 ? s.$emit("_refreshChildData_" + o2, n2) : console.error("tableUUid is undefined");
80
+ i2 && r.$emit("_refreshChildData_" + i2, n2);
80
81
  }, 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
82
  const n2 = u(e2);
82
83
  return n2 ? n2[t2] : null;
83
- }, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(i2) {
84
+ }, isMobile: () => h(), getComponentRefByProp: (e2, t2) => s(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(o2) {
84
85
  var _a, _b, _c, _d, _e, _f, _g, _h;
85
- const r2 = i2.entity ? i2.entity : {}, s2 = g(r2), l2 = e(i2);
86
+ const s2 = o2.entity ? o2.entity : {}, r2 = g(s2), l2 = e(o2);
86
87
  for (const e2 in l2) {
87
- const r3 = t(i2, e2), l3 = a(i2, e2);
88
+ const s3 = t(o2, e2), l3 = a(o2, e2);
88
89
  if (l3) {
89
90
  const e3 = l3.getConfigure();
90
91
  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);
92
+ const t2 = E(o2, e3), a2 = n(r2, t2);
92
93
  if (a2) {
93
- const e4 = v(a2.split(","), r3);
94
- o(s2, t2, e4);
94
+ const e4 = V(a2.split(","), s3);
95
+ i(r2, t2, e4);
95
96
  }
96
97
  } else {
97
- const t2 = E(i2, e3), a2 = v(n(s2, t2), r3);
98
- o(s2, t2, a2);
98
+ const t2 = E(o2, e3), a2 = V(n(r2, t2), s3);
99
+ i(r2, t2, a2);
99
100
  }
100
101
  }
101
102
  }
102
- const c2 = i2.listCodesMap;
103
+ const c2 = o2.listCodesMap;
103
104
  for (const e2 in c2) {
104
105
  let t2;
105
106
  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);
107
+ const i2 = a(o2, t2);
108
+ if (i2) {
109
+ const t3 = i2.getConfigure(), o3 = t3.code ? t3.code : e2, a2 = P(t3, o3), s3 = n(r2, a2);
110
+ j(i2.getTableSelectOptions(e2), s3);
110
111
  }
111
112
  }
112
113
  }
113
- return s2.data;
114
- }, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => C(e2, t2), replaceUrlPrefix: (e2) => b(e2) };
115
- function k(e2, t2) {
114
+ return r2.data;
115
+ }, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => C(e2, t2), replaceUrlPrefix: (e2) => b(e2), isHasFieldAuthPermission: (e2) => {
116
+ var _a, _b, _c, _d;
117
+ return !(void 0 !== ((_b = (_a = e2 == null ? void 0 : e2.props) == null ? void 0 : _a.base) == null ? void 0 : _b.isHasFieldAuthPermission) && !((_d = (_c = e2 == null ? void 0 : e2.props) == null ? void 0 : _c.base) == null ? void 0 : _d.isHasFieldAuthPermission));
118
+ }, isHasFieldAuth(e2, t2) {
119
+ k(e2, null, t2);
120
+ }, isHasFieldAuthWithTable(e2, t2, n2) {
121
+ k(e2, t2, n2);
122
+ } };
123
+ function j(e2, t2) {
116
124
  e2 && t2 && t2.forEach((t3) => {
117
125
  Object.keys(e2).forEach((n2) => {
118
- const o2 = t3[n2], i2 = e2[n2], a2 = i2.options, r2 = i2.column;
119
- let s2;
120
- if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
121
- if (o2) {
122
- s2 = v(o2.split(","), a2);
126
+ const i2 = t3[n2], o2 = e2[n2], a2 = o2.options, s2 = o2.column;
127
+ let r2;
128
+ if (s2 && s2.componentType && ("multiselect" === s2.componentType || "checkbox" === s2.componentType)) {
129
+ if (i2) {
130
+ r2 = V(i2.split(","), a2);
123
131
  }
124
- } else s2 = v(o2, a2);
125
- t3[n2] = s2;
132
+ } else r2 = V(i2, a2);
133
+ t3[n2] = r2;
126
134
  });
127
135
  });
128
136
  }
129
- function v(e2, t2) {
137
+ function V(e2, t2) {
130
138
  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;
139
+ return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((i2) => {
140
+ n2 = n2 + $(e2, t2) + ",";
141
+ }), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = $(e2, t2))), n2;
134
142
  }
135
- function V(e2, t2) {
143
+ function $(e2, t2) {
136
144
  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) {
145
+ if (null != e2 && t2) for (let i2 = 0; i2 < t2.length; i2++) {
146
+ const o2 = t2[i2].value, a2 = t2[i2].label ? t2[i2].label : t2[i2].name;
147
+ if (e2 + "" == o2 + "" && null != a2) {
140
148
  n2 = a2;
141
149
  break;
142
150
  }
143
151
  }
144
152
  return n2;
145
153
  }
146
- function j(e2, t2, n2) {
154
+ function A(e2, t2, n2) {
147
155
  e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = n2;
148
156
  }
149
157
  export {
150
- $ as functions
158
+ v as functions
151
159
  };
@@ -1,11 +1,11 @@
1
- function e(e2, n) {
2
- let t = true, r = "";
1
+ function e(e2, t) {
2
+ let n = true, r = "";
3
3
  return e2.forEach((e3) => {
4
4
  if ("-1" !== e3.propDbName && -1 !== e3.propDbName) {
5
- const a = n[e3.propDbName];
6
- e3.supplementaryCharacters && e3.length ? a ? a.length > e3.length ? r += a.substring(0, e3.length) : r += a.padEnd(e3.length, e3.supplementaryCharacters) : r += "".padEnd(e3.length, e3.supplementaryCharacters) : a ? r += a : t = false;
5
+ const a = t[e3.propDbName];
6
+ e3.supplementaryCharacters && e3.length ? a ? a.length > e3.length ? r += a.substring(0, e3.length) : r += a.padEnd(e3.length, e3.supplementaryCharacters) : r += "".padEnd(e3.length, e3.supplementaryCharacters) : a ? r += a : n = false;
7
7
  } else r += e3.fixedValue;
8
- }), console.log("跟据规则生成条码:" + r), t ? r : null;
8
+ }), n ? r : null;
9
9
  }
10
10
  export {
11
11
  e as generateCodeByRule
@@ -1,6 +1,6 @@
1
- import { getValueFromSource as o, setValueForVariableName as e } from "../page-helper-util.js";
2
- import { deepCopy as s } from "../common-util.js";
3
- import { CommonName as r, caculateFormulaValue as t, executeChartFormula as l, sortDatas as n, limitDatas as p } from "./chart-util.js";
1
+ import { getValueFromSource as o, setValueForVariableName as t } from "../page-helper-util.js";
2
+ import { deepCopy as r } from "../common-util.js";
3
+ import { CommonName as s, caculateFormulaValue as e, executeChartFormula as l, sortDatas as n, limitDatas as p } from "./chart-util.js";
4
4
  function i(i2, u, c, a) {
5
5
  if (!a || !a.result) return;
6
6
  const f = a && a.result ? a.result : {};
@@ -13,68 +13,67 @@ function i(i2, u, c, a) {
13
13
  g = [];
14
14
  for (const o2 of d) g.push(o2.group);
15
15
  }
16
- const y = {}, v = [], x = [];
17
- for (const o2 of d) y[o2.group] = o2.target, o2.target && !v.includes(o2.target) && (v.push(o2.target), g.includes(o2.group) && x.push(o2.target));
18
- let F = u.props ? u.props.mulGroupShow : "";
19
- F = "break" == F ? "\r\n" : " ", console.log("groupValue", g);
20
- for (const e2 of h) {
21
- if (!e2) continue;
22
- const s2 = [];
23
- for (const r2 of g) {
24
- const t3 = y[r2], l2 = o(e2, t3, void 0);
25
- l2 && s2.push(l2);
16
+ const y = {}, x = [], v = [];
17
+ for (const o2 of d) y[o2.group] = o2.target, o2.target && !x.includes(o2.target) && (x.push(o2.target), g.includes(o2.group) && v.push(o2.target));
18
+ let E = u.props ? u.props.mulGroupShow : "";
19
+ E = "break" == E ? "\r\n" : " ";
20
+ for (const t2 of h) {
21
+ if (!t2) continue;
22
+ const r2 = [];
23
+ for (const s2 of g) {
24
+ const e3 = y[s2], l2 = o(t2, e3, void 0);
25
+ l2 && r2.push(l2);
26
26
  }
27
- const t2 = s2.join(F);
28
- e2[r.X_FIELD_NAME] = t2;
27
+ const e2 = r2.join(E);
28
+ t2[s.X_FIELD_NAME] = e2;
29
29
  }
30
- const E = u.items ? u.items : [];
31
- if (0 == E.length) return void console.log("饼图的系列为空,操作失败!", u);
30
+ const F = u.items ? u.items : [];
31
+ if (0 == F.length) return;
32
32
  const S = u.props ? u.props : {};
33
33
  let _ = S.yaxisField;
34
- if (console.log("valueField", _), E[0].props.yaxisField = _, E[0].props.yaxisSource = S.yaxisSource, E[0].props.formula = S.formula, "formula" === S.yaxisSource) {
35
- const e2 = [], s2 = t(E, h, e2);
34
+ if (F[0].props.yaxisField = _, F[0].props.yaxisSource = S.yaxisSource, F[0].props.formula = S.formula, "formula" === S.yaxisSource) {
35
+ const t2 = [], r2 = e(F, h, t2);
36
36
  let n2 = S.formula ? S.formula : "";
37
- for (const o2 in s2) n2 = n2.replace(new RegExp(o2.replace("$", "\\$"), "g"), s2[o2]);
38
- _ = r.Y_TEMP_NAME;
37
+ for (const o2 in r2) n2 = n2.replace(new RegExp(o2.replace("$", "\\$"), "g"), r2[o2]);
38
+ _ = s.Y_TEMP_NAME;
39
39
  const p2 = {};
40
- for (const s3 of h) {
41
- if (!s3) continue;
42
- for (const r3 of e2) {
43
- const e3 = o(s3, r3, void 0);
44
- let t2 = p2[r3];
45
- void 0 === e3 || isNaN(e3) || (void 0 === t2 ? t2 = e3 : t2 += e3), p2[r3] = t2;
40
+ for (const r3 of h) {
41
+ if (!r3) continue;
42
+ for (const s3 of t2) {
43
+ const t3 = o(r3, s3, void 0);
44
+ let e2 = p2[s3];
45
+ void 0 === t3 || isNaN(t3) || (void 0 === e2 ? e2 = t3 : e2 += t3), p2[s3] = e2;
46
46
  }
47
- console.log("formula", n2);
48
- const r2 = l(n2, p2, s3, i2);
49
- console.log("formula-result", r2), s3[_] = r2;
47
+ const s2 = l(n2, p2, r3, i2);
48
+ r3[_] = s2;
50
49
  }
51
50
  }
52
- E[0].props.yaxisField = _, E[0].props.yaxisSource = "", n(i2, u, h), h = p(i2, u, h, v, [_]);
51
+ F[0].props.yaxisField = _, F[0].props.yaxisSource = "", n(i2, u, h), h = p(i2, u, h, x, [_]);
53
52
  const A = [], D = [];
54
- for (const e2 of h) {
55
- if (!e2) continue;
56
- A.push(e2[r.X_FIELD_NAME]);
57
- const s2 = o(e2, _, void 0);
58
- D.push(s2);
53
+ for (const t2 of h) {
54
+ if (!t2) continue;
55
+ A.push(t2[s.X_FIELD_NAME]);
56
+ const r2 = o(t2, _, void 0);
57
+ D.push(r2);
59
58
  }
60
59
  const M = u.defaultSeries;
61
60
  let N = M[0].pieColors;
62
61
  N = N || [];
63
62
  let j = M[0].pieColorMap;
64
63
  j = j || {};
65
- const V = [];
64
+ const b = [];
66
65
  for (let o2 = 0; o2 < A.length && o2 < D.length; o2++) {
67
- const e2 = { value: D[o2], name: A[o2] };
68
- if (o2 < N.length || j[e2.name]) {
69
- let s2 = j[e2.name];
70
- s2 || (s2 = N[o2]), s2 && (e2.itemStyle = { color: s2 });
66
+ const t2 = { value: D[o2], name: A[o2] };
67
+ if (o2 < N.length || j[t2.name]) {
68
+ let r2 = j[t2.name];
69
+ r2 || (r2 = N[o2]), r2 && (t2.itemStyle = { color: r2 });
71
70
  }
72
- V.push(e2);
71
+ b.push(t2);
73
72
  }
74
- const b = s(M);
75
- b[0].data = V, c.series = [b[0]];
76
- const w = u.props ? u.props.selGroupVariable : null;
77
- !(u.props ? u.props.enableDrill : null) && w && (u.highlightInfos = [], e(i2.entity, w, null)), u.groupFields = x, u.cacheDatas = h, u.rawResult = a;
73
+ const w = r(M);
74
+ w[0].data = b, c.series = [w[0]];
75
+ const I = u.props ? u.props.selGroupVariable : null;
76
+ !(u.props ? u.props.enableDrill : null) && I && (u.highlightInfos = [], t(i2.entity, I, null)), u.groupFields = v, u.cacheDatas = h, u.rawResult = a;
78
77
  }
79
78
  export {
80
79
  i as updateChartOption
@@ -1,46 +1,44 @@
1
1
  import { getValueFromSource as o } from "../page-helper-util.js";
2
2
  import { deepCopy as s } from "../common-util.js";
3
3
  import { caculateFormulaValue as i, executeChartFormula as e } from "./chart-util.js";
4
- function r(r2, t, l, a) {
5
- if (!a || !a.result) return;
6
- const u = a && a.result ? a.result : {}, c = t.serviceDataField;
7
- let f = null;
8
- c ? f = u[c] : u && (f = Array.isArray(u) ? u : [u]), f || (f = []);
4
+ function r(r2, t, a, l) {
5
+ if (!l || !l.result) return;
6
+ const u = l && l.result ? l.result : {}, f = t.serviceDataField;
7
+ let c = null;
8
+ f ? c = u[f] : u && (c = Array.isArray(u) ? u : [u]), c || (c = []);
9
9
  const d = t.items ? t.items : [], n = [], p = {};
10
10
  for (const o2 of d) {
11
11
  const s2 = o2.props ? o2.props : {}, i2 = o2.props ? o2.style : {}, e2 = s2.xaxisField, r3 = s2.sizeField, t2 = { uuid: o2.uuid, xaxisField: e2, yaxisField: s2.yaxisField, yaxisSource: s2.yaxisSource, formula: s2.formula, sizeField: r3, symbolSize: i2.symbolSize, data: [] };
12
12
  n.push(t2), p[t2.uuid] = t2;
13
13
  }
14
- const m = [], x = i(d, f, m);
14
+ const m = [], x = i(d, c, m);
15
15
  for (const o2 of n) if ("formula" === o2.yaxisSource) {
16
16
  let s2 = o2.formula ? o2.formula : "";
17
17
  for (const o3 in x) s2 = s2.replace(new RegExp(o3.replace("$", "\\$"), "g"), x[o3]);
18
18
  o2.formula = s2;
19
19
  }
20
20
  const y = {};
21
- for (const s2 of f) if (s2) {
21
+ for (const s2 of c) if (s2) {
22
22
  for (const i2 of m) {
23
23
  const e2 = o(s2, i2, void 0);
24
24
  let r3 = y[i2];
25
25
  void 0 === e2 || isNaN(e2) || (void 0 === r3 ? r3 = e2 : r3 += e2), y[i2] = r3;
26
26
  }
27
27
  for (const i2 of n) {
28
- const t2 = i2.data, l2 = [];
29
- if (l2.push(o(s2, i2.xaxisField, void 0)), "formula" === i2.yaxisSource) {
28
+ const t2 = i2.data, a2 = [];
29
+ if (a2.push(o(s2, i2.xaxisField, void 0)), "formula" === i2.yaxisSource) {
30
30
  const o2 = e(i2.formula, y, s2, r2);
31
- l2.push(o2);
32
- } else l2.push(o(s2, i2.yaxisField, void 0));
33
- i2.sizeField ? l2.push(o(s2, i2.xaxisField, void 0)) : l2.push(i2.symbolSize), t2.push(l2);
31
+ a2.push(o2);
32
+ } else a2.push(o(s2, i2.yaxisField, void 0));
33
+ i2.sizeField ? a2.push(o(s2, i2.xaxisField, void 0)) : a2.push(i2.symbolSize), t2.push(a2);
34
34
  }
35
35
  }
36
- const F = t.defaultSeries;
37
- console.log("defaultSeries", F);
38
- const h = s(F);
36
+ const F = t.defaultSeries, h = s(F);
39
37
  for (const o2 of h) {
40
38
  const s2 = p[o2.uuid];
41
39
  o2.data = s2.data;
42
40
  }
43
- l.series = h, t.cacheDatas = f, t.rawResult = a;
41
+ a.series = h, t.cacheDatas = c, t.rawResult = l;
44
42
  }
45
43
  export {
46
44
  r as updateChartOption
@@ -2,7 +2,7 @@ import t from "../../../../assets/chart-themes/theme1.js";
2
2
  import e from "../../../../assets/chart-themes/theme2.js";
3
3
  import n from "../../../../assets/chart-themes/theme3.js";
4
4
  import { getDefaultValue as i } from "../page-init-util.js";
5
- import { getValueFromSource as s, setValueForVariableName as o, getParamNames as r, formatVariableValue as l, getValueFromVariable as a, setVariableValue as c } from "../page-helper-util.js";
5
+ import { getValueFromSource as s, setValueForVariableName as o, getParamNames as r, formatVariableValue as a, getValueFromVariable as l, setVariableValue as c } from "../page-helper-util.js";
6
6
  import { appendDefaultMethods as f } from "../events/event-util.js";
7
7
  var u = ((t2) => (t2.X_FIELD_NAME = "__x", t2.Y_TEMP_NAME = "__y", t2))(u || {});
8
8
  const d = { theme1: t, theme2: e, theme3: n };
@@ -16,16 +16,16 @@ function m(t2, e2, n2, i2, s2) {
16
16
  return function(o2) {
17
17
  let r2 = o2.value;
18
18
  if (s2 && (r2 = o2), null == r2 || null == r2) return r2;
19
- if (Array.isArray(r2)) return console.log("numformatter is array", r2), r2;
19
+ if (Array.isArray(r2)) return r2;
20
20
  if (isNaN(r2) || !t2 || !t2.indexOf) return r2;
21
21
  if (t2.indexOf("precision") > -1) {
22
22
  let t3 = parseInt(e2);
23
23
  (null == t3 || isNaN(t3)) && (t3 = 2), r2 = parseFloat(parseFloat(r2).toFixed(t3));
24
24
  }
25
- let l2 = "";
26
- t2.indexOf("prefix") > -1 && n2 && (l2 = n2);
27
25
  let a2 = "";
28
- return t2.indexOf("append") > -1 && i2 && (a2 = i2), l2 + r2.toLocaleString() + a2;
26
+ t2.indexOf("prefix") > -1 && n2 && (a2 = n2);
27
+ let l2 = "";
28
+ return t2.indexOf("append") > -1 && i2 && (l2 = i2), a2 + r2.toLocaleString() + l2;
29
29
  };
30
30
  }
31
31
  function g(t2, e2) {
@@ -51,20 +51,18 @@ function x(t2, e2, n2) {
51
51
  if (!(n2 && e2 && e2.clickSet && t2)) return;
52
52
  const i2 = e2.clickSet;
53
53
  n2.on("click", function(s2) {
54
- let o2 = e2.highlightInfos ? e2.highlightInfos : [];
55
- console.log("highlightInfos", o2, s2);
56
- let r2 = -1;
54
+ let o2 = e2.highlightInfos ? e2.highlightInfos : [], r2 = -1;
57
55
  if (o2) {
58
56
  const t3 = [];
59
- for (let l2 = 0; l2 < o2.length; l2++) {
60
- const a2 = o2[l2], c2 = a2.seriesIndex === s2.seriesIndex && a2.dataIndex === s2.dataIndex;
57
+ for (let a2 = 0; a2 < o2.length; a2++) {
58
+ const l2 = o2[a2], c2 = l2.seriesIndex === s2.seriesIndex && l2.dataIndex === s2.dataIndex;
61
59
  if (c2 || !i2.multiple) {
62
60
  if (i2.selected) {
63
61
  const t4 = "chart-pie" === e2.name ? "unselect" : "downplay";
64
- n2.dispatchAction({ type: t4, seriesIndex: a2.seriesIndex, dataIndex: a2.dataIndex });
62
+ n2.dispatchAction({ type: t4, seriesIndex: l2.seriesIndex, dataIndex: l2.dataIndex });
65
63
  }
66
- } else t3.push(a2);
67
- c2 && (r2 = l2);
64
+ } else t3.push(l2);
65
+ c2 && (r2 = a2);
68
66
  }
69
67
  o2 = t3;
70
68
  }
@@ -91,12 +89,12 @@ function b(t2, e2) {
91
89
  if (!e2.clickSet) return;
92
90
  const n2 = e2.clickSet, i2 = n2.variables;
93
91
  if (!i2 || 0 == i2.length) return;
94
- const r2 = e2.highlightInfos ? e2.highlightInfos : [], l2 = e2.cacheDatas ? e2.cacheDatas : [], a2 = [], c2 = [];
95
- for (const t3 of r2) c2.includes(t3.dataIndex) || (c2.push(t3.dataIndex), t3.dataIndex < l2.length && a2.push(l2[t3.dataIndex]));
92
+ const r2 = e2.highlightInfos ? e2.highlightInfos : [], a2 = e2.cacheDatas ? e2.cacheDatas : [], l2 = [], c2 = [];
93
+ for (const t3 of r2) c2.includes(t3.dataIndex) || (c2.push(t3.dataIndex), t3.dataIndex < a2.length && l2.push(a2[t3.dataIndex]));
96
94
  for (const e3 of i2) {
97
95
  if (!e3.fieldName || !e3.variable) continue;
98
96
  const i3 = [];
99
- for (const t3 of a2) {
97
+ for (const t3 of l2) {
100
98
  const n3 = s(t3, e3.fieldName, void 0);
101
99
  null != n3 && i3.push(n3);
102
100
  }
@@ -117,11 +115,11 @@ function v(t2, e2, n2) {
117
115
  }
118
116
  }
119
117
  if (!r2) return;
120
- const a2 = e2.props ? e2.props.orderSource : "";
118
+ const l2 = e2.props ? e2.props.orderSource : "";
121
119
  let c2 = e2.props ? e2.props.orderFix : "";
122
- if ("variable" == a2) {
120
+ if ("variable" == l2) {
123
121
  const n3 = e2.props ? e2.props.orderVariable : "";
124
- c2 = l(t2, n3);
122
+ c2 = a(t2, n3);
125
123
  }
126
124
  c2 = "desc" == c2 || "DESC" == c2 ? "desc" : "asc", n2.sort((t3, e3) => {
127
125
  const n3 = s(t3, r2, void 0), i3 = s(e3, r2, void 0);
@@ -132,14 +130,14 @@ function N(t2, e2, n2, i2, o2) {
132
130
  if (!n2) return n2;
133
131
  const r2 = e2.props ? e2.props : {};
134
132
  if (!r2.limitQuantity) return n2;
135
- let a2 = null;
136
- if (r2.itemNumVariable ? (a2 = l(t2, r2.itemNumVariable), a2 = parseInt(a2)) : a2 = r2.itemNumFix ? r2.itemNumFix : 10, null == a2 || null == a2 || isNaN(a2)) return n2;
137
- if (n2.length < a2) return n2;
133
+ let l2 = null;
134
+ if (r2.itemNumVariable ? (l2 = a(t2, r2.itemNumVariable), l2 = parseInt(l2)) : l2 = r2.itemNumFix ? r2.itemNumFix : 10, null == l2 || null == l2 || isNaN(l2)) return n2;
135
+ if (n2.length < l2) return n2;
138
136
  const c2 = r2.overItemAlias, f2 = [], u2 = {};
139
137
  i2 = i2 || [], o2 = o2 || [];
140
138
  for (let t3 = 0; t3 < n2.length; t3++) {
141
139
  const e3 = n2[t3];
142
- if (t3 < a2) f2.push(e3);
140
+ if (t3 < l2) f2.push(e3);
143
141
  else {
144
142
  if (!c2) break;
145
143
  for (const t4 of i2) {
@@ -214,11 +212,11 @@ function k(t2, e2, n2, i2) {
214
212
  const o2 = r(t2);
215
213
  for (const e3 of o2) {
216
214
  let o3 = null;
217
- o3 = e3.startsWith("${row.") ? s(n2, e3.substring(6, e3.length - 1), null) : a(i2.entity, e3), t2 = t2.replace(new RegExp(e3.replace("$", "\\$"), "g"), o3);
215
+ o3 = e3.startsWith("${row.") ? s(n2, e3.substring(6, e3.length - 1), null) : l(i2.entity, e3), t2 = t2.replace(new RegExp(e3.replace("$", "\\$"), "g"), o3);
218
216
  }
219
217
  t2.includes("return ") || (t2 = "return " + t2);
220
- const l2 = new Function("params", t2);
221
- return f(l2, i2), l2({ pageContext: i2, row: n2 });
218
+ const a2 = new Function("params", t2);
219
+ return f(a2, i2), a2({ pageContext: i2, row: n2 });
222
220
  }
223
221
  function M(t2) {
224
222
  if (!t2 || !t2.$el) return;
@@ -8,7 +8,7 @@ export declare function getRealRestApiPath(orgRestApiPath: any, systemCode: any,
8
8
  * @param templateFiles
9
9
  * @returns
10
10
  */
11
- export declare function packageTemplateFiles(templateFiles: any): any;
11
+ export declare function packageTemplateFiles(templateFiles: any, pageContext: PageContext, configure: Component): any;
12
12
  export declare function upperFirstCase(str: any): any;
13
13
  export declare function getListCode(pageCode: any, pageVersion: any, tableUuid: any): string;
14
14
  /**