super-page-runtime 2.3.3 → 2.3.4
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/barcode-util.js +5 -5
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +46 -45
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +16 -14
- package/dist/es/components/runtime/utils/charts/chart-util.js +26 -24
- package/dist/es/components/runtime/utils/events/event-util.js +116 -116
- package/dist/es/components/runtime/utils/events/print-label.js +1 -0
- package/dist/es/components/runtime/utils/events/standard-event.js +475 -463
- package/dist/es/components/runtime/utils/events/validator-util.js +1 -1
- package/dist/es/components/runtime/utils/form/scan-util.js +4 -3
- package/dist/es/components/runtime/utils/page-helper-util.js +275 -275
- package/dist/es/components/runtime/utils/page-init-util.js +47 -44
- package/dist/es/components/runtime/utils/page-store.js +10 -10
- package/dist/es/components/runtime/utils/table-utils.js +30 -30
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +16 -12
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +15 -14
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +12 -11
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +18 -17
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +19 -18
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +19 -18
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +21 -19
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +1 -1
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +3 -3
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +55 -55
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +37 -35
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +123 -120
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +58 -57
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +1 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +29 -29
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +27 -27
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +27 -27
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +6 -6
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +10 -10
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +1 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +8 -8
- package/dist/es/components/runtime/views/home-chart.vue.d.ts +3 -3
- package/dist/es/components/runtime/views/home-chart.vue.js +25 -23
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +6 -6
- package/dist/es/components/runtime/views/super-page.vue.js +1 -1
- package/dist/es/components/runtime/views/super-page.vue2.js +131 -130
- package/dist/es/i18n/langs/cn.js +1 -1
- package/dist/es/i18n/langs/en.js +1 -1
- package/dist/es/style.css +87 -87
- package/package.json +2 -2
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
function e(e2,
|
|
2
|
-
let
|
|
1
|
+
function e(e2, n) {
|
|
2
|
+
let t = true, r = "";
|
|
3
3
|
return e2.forEach((e3) => {
|
|
4
4
|
if ("-1" !== e3.propDbName && -1 !== e3.propDbName) {
|
|
5
|
-
const a =
|
|
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 :
|
|
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;
|
|
7
7
|
} else r += e3.fixedValue;
|
|
8
|
-
}),
|
|
8
|
+
}), console.log("跟据规则生成条码:" + r), t ? r : null;
|
|
9
9
|
}
|
|
10
10
|
export {
|
|
11
11
|
e as generateCodeByRule
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { getValueFromSource as o, setValueForVariableName as
|
|
2
|
-
import { deepCopy as
|
|
3
|
-
import { CommonName as
|
|
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";
|
|
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,67 +13,68 @@ 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 = {},
|
|
17
|
-
for (const o2 of d) y[o2.group] = o2.target, o2.target && !
|
|
18
|
-
let
|
|
19
|
-
|
|
20
|
-
for (const
|
|
21
|
-
if (!
|
|
22
|
-
const
|
|
23
|
-
for (const
|
|
24
|
-
const
|
|
25
|
-
l2 &&
|
|
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);
|
|
26
26
|
}
|
|
27
|
-
const
|
|
28
|
-
|
|
27
|
+
const t2 = s2.join(F);
|
|
28
|
+
e2[r.X_FIELD_NAME] = t2;
|
|
29
29
|
}
|
|
30
|
-
const
|
|
31
|
-
if (0 ==
|
|
30
|
+
const E = u.items ? u.items : [];
|
|
31
|
+
if (0 == E.length) return void console.log("饼图的系列为空,操作失败!", u);
|
|
32
32
|
const S = u.props ? u.props : {};
|
|
33
33
|
let _ = S.yaxisField;
|
|
34
|
-
if (
|
|
35
|
-
const
|
|
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);
|
|
36
36
|
let n2 = S.formula ? S.formula : "";
|
|
37
|
-
for (const o2 in
|
|
38
|
-
_ =
|
|
37
|
+
for (const o2 in s2) n2 = n2.replace(new RegExp(o2.replace("$", "\\$"), "g"), s2[o2]);
|
|
38
|
+
_ = r.Y_TEMP_NAME;
|
|
39
39
|
const p2 = {};
|
|
40
|
-
for (const
|
|
41
|
-
if (!
|
|
42
|
-
for (const
|
|
43
|
-
const
|
|
44
|
-
let
|
|
45
|
-
void 0 ===
|
|
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;
|
|
46
46
|
}
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
console.log("formula", n2);
|
|
48
|
+
const r2 = l(n2, p2, s3, i2);
|
|
49
|
+
console.log("formula-result", r2), s3[_] = r2;
|
|
49
50
|
}
|
|
50
51
|
}
|
|
51
|
-
|
|
52
|
+
E[0].props.yaxisField = _, E[0].props.yaxisSource = "", n(i2, u, h), h = p(i2, u, h, v, [_]);
|
|
52
53
|
const A = [], D = [];
|
|
53
|
-
for (const
|
|
54
|
-
if (!
|
|
55
|
-
A.push(
|
|
56
|
-
const
|
|
57
|
-
D.push(
|
|
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);
|
|
58
59
|
}
|
|
59
60
|
const M = u.defaultSeries;
|
|
60
61
|
let N = M[0].pieColors;
|
|
61
62
|
N = N || [];
|
|
62
63
|
let j = M[0].pieColorMap;
|
|
63
64
|
j = j || {};
|
|
64
|
-
const
|
|
65
|
+
const V = [];
|
|
65
66
|
for (let o2 = 0; o2 < A.length && o2 < D.length; o2++) {
|
|
66
|
-
const
|
|
67
|
-
if (o2 < N.length || j[
|
|
68
|
-
let
|
|
69
|
-
|
|
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 });
|
|
70
71
|
}
|
|
71
|
-
|
|
72
|
+
V.push(e2);
|
|
72
73
|
}
|
|
73
|
-
const
|
|
74
|
-
|
|
75
|
-
const
|
|
76
|
-
!(u.props ? u.props.enableDrill : null) &&
|
|
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;
|
|
77
78
|
}
|
|
78
79
|
export {
|
|
79
80
|
i as updateChartOption
|
|
@@ -1,44 +1,46 @@
|
|
|
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,
|
|
5
|
-
if (!
|
|
6
|
-
const u =
|
|
7
|
-
let
|
|
8
|
-
|
|
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 = []);
|
|
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,
|
|
14
|
+
const m = [], x = i(d, f, 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
|
|
21
|
+
for (const s2 of f) 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,
|
|
29
|
-
if (
|
|
28
|
+
const t2 = i2.data, l2 = [];
|
|
29
|
+
if (l2.push(o(s2, i2.xaxisField, void 0)), "formula" === i2.yaxisSource) {
|
|
30
30
|
const o2 = e(i2.formula, y, s2, r2);
|
|
31
|
-
|
|
32
|
-
} else
|
|
33
|
-
i2.sizeField ?
|
|
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);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
-
const F = t.defaultSeries
|
|
36
|
+
const F = t.defaultSeries;
|
|
37
|
+
console.log("defaultSeries", F);
|
|
38
|
+
const h = s(F);
|
|
37
39
|
for (const o2 of h) {
|
|
38
40
|
const s2 = p[o2.uuid];
|
|
39
41
|
o2.data = s2.data;
|
|
40
42
|
}
|
|
41
|
-
|
|
43
|
+
l.series = h, t.cacheDatas = f, t.rawResult = a;
|
|
42
44
|
}
|
|
43
45
|
export {
|
|
44
46
|
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
|
|
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";
|
|
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 r2;
|
|
19
|
+
if (Array.isArray(r2)) return console.log("numformatter is array", r2), 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 a2 = "";
|
|
26
|
-
t2.indexOf("prefix") > -1 && n2 && (a2 = n2);
|
|
27
25
|
let l2 = "";
|
|
28
|
-
|
|
26
|
+
t2.indexOf("prefix") > -1 && n2 && (l2 = n2);
|
|
27
|
+
let a2 = "";
|
|
28
|
+
return t2.indexOf("append") > -1 && i2 && (a2 = i2), l2 + r2.toLocaleString() + a2;
|
|
29
29
|
};
|
|
30
30
|
}
|
|
31
31
|
function g(t2, e2) {
|
|
@@ -51,18 +51,20 @@ 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 : []
|
|
54
|
+
let o2 = e2.highlightInfos ? e2.highlightInfos : [];
|
|
55
|
+
console.log("highlightInfos", o2, s2);
|
|
56
|
+
let r2 = -1;
|
|
55
57
|
if (o2) {
|
|
56
58
|
const t3 = [];
|
|
57
|
-
for (let
|
|
58
|
-
const
|
|
59
|
+
for (let l2 = 0; l2 < o2.length; l2++) {
|
|
60
|
+
const a2 = o2[l2], c2 = a2.seriesIndex === s2.seriesIndex && a2.dataIndex === s2.dataIndex;
|
|
59
61
|
if (c2 || !i2.multiple) {
|
|
60
62
|
if (i2.selected) {
|
|
61
63
|
const t4 = "chart-pie" === e2.name ? "unselect" : "downplay";
|
|
62
|
-
n2.dispatchAction({ type: t4, seriesIndex:
|
|
64
|
+
n2.dispatchAction({ type: t4, seriesIndex: a2.seriesIndex, dataIndex: a2.dataIndex });
|
|
63
65
|
}
|
|
64
|
-
} else t3.push(
|
|
65
|
-
c2 && (r2 =
|
|
66
|
+
} else t3.push(a2);
|
|
67
|
+
c2 && (r2 = l2);
|
|
66
68
|
}
|
|
67
69
|
o2 = t3;
|
|
68
70
|
}
|
|
@@ -89,12 +91,12 @@ function b(t2, e2) {
|
|
|
89
91
|
if (!e2.clickSet) return;
|
|
90
92
|
const n2 = e2.clickSet, i2 = n2.variables;
|
|
91
93
|
if (!i2 || 0 == i2.length) return;
|
|
92
|
-
const r2 = e2.highlightInfos ? e2.highlightInfos : [],
|
|
93
|
-
for (const t3 of r2) c2.includes(t3.dataIndex) || (c2.push(t3.dataIndex), t3.dataIndex <
|
|
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]));
|
|
94
96
|
for (const e3 of i2) {
|
|
95
97
|
if (!e3.fieldName || !e3.variable) continue;
|
|
96
98
|
const i3 = [];
|
|
97
|
-
for (const t3 of
|
|
99
|
+
for (const t3 of a2) {
|
|
98
100
|
const n3 = s(t3, e3.fieldName, void 0);
|
|
99
101
|
null != n3 && i3.push(n3);
|
|
100
102
|
}
|
|
@@ -115,11 +117,11 @@ function v(t2, e2, n2) {
|
|
|
115
117
|
}
|
|
116
118
|
}
|
|
117
119
|
if (!r2) return;
|
|
118
|
-
const
|
|
120
|
+
const a2 = e2.props ? e2.props.orderSource : "";
|
|
119
121
|
let c2 = e2.props ? e2.props.orderFix : "";
|
|
120
|
-
if ("variable" ==
|
|
122
|
+
if ("variable" == a2) {
|
|
121
123
|
const n3 = e2.props ? e2.props.orderVariable : "";
|
|
122
|
-
c2 =
|
|
124
|
+
c2 = l(t2, n3);
|
|
123
125
|
}
|
|
124
126
|
c2 = "desc" == c2 || "DESC" == c2 ? "desc" : "asc", n2.sort((t3, e3) => {
|
|
125
127
|
const n3 = s(t3, r2, void 0), i3 = s(e3, r2, void 0);
|
|
@@ -130,14 +132,14 @@ function N(t2, e2, n2, i2, o2) {
|
|
|
130
132
|
if (!n2) return n2;
|
|
131
133
|
const r2 = e2.props ? e2.props : {};
|
|
132
134
|
if (!r2.limitQuantity) return n2;
|
|
133
|
-
let
|
|
134
|
-
if (r2.itemNumVariable ? (
|
|
135
|
-
if (n2.length <
|
|
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;
|
|
136
138
|
const c2 = r2.overItemAlias, f2 = [], u2 = {};
|
|
137
139
|
i2 = i2 || [], o2 = o2 || [];
|
|
138
140
|
for (let t3 = 0; t3 < n2.length; t3++) {
|
|
139
141
|
const e3 = n2[t3];
|
|
140
|
-
if (t3 <
|
|
142
|
+
if (t3 < a2) f2.push(e3);
|
|
141
143
|
else {
|
|
142
144
|
if (!c2) break;
|
|
143
145
|
for (const t4 of i2) {
|
|
@@ -212,11 +214,11 @@ function k(t2, e2, n2, i2) {
|
|
|
212
214
|
const o2 = r(t2);
|
|
213
215
|
for (const e3 of o2) {
|
|
214
216
|
let o3 = null;
|
|
215
|
-
o3 = e3.startsWith("${row.") ? s(n2, e3.substring(6, e3.length - 1), 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);
|
|
216
218
|
}
|
|
217
219
|
t2.includes("return ") || (t2 = "return " + t2);
|
|
218
|
-
const
|
|
219
|
-
return f(
|
|
220
|
+
const l2 = new Function("params", t2);
|
|
221
|
+
return f(l2, i2), l2({ pageContext: i2, row: n2 });
|
|
220
222
|
}
|
|
221
223
|
function M(t2) {
|
|
222
224
|
if (!t2 || !t2.$el) return;
|