super-page-runtime 2.3.4-sit1 → 2.3.5-rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/components/runtime/utils/api/page-expose-util.js +35 -27
- package/dist/es/components/runtime/utils/common-util.d.ts +1 -1
- package/dist/es/components/runtime/utils/common-util.js +62 -47
- package/dist/es/components/runtime/utils/events/event-util.js +3 -3
- package/dist/es/components/runtime/utils/events/print-label.js +26 -25
- package/dist/es/components/runtime/utils/events/standard-event.js +21 -19
- package/dist/es/components/runtime/utils/events/validator-util.js +23 -23
- package/dist/es/components/runtime/utils/page-init-util.d.ts +1 -1
- package/dist/es/components/runtime/utils/page-init-util.js +60 -48
- package/dist/es/components/runtime/utils/page-store.js +10 -10
- package/dist/es/components/runtime/utils/table-utils.d.ts +14 -0
- package/dist/es/components/runtime/utils/table-utils.js +57 -32
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +10 -6
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +8 -6
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +20 -20
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +8 -1
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +15 -10
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +3 -2
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +8 -4
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +29 -25
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +2 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +12 -10
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +10 -9
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +48 -48
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +24 -15
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +1 -1
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +29 -29
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +23 -22
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +32 -32
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +1 -1
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +50 -49
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +5 -3
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +1 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +1 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue.js +69 -67
- package/dist/es/components/runtime/views/home-chart.vue.js +7 -7
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +1 -0
- package/dist/es/components/runtime/views/super-page.vue.d.ts +2 -2
- package/dist/es/components/runtime/views/super-page.vue.js +1 -1
- package/dist/es/components/runtime/views/super-page.vue2.js +12 -11
- package/dist/es/style.css +82 -82
- package/package.json +2 -2
|
@@ -3,36 +3,37 @@ import { getComponentRef as a, getComponentRefByCode as r } from "../global-refs
|
|
|
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
|
|
7
|
-
import { deepCopy as g, getBaseUrl as
|
|
8
|
-
import { replacePrefix as
|
|
6
|
+
import { dynamicControlTableEdit as m, disabledAllFields as d, updateFormItemEditState as p } from "../events/validator-util.js";
|
|
7
|
+
import { deepCopy as g, getBaseUrl as b } from "../common-util.js";
|
|
8
|
+
import { replacePrefix as y, 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
|
+
import { isHasFieldPermissionAuth as $ } from "../table-utils.js";
|
|
11
12
|
const k = { showElement: function(e2, t2, n2) {
|
|
12
|
-
n2 ?
|
|
13
|
+
n2 ? A(e2, "showElement", t2) : t2.forEach((t3) => {
|
|
13
14
|
const n3 = r(e2, t3);
|
|
14
|
-
n3
|
|
15
|
+
n3 ? n3.show() : console.error(`未找到code为${t3}的组件`);
|
|
15
16
|
});
|
|
16
17
|
}, hideElement: function(e2, t2, n2) {
|
|
17
|
-
n2 ?
|
|
18
|
+
n2 ? A(e2, "hideElement", t2) : t2.forEach((t3) => {
|
|
18
19
|
const n3 = r(e2, t3);
|
|
19
|
-
n3
|
|
20
|
+
n3 ? n3.hide() : console.error(`未找到code为${t3}的组件`);
|
|
20
21
|
});
|
|
21
22
|
}, enableElement: function(e2, t2, n2) {
|
|
22
|
-
n2 ?
|
|
23
|
+
n2 ? A(e2, "enableElement", t2) : t2.forEach((t3) => {
|
|
23
24
|
const n3 = r(e2, t3);
|
|
24
25
|
if (n3) {
|
|
25
26
|
const e3 = n3.getConfigure();
|
|
26
27
|
e3 && e3.runtime.props && (e3.runtime.props.state = "enabled");
|
|
27
|
-
}
|
|
28
|
+
} else console.error(`未找到code为${t3}的组件`);
|
|
28
29
|
});
|
|
29
30
|
}, disableElement: function(e2, t2, n2) {
|
|
30
|
-
n2 ?
|
|
31
|
+
n2 ? A(e2, "disableElement", t2) : t2.forEach((t3) => {
|
|
31
32
|
const n3 = r(e2, t3);
|
|
32
33
|
if (n3) {
|
|
33
34
|
const e3 = n3.getConfigure();
|
|
34
35
|
e3 && e3.runtime.props && (e3.runtime.props.state = "disabled");
|
|
35
|
-
}
|
|
36
|
+
} else console.error(`未找到code为${t3}的组件`);
|
|
36
37
|
});
|
|
37
38
|
}, setEntityDataValue: function(e2, t2) {
|
|
38
39
|
Object.keys(t2).forEach((n2) => {
|
|
@@ -47,15 +48,15 @@ const k = { showElement: function(e2, t2, n2) {
|
|
|
47
48
|
o(e2.entity, i2.startsWith("${") ? i2 : "${" + t2 + "." + i2 + "}", n2[i2]);
|
|
48
49
|
});
|
|
49
50
|
}, dynamicControlFormEdit: function(e2, t2, n2) {
|
|
50
|
-
n2 ?
|
|
51
|
+
n2 ? A(e2, "dynamicControlFormEdit", t2) : p(e2, t2);
|
|
51
52
|
}, disabledAllFields(e2) {
|
|
52
|
-
|
|
53
|
+
d(e2);
|
|
53
54
|
}, dynamicControlTableEdit(e2, t2, n2) {
|
|
54
55
|
m(e2, t2, n2);
|
|
55
56
|
}, executeServiceFlow: function(e2, t2, n2) {
|
|
56
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 o2 = e2.backendUrl, a2 =
|
|
59
|
+
const o2 = e2.backendUrl, a2 = b(o2, e2.isTest);
|
|
59
60
|
return l.post(`${a2}/dsc/service-flow/execute/${i2}/${t2}`, n2);
|
|
60
61
|
}, openPage: function(e2, t2) {
|
|
61
62
|
s.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
|
|
@@ -68,7 +69,7 @@ const k = { showElement: function(e2, t2, n2) {
|
|
|
68
69
|
const e3 = i2.getConfigure();
|
|
69
70
|
e3 && e3.uuid && e3.name && "table" === e3.name && (n2 = e3.uuid);
|
|
70
71
|
}
|
|
71
|
-
n2
|
|
72
|
+
n2 ? s.$emit("_refreshSubTableHandle_" + n2) : console.error("tableUUid is undefined");
|
|
72
73
|
}, refreshChildData(e2, t2, n2) {
|
|
73
74
|
let i2;
|
|
74
75
|
const o2 = r(e2, t2);
|
|
@@ -76,8 +77,8 @@ const k = { showElement: function(e2, t2, n2) {
|
|
|
76
77
|
const e3 = o2.getConfigure();
|
|
77
78
|
e3 && e3.uuid && e3.name && "table" === e3.name && (i2 = e3.uuid);
|
|
78
79
|
}
|
|
79
|
-
i2
|
|
80
|
-
}, getServerConfigValue: (e2) => window.$vueApp.config.globalProperties[e2], getBackendUrl: (e2) =>
|
|
80
|
+
i2 ? s.$emit("_refreshChildData_" + i2, n2) : console.error("tableUUid is undefined");
|
|
81
|
+
}, getServerConfigValue: (e2) => window.$vueApp.config.globalProperties[e2], getBackendUrl: (e2) => b(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
84
|
}, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(o2) {
|
|
@@ -90,11 +91,11 @@ const k = { showElement: function(e2, t2, n2) {
|
|
|
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
92
|
const t2 = E(o2, e3), a2 = n(s2, t2);
|
|
92
93
|
if (a2) {
|
|
93
|
-
const e4 =
|
|
94
|
+
const e4 = j(a2.split(","), r3);
|
|
94
95
|
i(s2, t2, e4);
|
|
95
96
|
}
|
|
96
97
|
} else {
|
|
97
|
-
const t2 = E(o2, e3), a2 =
|
|
98
|
+
const t2 = E(o2, e3), a2 = j(n(s2, t2), r3);
|
|
98
99
|
i(s2, t2, a2);
|
|
99
100
|
}
|
|
100
101
|
}
|
|
@@ -111,7 +112,14 @@ const k = { showElement: function(e2, t2, n2) {
|
|
|
111
112
|
}
|
|
112
113
|
}
|
|
113
114
|
return s2.data;
|
|
114
|
-
}, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => C(e2, t2), replaceUrlPrefix: (e2) =>
|
|
115
|
+
}, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => C(e2, t2), replaceUrlPrefix: (e2) => y(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
|
+
$(e2, null, t2);
|
|
120
|
+
}, isHasFieldAuthWithTable(e2, t2, n2) {
|
|
121
|
+
$(e2, t2, n2);
|
|
122
|
+
} };
|
|
115
123
|
function v(e2, t2) {
|
|
116
124
|
e2 && t2 && t2.forEach((t3) => {
|
|
117
125
|
Object.keys(e2).forEach((n2) => {
|
|
@@ -119,20 +127,20 @@ function v(e2, t2) {
|
|
|
119
127
|
let s2;
|
|
120
128
|
if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
|
|
121
129
|
if (i2) {
|
|
122
|
-
s2 =
|
|
130
|
+
s2 = j(i2.split(","), a2);
|
|
123
131
|
}
|
|
124
|
-
} else s2 =
|
|
132
|
+
} else s2 = j(i2, a2);
|
|
125
133
|
t3[n2] = s2;
|
|
126
134
|
});
|
|
127
135
|
});
|
|
128
136
|
}
|
|
129
|
-
function
|
|
137
|
+
function j(e2, t2) {
|
|
130
138
|
let n2;
|
|
131
139
|
return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((i2) => {
|
|
132
|
-
n2 = n2 +
|
|
133
|
-
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 =
|
|
140
|
+
n2 = n2 + V(e2, t2) + ",";
|
|
141
|
+
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = V(e2, t2))), n2;
|
|
134
142
|
}
|
|
135
|
-
function
|
|
143
|
+
function V(e2, t2) {
|
|
136
144
|
let n2 = e2;
|
|
137
145
|
if (null != e2 && t2) for (let i2 = 0; i2 < t2.length; i2++) {
|
|
138
146
|
const o2 = t2[i2].value, a2 = t2[i2].label ? t2[i2].label : t2[i2].name;
|
|
@@ -143,7 +151,7 @@ function $(e2, t2) {
|
|
|
143
151
|
}
|
|
144
152
|
return n2;
|
|
145
153
|
}
|
|
146
|
-
function
|
|
154
|
+
function A(e2, t2, n2) {
|
|
147
155
|
e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = n2;
|
|
148
156
|
}
|
|
149
157
|
export {
|
|
@@ -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
|
/**
|
|
@@ -1,67 +1,82 @@
|
|
|
1
1
|
import { getSystemBackendUrl as e } from "agilebuilder-ui/src/utils/common-util";
|
|
2
2
|
import { getLanguageWithLocale as t } from "agilebuilder-ui/src/utils/util";
|
|
3
|
-
|
|
3
|
+
import { ExpressionEvaluator as n } from "../views/assemblys/chart/table/chart-table-util.js";
|
|
4
|
+
import { getCustomFunc as r } from "./events/event-util.js";
|
|
5
|
+
function o(e2) {
|
|
4
6
|
return "function" == typeof Array.isArray ? Array.isArray(e2) : "[object Array]" === Object.prototype.toString.call(e2);
|
|
5
7
|
}
|
|
6
|
-
function
|
|
7
|
-
if (
|
|
8
|
+
function i(t2, n2) {
|
|
9
|
+
if (n2) return t2;
|
|
8
10
|
{
|
|
9
|
-
const { baseURL:
|
|
10
|
-
let
|
|
11
|
-
return "developing.model" ===
|
|
11
|
+
const { baseURL: n3, projectModel: r2 } = window.$vueApp.config.globalProperties;
|
|
12
|
+
let o2 = n3;
|
|
13
|
+
return "developing.model" === r2 || t2 && (o2 = e(t2)), o2;
|
|
12
14
|
}
|
|
13
15
|
}
|
|
14
|
-
function
|
|
16
|
+
function u(e2, t2, n2, r2) {
|
|
15
17
|
let o2 = e2;
|
|
16
|
-
if (e2 &&
|
|
18
|
+
if (e2 && n2 && !function(e3) {
|
|
17
19
|
return 0 === e3.indexOf("http:") || 0 === e3.indexOf("https:");
|
|
18
20
|
}(e2)) {
|
|
19
|
-
o2 =
|
|
21
|
+
o2 = i(n2, r2) + "/" + t2 + e2;
|
|
20
22
|
}
|
|
21
23
|
return o2;
|
|
22
24
|
}
|
|
23
|
-
function
|
|
24
|
-
if (!e2) return e2;
|
|
25
|
-
|
|
25
|
+
function l(e2, o2, i2) {
|
|
26
|
+
if (!e2 || 0 === e2.length) return e2;
|
|
27
|
+
let u2 = e2;
|
|
26
28
|
if (Array.isArray(e2)) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
e2[0].templates && (u2 = function(e3, t2, o3) {
|
|
30
|
+
const i3 = [];
|
|
31
|
+
return e3.forEach((e4) => {
|
|
32
|
+
let u3 = true;
|
|
33
|
+
if (e4.scopeFunc) {
|
|
34
|
+
const n2 = r(t2, e4.scopeFunc);
|
|
35
|
+
n2 && (u3 = n2.apply(n2, [{ pageContext: t2, configureObj: o3, template: e4 }]));
|
|
36
|
+
} else e4.conditions && e4.conditions.length > 0 && (u3 = n.evaluate(t2, e4.conditions));
|
|
37
|
+
false !== u3 && e4.templates.forEach((e5) => {
|
|
38
|
+
i3.push({ templateUuid: e5.templateUuid, templateName: e5.templateName });
|
|
39
|
+
});
|
|
40
|
+
}), i3;
|
|
41
|
+
}(e2, o2, i2));
|
|
42
|
+
const l2 = t(), a2 = [], s2 = [], p2 = "~-~-";
|
|
43
|
+
return u2.forEach((e3) => {
|
|
44
|
+
const t2 = e3.templateName;
|
|
45
|
+
if (t2.indexOf(p2) > 0) {
|
|
46
|
+
const n2 = t2.substring(0, t2.indexOf(p2)), r2 = t2.substring(t2.indexOf(p2) + p2.length, t2.lastIndexOf(p2)), o3 = t2.substring(t2.lastIndexOf(p2) + p2.length);
|
|
47
|
+
l2 === r2 && s2.indexOf(n2) < 0 && (a2.push({ templateUuid: e3.templateUuid, templateName: o3 }), s2.push(n2));
|
|
48
|
+
} else a2.push(e3);
|
|
49
|
+
}), a2;
|
|
35
50
|
}
|
|
36
51
|
}
|
|
37
|
-
function
|
|
52
|
+
function a(e2) {
|
|
38
53
|
return e2.toLowerCase().replace(/( |^)[a-z]/g, (e3) => e3.toUpperCase());
|
|
39
54
|
}
|
|
40
|
-
function s(e2, t2,
|
|
41
|
-
return "V" + t2 + "__" + e2 + "__" +
|
|
55
|
+
function s(e2, t2, n2) {
|
|
56
|
+
return "V" + t2 + "__" + e2 + "__" + n2;
|
|
42
57
|
}
|
|
43
|
-
function
|
|
58
|
+
function p(e2) {
|
|
44
59
|
if ("object" != typeof e2 || null == e2) return e2;
|
|
45
60
|
const t2 = Array.isArray(e2) ? [] : {};
|
|
46
|
-
for (const
|
|
61
|
+
for (const n2 in e2) e2.hasOwnProperty(n2) && (t2[n2] = p(e2[n2]));
|
|
47
62
|
return t2;
|
|
48
63
|
}
|
|
49
|
-
function
|
|
64
|
+
function f(e2) {
|
|
50
65
|
let t2;
|
|
51
66
|
return e2.entity && e2.entity.data && (t2 = e2.entity.data.WORKFLOW_ID, t2 || (t2 = e2.entity.data.workflow_id), t2 || (t2 = e2.entity.data.workflowId)), t2;
|
|
52
67
|
}
|
|
53
|
-
function
|
|
68
|
+
function c(e2) {
|
|
54
69
|
var _a, _b, _c, _d;
|
|
55
70
|
let t2;
|
|
56
71
|
if (e2 && ((_b = (_a = e2.props) == null ? void 0 : _a.base) == null ? void 0 : _b.prop)) {
|
|
57
|
-
let
|
|
58
|
-
|
|
59
|
-
const
|
|
60
|
-
2 ===
|
|
72
|
+
let n2 = (_d = (_c = e2.props) == null ? void 0 : _c.base) == null ? void 0 : _d.prop;
|
|
73
|
+
n2.indexOf("${") >= 0 && (n2 = n2.substring(2, n2.lastIndexOf("}")));
|
|
74
|
+
const r2 = n2.split(".");
|
|
75
|
+
2 === r2.length ? t2 = r2[1] : 3 === r2.length && (t2 = r2[1] + "__" + r2[2]);
|
|
61
76
|
} else e2.code && (t2 = e2.code);
|
|
62
77
|
return t2;
|
|
63
78
|
}
|
|
64
|
-
function
|
|
79
|
+
function d(e2) {
|
|
65
80
|
try {
|
|
66
81
|
if (null != e2) {
|
|
67
82
|
const t2 = parseInt(e2 + "");
|
|
@@ -72,30 +87,30 @@ function p(e2) {
|
|
|
72
87
|
return false;
|
|
73
88
|
}
|
|
74
89
|
}
|
|
75
|
-
function
|
|
90
|
+
function m(e2) {
|
|
76
91
|
return !!e2.isWorkflowEntity || !(void 0 !== e2.isWorkflowEntity || !e2.workflowCode);
|
|
77
92
|
}
|
|
78
|
-
function
|
|
93
|
+
function g(e2, t2) {
|
|
79
94
|
if (e2 && t2) {
|
|
80
95
|
let t3 = e2.jumpPageMobileOpenMode;
|
|
81
96
|
t3 || (e2.jumpPageOpenMode ? (t3 = e2.jumpPageOpenMode, "newTab" === t3 && (t3 = "refresh")) : t3 = "refresh"), "refresh" === t3 && (e2.dialogType = "drawer", e2.jumpPageWidth = "100%", e2.isRefreshWhenClosePopup = true), e2.jumpMode = t3, e2.jumpPageMobileOpenMode = t3, e2.jumpPageTitle || (e2.jumpPageTitle = "QMS质量管理系统");
|
|
82
97
|
}
|
|
83
98
|
}
|
|
84
|
-
function
|
|
99
|
+
function h(e2, t2) {
|
|
85
100
|
return null === e2[t2] || void 0 === e2[t2] || "" === e2[t2];
|
|
86
101
|
}
|
|
87
102
|
export {
|
|
88
|
-
|
|
89
|
-
|
|
103
|
+
p as deepCopy,
|
|
104
|
+
i as getBaseUrl,
|
|
90
105
|
s as getListCode,
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
106
|
+
c as getPropClassName,
|
|
107
|
+
u as getRealRestApiPath,
|
|
108
|
+
f as getWorkflowId,
|
|
109
|
+
o as isArrayFn,
|
|
110
|
+
d as isNumber,
|
|
111
|
+
h as isVariableInvalidValue,
|
|
112
|
+
m as isWorkflowPage,
|
|
113
|
+
l as packageTemplateFiles,
|
|
114
|
+
g as refreshMobileDialogType,
|
|
115
|
+
a as upperFirstCase
|
|
101
116
|
};
|
|
@@ -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
|
-
e2.canClick = true;
|
|
149
|
+
console.error(n2), e2.canClick = true;
|
|
150
150
|
}) : A(e2, t2, c2, i2) : e2.canClick = true;
|
|
151
151
|
}).catch((n2) => {
|
|
152
|
-
e2.canClick = true;
|
|
152
|
+
console.error(n2), 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
|
-
e3.canClick = true;
|
|
217
|
+
console.error(n2), 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,26 +3,27 @@ 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),
|
|
6
|
+
const a3 = JSON.parse(e2[0].template), r2 = [];
|
|
7
7
|
a3.panels.forEach((e3) => {
|
|
8
8
|
e3.printElements.forEach((e4) => {
|
|
9
|
-
"barcode" !== e4.options.textType && "qrcode" !== e4.options.textType ||
|
|
9
|
+
"barcode" !== e4.options.textType && "qrcode" !== e4.options.textType || r2.push(e4.options);
|
|
10
10
|
});
|
|
11
11
|
});
|
|
12
|
-
const
|
|
12
|
+
const i = new t.PrintTemplate({ template: a3 }), l = { 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,
|
|
20
|
-
const
|
|
21
|
-
if (
|
|
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) => {
|
|
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}`);
|
|
26
27
|
}
|
|
27
28
|
});
|
|
28
29
|
}), n3.length > 0) {
|
|
@@ -30,51 +31,51 @@ function a(n2, a2) {
|
|
|
30
31
|
n3.forEach((t3) => {
|
|
31
32
|
e4.push(function(e5, t4) {
|
|
32
33
|
return new Promise((n4, a5) => {
|
|
33
|
-
const s3 = e5.field.split("."),
|
|
34
|
+
const s3 = e5.field.split("."), r4 = [];
|
|
34
35
|
s3.length < 2 && n4([]);
|
|
35
36
|
try {
|
|
36
37
|
p(s3[1]).then((e6) => {
|
|
37
38
|
t4.forEach((t5, n5) => {
|
|
38
39
|
const a6 = { type: s3[0], name: s3[1], value: null, index: n5 };
|
|
39
|
-
a6.value = o(JSON.parse(e6.barcodeModelItems), t5),
|
|
40
|
-
}), n4(
|
|
40
|
+
a6.value = o(JSON.parse(e6.barcodeModelItems), t5), r4.push(a6);
|
|
41
|
+
}), n4(r4);
|
|
41
42
|
});
|
|
42
43
|
} catch (e6) {
|
|
43
|
-
n4([]);
|
|
44
|
+
console.error("获取条码规则失败:", e6), n4([]);
|
|
44
45
|
}
|
|
45
46
|
});
|
|
46
|
-
}(t3,
|
|
47
|
+
}(t3, i2));
|
|
47
48
|
}), Promise.all(e4).then((e5) => {
|
|
48
49
|
e5.forEach((e6) => {
|
|
49
50
|
e6.forEach((e7) => {
|
|
50
|
-
const t3 = e7.index, n4 =
|
|
51
|
+
const t3 = e7.index, n4 = i2[t3];
|
|
51
52
|
n4[e7.type] || (n4[e7.type] = {}), n4[e7.type][e7.name] = e7.value;
|
|
52
53
|
});
|
|
53
|
-
}), a4.print(
|
|
54
|
+
}), a4.print(i2, s2, r3);
|
|
54
55
|
});
|
|
55
|
-
} else a4.print(
|
|
56
|
-
}(n2, f,
|
|
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);
|
|
57
58
|
});
|
|
58
59
|
}
|
|
59
60
|
function s(e2, t2, n2, a2, s2) {
|
|
60
61
|
if (t2.length > 0) {
|
|
61
|
-
const
|
|
62
|
+
const r2 = [];
|
|
62
63
|
t2.forEach((t3) => {
|
|
63
|
-
|
|
64
|
+
r2.push(function(e3, t4) {
|
|
64
65
|
return new Promise((n3, a3) => {
|
|
65
|
-
const s3 = t4.field.split("."),
|
|
66
|
-
s3.length < 2 && n3(
|
|
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];
|
|
67
68
|
try {
|
|
68
|
-
p(
|
|
69
|
+
p(r3.name).then((t5) => {
|
|
69
70
|
const a4 = JSON.parse(t5.barcodeModelItems);
|
|
70
|
-
|
|
71
|
+
r3.value = o(a4, e3.entity.data), n3(r3);
|
|
71
72
|
});
|
|
72
73
|
} catch (e4) {
|
|
73
|
-
n3(
|
|
74
|
+
console.error("获取条码规则失败:", e4), n3(r3);
|
|
74
75
|
}
|
|
75
76
|
});
|
|
76
77
|
}(e2.pageContext, t3));
|
|
77
|
-
}), Promise.all(
|
|
78
|
+
}), Promise.all(r2).then((t3) => {
|
|
78
79
|
const o2 = {};
|
|
79
80
|
t3.forEach((e3) => {
|
|
80
81
|
e3.type && e3.name && e3.value && (o2[e3.type] || (o2[e3.type] = {}), o2[e3.type][e3.name] = e3.value);
|
|
@@ -92,8 +93,8 @@ function p(t2) {
|
|
|
92
93
|
return e.get(window.$vueApp.config.globalProperties.baseAPI + `/dc/setting-barcode-models/by-name?name=${n2}`);
|
|
93
94
|
}
|
|
94
95
|
n();
|
|
95
|
-
const
|
|
96
|
+
const r = { printLabel: a };
|
|
96
97
|
export {
|
|
97
|
-
|
|
98
|
+
r as default,
|
|
98
99
|
a as printLabel
|
|
99
100
|
};
|
|
@@ -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
|
|
12
|
-
import { updateChartDatasources as
|
|
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";
|
|
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";
|
|
@@ -71,7 +71,7 @@ const j = { save: function(e2) {
|
|
|
71
71
|
}, downloadTemplate: function(e2) {
|
|
72
72
|
!function(e3) {
|
|
73
73
|
var _a;
|
|
74
|
-
const t2 = e3.pageContext, s2 = e3.configureObj, o2 = s2.props.base, a2 = i(o2.templateFiles);
|
|
74
|
+
const t2 = e3.pageContext, s2 = e3.configureObj, o2 = s2.props.base, a2 = i(o2.templateFiles, t2, s2);
|
|
75
75
|
let r2, c2;
|
|
76
76
|
a2 && a2.length > 0 && (r2 = a2[0].templateUuid, c2 = a2[0].templateName);
|
|
77
77
|
const u2 = t2.systemCode, l2 = t2.backendUrl, p2 = c2;
|
|
@@ -226,7 +226,8 @@ 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 (
|
|
229
|
+
} catch (t3) {
|
|
230
|
+
console.error("打印标签失败,未在配置中找到找到模板", t3, e3);
|
|
230
231
|
}
|
|
231
232
|
x.printLabel(e3, t2);
|
|
232
233
|
}(e2);
|
|
@@ -279,7 +280,7 @@ function D(e2) {
|
|
|
279
280
|
let o2 = null;
|
|
280
281
|
n2 && n2.runtime && (o2 = n2.runtime.props);
|
|
281
282
|
const i2 = o2 ? o2.state : void 0;
|
|
282
|
-
o2 && (o2.state = "disabled"),
|
|
283
|
+
o2 && (o2.state = "disabled"), N(t2, s2, void 0, e2.isInitChart).then(() => {
|
|
283
284
|
o2 && (o2.state = i2);
|
|
284
285
|
}).catch(() => {
|
|
285
286
|
o2 && (o2.state = i2);
|
|
@@ -287,6 +288,7 @@ function D(e2) {
|
|
|
287
288
|
}
|
|
288
289
|
function L(e2, s2, o2, i2) {
|
|
289
290
|
var _a;
|
|
291
|
+
e2.clickUuid = s2.uuid;
|
|
290
292
|
const a2 = o2.templateUuid, r2 = o2.templateName, c2 = e2.systemCode, u2 = (_a = s2.props.base) == null ? void 0 : _a.logSetting, l2 = t(e2), p2 = e2.beanName, d2 = s2.props.base, m2 = s2.tableName ? s2.tableName : e2.tableName, f2 = e2.backendUrl, g2 = E.getFormViewData(e2), b2 = void 0 === d2.isPermission || "true" === d2.isPermission || d2.isPermission, C2 = { entity: g2, fileName: a2, showName: r2, beanName: p2, isWorkflowForm: l2, functionCode: k(s2, e2), tableName: m2, isPermission: b2 + "", systemCode: c2, listCodesMap: e2.listCodesMap, pageCode: e2.code, pageVersion: e2.version };
|
|
291
293
|
u2 && (C2.logSettingText = u2.join(""));
|
|
292
294
|
const y2 = ie(e2);
|
|
@@ -318,6 +320,7 @@ function L(e2, s2, o2, i2) {
|
|
|
318
320
|
});
|
|
319
321
|
}(r2, f2, C2, e2.isTest), h2 && h2.then(() => {
|
|
320
322
|
P(e2, s2);
|
|
323
|
+
}).catch((e3) => {
|
|
321
324
|
});
|
|
322
325
|
}
|
|
323
326
|
function B() {
|
|
@@ -377,11 +380,10 @@ function q(t2, s2, n2, o2, i2) {
|
|
|
377
380
|
let i3 = s3.props.base.successOperation;
|
|
378
381
|
const a3 = s3.props.base.isNeedValueMapping, r2 = h(t3, s3);
|
|
379
382
|
i3 || z.includes(s3.name) || (i3 = "refresh");
|
|
380
|
-
if ("refresh" === i3) {
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
} else if ("closeWindow" === i3 || "closeWindowAndRefresh" === i3) {
|
|
383
|
+
if ("refresh" === i3) if (r2) {
|
|
384
|
+
b(t3, r2).refresh();
|
|
385
|
+
} else console.error("tableUuid is empty");
|
|
386
|
+
else if ("closeWindow" === i3 || "closeWindowAndRefresh" === i3) {
|
|
385
387
|
const o4 = e(t3.entity.page);
|
|
386
388
|
let i4 = n3;
|
|
387
389
|
i4 || (i4 = {}), Object.assign(o4, i4), J(t3, s3, o4, a3);
|
|
@@ -435,7 +437,7 @@ function Y(e2, t2, s2, n2, o2) {
|
|
|
435
437
|
Array.isArray(e3) && e3.length > 0 && (n3 = e3[0]), t3.forEach((e4) => {
|
|
436
438
|
const t4 = e4.source;
|
|
437
439
|
if (!t4) return;
|
|
438
|
-
const o3 = t4.split("."), i3 = S(n3, o3), a2 = e4.target, r2 =
|
|
440
|
+
const o3 = t4.split("."), i3 = S(n3, o3), a2 = e4.target, r2 = M(null, a2);
|
|
439
441
|
I(s3.entity, r2, i3);
|
|
440
442
|
});
|
|
441
443
|
}
|
|
@@ -453,7 +455,7 @@ function K(e2, t2, s2, n2) {
|
|
|
453
455
|
const s3 = h(e2, t2);
|
|
454
456
|
if (s3) {
|
|
455
457
|
b(e2, s3).refresh();
|
|
456
|
-
}
|
|
458
|
+
} else console.error("tableUuid is empty");
|
|
457
459
|
} else if (i2 && "form" === i2) {
|
|
458
460
|
const t3 = e2.entity.data;
|
|
459
461
|
fe(e2, t3.ID ? t3.ID : t3.id);
|
|
@@ -514,10 +516,10 @@ function X(e2, s2) {
|
|
|
514
516
|
null != w2 && f2.append("isWorkflowEntity", w2 + "");
|
|
515
517
|
const R2 = k(a2, i2);
|
|
516
518
|
R2 && f2.append("functionCode", R2);
|
|
517
|
-
const
|
|
518
|
-
f2.append("additionalParamMapStr", JSON.stringify(
|
|
519
|
-
const
|
|
520
|
-
f2.append("isPermission",
|
|
519
|
+
const M2 = ie(i2);
|
|
520
|
+
f2.append("additionalParamMapStr", JSON.stringify(M2));
|
|
521
|
+
const N2 = void 0 === p2.isPermission || "true" === p2.isPermission || p2.isPermission;
|
|
522
|
+
f2.append("isPermission", N2 + "");
|
|
521
523
|
const v2 = i2.systemCode;
|
|
522
524
|
v2 && f2.append("systemCode", v2);
|
|
523
525
|
const S2 = i2.backendUrl;
|
|
@@ -554,7 +556,7 @@ function ee(e2) {
|
|
|
554
556
|
const p2 = (_a = n2.props.base) == null ? void 0 : _a.logSetting;
|
|
555
557
|
p2 && (c2.logSettingText = p2.join("")), c2.systemCode || (c2.systemCode = i2);
|
|
556
558
|
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
|
|
559
|
+
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参数类型错误"));
|
|
558
560
|
const m2 = n2.props.base.successOperation;
|
|
559
561
|
return m2 && "noOperation" === m2 && (c2.unControlVersion = true), c2.isWorkflowEntity = true, c2;
|
|
560
562
|
}
|
|
@@ -807,7 +809,7 @@ function ge(e2, s2, o2) {
|
|
|
807
809
|
let d2 = t2 || null, f2 = t2 ? [t2] : null;
|
|
808
810
|
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
811
|
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 || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
|
|
812
|
+
if (e3.listCodesMap, (!e3.listCodesMap || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
|
|
811
813
|
const t3 = {};
|
|
812
814
|
e3.tableUuids.forEach((e4) => {
|
|
813
815
|
const s4 = r(u2, l2, e4);
|
|
@@ -860,7 +862,7 @@ function ge(e2, s2, o2) {
|
|
|
860
862
|
let d2 = t2 || null, f2 = t2 ? [t2] : null;
|
|
861
863
|
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
864
|
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 || 0 === Object.keys(e3.listCodesMap).length) && e3.tableUuids) {
|
|
865
|
+
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) {
|
|
864
866
|
const t3 = {};
|
|
865
867
|
e3.tableUuids.forEach((e4) => {
|
|
866
868
|
const s4 = r(u2, l2, e4);
|