super-page-runtime 2.3.23 → 2.3.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/components/runtime/utils/api/page-expose-util.js +37 -28
- package/dist/es/components/runtime/utils/events/standard-event.js +363 -362
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +22 -13
- package/dist/es/i18n/langs/cn.js +1 -1
- package/dist/es/i18n/langs/en.js +1 -1
- package/package.json +2 -2
|
@@ -2,26 +2,26 @@ import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, get
|
|
|
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
|
-
import { getFormData as c, getAdditionalParamMap as u, refreshPage as
|
|
6
|
-
import { dynamicControlTableEdit as
|
|
5
|
+
import { getFormData as c, getAdditionalParamMap as u, refreshPage as f } from "../events/standard-event.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 C } from "../page-init-util.js";
|
|
10
10
|
import { getCustomFunc as P } from "../events/event-util.js";
|
|
11
|
-
import { isHasFieldPermissionAuth as
|
|
12
|
-
import { scrollIntoComponentWithCode as
|
|
11
|
+
import { isHasFieldPermissionAuth as T } from "../table-utils.js";
|
|
12
|
+
import { scrollIntoComponentWithCode as k, scrollIntoComponentWithUuid as $ } from "../anchor-util.js";
|
|
13
13
|
const v = { showElement: function(e2, t2, n2) {
|
|
14
|
-
n2 ?
|
|
14
|
+
n2 ? D(e2, "showElement", t2) : t2.forEach((t3) => {
|
|
15
15
|
const n3 = r(e2, t3);
|
|
16
16
|
n3 ? n3.show() : console.error(`未找到code为${t3}的组件`);
|
|
17
17
|
});
|
|
18
18
|
}, hideElement: function(e2, t2, n2) {
|
|
19
|
-
n2 ?
|
|
19
|
+
n2 ? D(e2, "hideElement", t2) : t2.forEach((t3) => {
|
|
20
20
|
const n3 = r(e2, t3);
|
|
21
21
|
n3 ? n3.hide() : console.error(`未找到code为${t3}的组件`);
|
|
22
22
|
});
|
|
23
23
|
}, enableElement: function(e2, t2, n2) {
|
|
24
|
-
n2 ?
|
|
24
|
+
n2 ? D(e2, "enableElement", t2) : t2.forEach((t3) => {
|
|
25
25
|
const n3 = r(e2, t3);
|
|
26
26
|
if (n3) {
|
|
27
27
|
const e3 = n3.getConfigure();
|
|
@@ -29,7 +29,7 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
29
29
|
} else console.error(`未找到code为${t3}的组件`);
|
|
30
30
|
});
|
|
31
31
|
}, disableElement: function(e2, t2, n2) {
|
|
32
|
-
n2 ?
|
|
32
|
+
n2 ? D(e2, "disableElement", t2) : t2.forEach((t3) => {
|
|
33
33
|
const n3 = r(e2, t3);
|
|
34
34
|
if (n3) {
|
|
35
35
|
const e3 = n3.getConfigure();
|
|
@@ -49,11 +49,11 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
49
49
|
i(e2.entity, o2.startsWith("${") ? o2 : "${" + t2 + "." + o2 + "}", n2[o2]);
|
|
50
50
|
});
|
|
51
51
|
}, dynamicControlFormEdit: function(e2, t2, n2) {
|
|
52
|
-
n2 ?
|
|
52
|
+
n2 ? D(e2, "dynamicControlFormEdit", t2) : d(e2, t2);
|
|
53
53
|
}, disabledAllFields(e2) {
|
|
54
54
|
p(e2);
|
|
55
55
|
}, dynamicControlTableEdit(e2, t2, n2) {
|
|
56
|
-
|
|
56
|
+
m(e2, t2, n2);
|
|
57
57
|
}, executeServiceFlow: function(e2, t2, n2) {
|
|
58
58
|
const o2 = e2.code;
|
|
59
59
|
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);
|
|
@@ -62,7 +62,7 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
62
62
|
}, openPage: function(e2, t2) {
|
|
63
63
|
s.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
|
|
64
64
|
}, refreshPage: function(e2, t2) {
|
|
65
|
-
|
|
65
|
+
f(e2, t2);
|
|
66
66
|
}, refreshSubTableHandle: function(e2, t2) {
|
|
67
67
|
let n2;
|
|
68
68
|
const o2 = r(e2, t2);
|
|
@@ -79,7 +79,7 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
79
79
|
e3 && e3.uuid && e3.name && "table" === e3.name && (o2 = e3.uuid);
|
|
80
80
|
}
|
|
81
81
|
o2 ? s.$emit("_refreshChildData_" + o2, n2) : console.error("tableUUid is undefined");
|
|
82
|
-
}, 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) {
|
|
82
|
+
}, 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, getTaskDataValue: (e2, t2) => e2.entity.task ? e2.entity.task[t2] : null, getValueByType: (e2, t2, n2) => e2.entity[t2] ? e2.entity[t2][n2] : null, getAdditionalParams: (e2) => u(e2), getAdditionalParamValue(e2, t2) {
|
|
83
83
|
const n2 = u(e2);
|
|
84
84
|
return n2 ? n2[t2] : null;
|
|
85
85
|
}, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(i2) {
|
|
@@ -97,11 +97,11 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
97
97
|
} else if (e3.name && ("select" === e3.name && ((_j = (_i = e3.props) == null ? void 0 : _i.base) == null ? void 0 : _j.multiple) || "checkbox" === e3.name)) {
|
|
98
98
|
const t2 = E(i2, e3), a2 = n(s2, t2);
|
|
99
99
|
if (a2) {
|
|
100
|
-
const e4 =
|
|
100
|
+
const e4 = j(a2.split(","), r3);
|
|
101
101
|
o(s2, t2, e4);
|
|
102
102
|
}
|
|
103
103
|
} else {
|
|
104
|
-
const t2 = E(i2, e3), a2 =
|
|
104
|
+
const t2 = E(i2, e3), a2 = j(n(s2, t2), r3);
|
|
105
105
|
o(s2, t2, a2);
|
|
106
106
|
}
|
|
107
107
|
}
|
|
@@ -112,10 +112,10 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
112
112
|
if (e2.indexOf("__") > 0 && (t2 = e2.substring(e2.lastIndexOf("__") + 2)), t2) {
|
|
113
113
|
const o2 = a(i2, t2);
|
|
114
114
|
if (o2) {
|
|
115
|
-
const t3 = o2.getConfigure(), i3 = t3.code ? t3.code : e2, a2 = C(t3, i3), r3 = n(s2, a2), l3 = o2.getTableSelectOptions(e2), c3 = o2.getColumns(), u2 = {},
|
|
115
|
+
const t3 = o2.getConfigure(), i3 = t3.code ? t3.code : e2, a2 = C(t3, i3), r3 = n(s2, a2), l3 = o2.getTableSelectOptions(e2), c3 = o2.getColumns(), u2 = {}, f2 = {};
|
|
116
116
|
c3 && c3.length > 0 && c3.forEach((e3) => {
|
|
117
|
-
"DATE" !== e3.dataType && "TIME" !== e3.dataType || (
|
|
118
|
-
}), u2.formatDateColumns =
|
|
117
|
+
"DATE" !== e3.dataType && "TIME" !== e3.dataType || (f2[e3.prop] = e3);
|
|
118
|
+
}), u2.formatDateColumns = f2, V(l3, r3, u2, o2);
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
}
|
|
@@ -124,15 +124,24 @@ const v = { showElement: function(e2, t2, n2) {
|
|
|
124
124
|
var _a, _b, _c, _d;
|
|
125
125
|
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));
|
|
126
126
|
}, isHasFieldAuth(e2, t2) {
|
|
127
|
-
|
|
127
|
+
T(e2, null, t2);
|
|
128
128
|
}, isHasFieldAuthWithTable(e2, t2, n2) {
|
|
129
|
-
|
|
129
|
+
T(e2, t2, n2);
|
|
130
130
|
}, scrollIntoComponentWithUuid(e2, t2) {
|
|
131
131
|
$(e2, t2);
|
|
132
132
|
}, scrollIntoComponentWithCode(e2, t2) {
|
|
133
|
-
|
|
133
|
+
k(e2, t2);
|
|
134
|
+
}, isSignerTaskTransactor(e2, t2) {
|
|
135
|
+
if (!t2) return true;
|
|
136
|
+
const n2 = e2.entity.task;
|
|
137
|
+
if (n2) {
|
|
138
|
+
if (n2.sourceTrustor) return t2 === n2.sourceTrustor;
|
|
139
|
+
if (n2.sourceAssigner) return t2 === n2.sourceAssigner || !(!n2.transactor || t2 !== n2.transactor);
|
|
140
|
+
if (n2.transactor && t2 === n2.transactor) return true;
|
|
141
|
+
}
|
|
142
|
+
return false;
|
|
134
143
|
} };
|
|
135
|
-
function
|
|
144
|
+
function V(e2, t2, n2, o2) {
|
|
136
145
|
if (e2 && t2) {
|
|
137
146
|
const i2 = o2.getSuperGridRef();
|
|
138
147
|
t2.forEach((t3) => {
|
|
@@ -148,21 +157,21 @@ function j(e2, t2, n2, o2) {
|
|
|
148
157
|
let s2;
|
|
149
158
|
if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
|
|
150
159
|
if (o3) {
|
|
151
|
-
s2 =
|
|
160
|
+
s2 = j(o3.split(","), a2);
|
|
152
161
|
}
|
|
153
|
-
} else s2 =
|
|
162
|
+
} else s2 = j(o3, a2);
|
|
154
163
|
t3[n3] = s2;
|
|
155
164
|
});
|
|
156
165
|
});
|
|
157
166
|
}
|
|
158
167
|
}
|
|
159
|
-
function
|
|
168
|
+
function j(e2, t2) {
|
|
160
169
|
let n2;
|
|
161
170
|
return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((o2) => {
|
|
162
|
-
n2 = n2 +
|
|
163
|
-
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 =
|
|
171
|
+
n2 = n2 + A(e2, t2) + ",";
|
|
172
|
+
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = A(e2, t2))), n2;
|
|
164
173
|
}
|
|
165
|
-
function
|
|
174
|
+
function A(e2, t2) {
|
|
166
175
|
let n2 = e2;
|
|
167
176
|
if (null != e2 && t2) for (let o2 = 0; o2 < t2.length; o2++) {
|
|
168
177
|
const i2 = t2[o2].value, a2 = t2[o2].label ? t2[o2].label : t2[o2].name;
|
|
@@ -173,7 +182,7 @@ function V(e2, t2) {
|
|
|
173
182
|
}
|
|
174
183
|
return n2;
|
|
175
184
|
}
|
|
176
|
-
function
|
|
185
|
+
function D(e2, t2, n2) {
|
|
177
186
|
e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = n2;
|
|
178
187
|
}
|
|
179
188
|
export {
|