ui-process-h5 2.0.4 → 2.1.5
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/package.json +1 -1
- package/v2/style.css +1 -1
- package/v2/ui-process-h5.js +117 -118
- package/v2/ui-process-h5.umd.cjs +1 -1
- package/v2.7/style.css +1 -1
- package/v2.7/ui-process-h5.js +12 -13
- package/v2.7/ui-process-h5.umd.cjs +1 -1
- package/v3/style.css +1 -1
- package/v3/ui-process-h5.js +1343 -1531
- package/v3/ui-process-h5.umd.cjs +5 -5
package/v2/ui-process-h5.js
CHANGED
|
@@ -102,14 +102,14 @@ function yi(e, i) {
|
|
|
102
102
|
s[t] = e[t + i];
|
|
103
103
|
return s;
|
|
104
104
|
}
|
|
105
|
-
function
|
|
105
|
+
function O(e, i) {
|
|
106
106
|
for (var t in i)
|
|
107
107
|
e[t] = i[t];
|
|
108
108
|
return e;
|
|
109
109
|
}
|
|
110
110
|
function Zn(e) {
|
|
111
111
|
for (var i = {}, t = 0; t < e.length; t++)
|
|
112
|
-
e[t] &&
|
|
112
|
+
e[t] && O(i, e[t]);
|
|
113
113
|
return i;
|
|
114
114
|
}
|
|
115
115
|
function L(e, i, t) {
|
|
@@ -174,7 +174,7 @@ var Is = "data-server-rendered", ii = [
|
|
|
174
174
|
"deactivated",
|
|
175
175
|
"errorCaptured",
|
|
176
176
|
"serverPrefetch"
|
|
177
|
-
],
|
|
177
|
+
], S = {
|
|
178
178
|
optionMergeStrategies: /* @__PURE__ */ Object.create(null),
|
|
179
179
|
silent: !1,
|
|
180
180
|
productionTip: process.env.NODE_ENV !== "production",
|
|
@@ -263,9 +263,9 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
263
263
|
};
|
|
264
264
|
A = function(e, i) {
|
|
265
265
|
var t = i ? oi(i) : "";
|
|
266
|
-
|
|
266
|
+
S.warnHandler ? S.warnHandler.call(null, e, i, t) : Es && !S.silent && console.error("[Vue warn]: " + e + t);
|
|
267
267
|
}, Ki = function(e, i) {
|
|
268
|
-
Es && !
|
|
268
|
+
Es && !S.silent && console.warn("[Vue tip]: " + e + (i ? oi(i) : ""));
|
|
269
269
|
}, De = function(e, i) {
|
|
270
270
|
if (e.$root === e)
|
|
271
271
|
return "<Root>";
|
|
@@ -276,7 +276,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
276
276
|
}
|
|
277
277
|
return (s ? "<" + xr(s) + ">" : "<Anonymous>") + (n && i !== !1 ? " at " + n : "");
|
|
278
278
|
};
|
|
279
|
-
var
|
|
279
|
+
var Sr = function(e, i) {
|
|
280
280
|
for (var t = ""; i; )
|
|
281
281
|
i % 2 === 1 && (t += e), i > 1 && (e += e), i >>= 1;
|
|
282
282
|
return t;
|
|
@@ -299,7 +299,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
299
299
|
found in
|
|
300
300
|
|
|
301
301
|
` + i.map(function(n, a) {
|
|
302
|
-
return "" + (a === 0 ? "---> " :
|
|
302
|
+
return "" + (a === 0 ? "---> " : Sr(" ", 5 + a * 2)) + (Array.isArray(n) ? De(n[0]) + "... (" + n[1] + " recursive calls)" : De(n));
|
|
303
303
|
}).join(`
|
|
304
304
|
`);
|
|
305
305
|
} else
|
|
@@ -308,8 +308,8 @@ found in
|
|
|
308
308
|
(found in ` + De(e) + ")";
|
|
309
309
|
};
|
|
310
310
|
}
|
|
311
|
-
var
|
|
312
|
-
this.id =
|
|
311
|
+
var Or = 0, Y = function() {
|
|
312
|
+
this.id = Or++, this.subs = [];
|
|
313
313
|
};
|
|
314
314
|
Y.prototype.addSub = function(i) {
|
|
315
315
|
this.subs.push(i);
|
|
@@ -322,7 +322,7 @@ Y.prototype.depend = function() {
|
|
|
322
322
|
};
|
|
323
323
|
Y.prototype.notify = function() {
|
|
324
324
|
var i = this.subs.slice();
|
|
325
|
-
process.env.NODE_ENV !== "production" && !
|
|
325
|
+
process.env.NODE_ENV !== "production" && !S.async && i.sort(function(n, a) {
|
|
326
326
|
return n.id - a.id;
|
|
327
327
|
});
|
|
328
328
|
for (var t = 0, s = i.length; t < s; t++)
|
|
@@ -469,7 +469,7 @@ function oa(e) {
|
|
|
469
469
|
for (var i = void 0, t = 0, s = e.length; t < s; t++)
|
|
470
470
|
i = e[t], i && i.__ob__ && i.__ob__.dep.depend(), Array.isArray(i) && oa(i);
|
|
471
471
|
}
|
|
472
|
-
var X =
|
|
472
|
+
var X = S.optionMergeStrategies;
|
|
473
473
|
process.env.NODE_ENV !== "production" && (X.el = X.propsData = function(e, i, t, s) {
|
|
474
474
|
return t || A(
|
|
475
475
|
'option "' + s + '" can only be used during instance creation with the `new` keyword.'
|
|
@@ -513,7 +513,7 @@ $n.forEach(function(e) {
|
|
|
513
513
|
});
|
|
514
514
|
function Ur(e, i, t, s) {
|
|
515
515
|
var n = Object.create(e || null);
|
|
516
|
-
return i ? (process.env.NODE_ENV !== "production" && Zi(s, i, t),
|
|
516
|
+
return i ? (process.env.NODE_ENV !== "production" && Zi(s, i, t), O(n, i)) : n;
|
|
517
517
|
}
|
|
518
518
|
ii.forEach(function(e) {
|
|
519
519
|
X[e + "s"] = Ur;
|
|
@@ -524,7 +524,7 @@ X.watch = function(e, i, t, s) {
|
|
|
524
524
|
if (process.env.NODE_ENV !== "production" && Zi(s, i, t), !e)
|
|
525
525
|
return i;
|
|
526
526
|
var n = {};
|
|
527
|
-
|
|
527
|
+
O(n, e);
|
|
528
528
|
for (var a in i) {
|
|
529
529
|
var r = n[a], o = i[a];
|
|
530
530
|
r && !Array.isArray(r) && (r = [r]), n[a] = r ? r.concat(o) : Array.isArray(o) ? o : [o];
|
|
@@ -535,7 +535,7 @@ X.props = X.methods = X.inject = X.computed = function(e, i, t, s) {
|
|
|
535
535
|
if (i && process.env.NODE_ENV !== "production" && Zi(s, i, t), !e)
|
|
536
536
|
return i;
|
|
537
537
|
var n = /* @__PURE__ */ Object.create(null);
|
|
538
|
-
return
|
|
538
|
+
return O(n, e), i && O(n, i), n;
|
|
539
539
|
};
|
|
540
540
|
X.provide = Ti;
|
|
541
541
|
var la = function(e, i) {
|
|
@@ -548,7 +548,7 @@ function Vr(e) {
|
|
|
548
548
|
function Wi(e) {
|
|
549
549
|
new RegExp("^[a-zA-Z][\\-\\.0-9_" + ea.source + "]*$").test(e) || A(
|
|
550
550
|
'Invalid component name: "' + e + '". Component names should conform to valid custom element name in html5 specification.'
|
|
551
|
-
), (gr(e) ||
|
|
551
|
+
), (gr(e) || S.isReservedTag(e)) && A(
|
|
552
552
|
"Do not use built-in or reserved HTML elements as component id: " + e
|
|
553
553
|
);
|
|
554
554
|
}
|
|
@@ -580,7 +580,7 @@ function Jr(e, i) {
|
|
|
580
580
|
else if (R(t))
|
|
581
581
|
for (var a in t) {
|
|
582
582
|
var r = t[a];
|
|
583
|
-
s[a] = R(r) ?
|
|
583
|
+
s[a] = R(r) ? O({ from: a }, r) : { from: r };
|
|
584
584
|
}
|
|
585
585
|
else
|
|
586
586
|
process.env.NODE_ENV !== "production" && A(
|
|
@@ -786,15 +786,15 @@ function st(e, i, t, s, n) {
|
|
|
786
786
|
return a;
|
|
787
787
|
}
|
|
788
788
|
function xs(e, i, t) {
|
|
789
|
-
if (
|
|
789
|
+
if (S.errorHandler)
|
|
790
790
|
try {
|
|
791
|
-
return
|
|
791
|
+
return S.errorHandler.call(null, e, i, t);
|
|
792
792
|
} catch (s) {
|
|
793
|
-
s !== e &&
|
|
793
|
+
s !== e && Ss(s, null, "config.errorHandler");
|
|
794
794
|
}
|
|
795
|
-
|
|
795
|
+
Ss(e, i, t);
|
|
796
796
|
}
|
|
797
|
-
function
|
|
797
|
+
function Ss(e, i, t) {
|
|
798
798
|
if (process.env.NODE_ENV !== "production" && A("Error in " + t + ': "' + e.toString() + '"', i), (j || qi) && typeof console < "u")
|
|
799
799
|
console.error(e);
|
|
800
800
|
else
|
|
@@ -815,11 +815,11 @@ if (typeof Promise < "u" && Qe(Promise)) {
|
|
|
815
815
|
zr.then(xt), Nr && setTimeout(L);
|
|
816
816
|
}, ki = !0;
|
|
817
817
|
} else if (!rt && typeof MutationObserver < "u" && (Qe(MutationObserver) || MutationObserver.toString() === "[object MutationObserverConstructor]")) {
|
|
818
|
-
var
|
|
819
|
-
Xr.observe(
|
|
818
|
+
var St = 1, Xr = new MutationObserver(xt), Os = document.createTextNode(String(St));
|
|
819
|
+
Xr.observe(Os, {
|
|
820
820
|
characterData: !0
|
|
821
821
|
}), dt = function() {
|
|
822
|
-
|
|
822
|
+
St = (St + 1) % 2, Os.data = String(St);
|
|
823
823
|
}, ki = !0;
|
|
824
824
|
} else
|
|
825
825
|
typeof setImmediate < "u" && Qe(setImmediate) ? dt = function() {
|
|
@@ -860,7 +860,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
860
860
|
}, Ps = typeof Proxy < "u" && Qe(Proxy);
|
|
861
861
|
if (Ps) {
|
|
862
862
|
var eo = W("stop,prevent,self,ctrl,shift,alt,meta,exact");
|
|
863
|
-
|
|
863
|
+
S.keyCodes = new Proxy(S.keyCodes, {
|
|
864
864
|
set: function(i, t, s) {
|
|
865
865
|
return eo(t) ? (A("Avoid overwriting built-in modifier in config.keyCodes: ." + t), !1) : (i[t] = s, !0);
|
|
866
866
|
}
|
|
@@ -1115,7 +1115,7 @@ function po(e, i) {
|
|
|
1115
1115
|
}
|
|
1116
1116
|
function uo(e, i, t, s) {
|
|
1117
1117
|
var n = this.$scopedSlots[e], a;
|
|
1118
|
-
n ? (t = t || {}, s && (process.env.NODE_ENV !== "production" && !U(s) && A("slot v-bind without argument expects an Object", this), t =
|
|
1118
|
+
n ? (t = t || {}, s && (process.env.NODE_ENV !== "production" && !U(s) && A("slot v-bind without argument expects an Object", this), t = O(O({}, s), t)), a = n(t) || (typeof i == "function" ? i() : i)) : a = this.$slots[e] || (typeof i == "function" ? i() : i);
|
|
1119
1119
|
var r = t && t.slot;
|
|
1120
1120
|
return r ? this.$createElement("template", { slot: r }, a) : a;
|
|
1121
1121
|
}
|
|
@@ -1126,8 +1126,8 @@ function Us(e, i) {
|
|
|
1126
1126
|
return Array.isArray(e) ? e.indexOf(i) === -1 : e !== i;
|
|
1127
1127
|
}
|
|
1128
1128
|
function fo(e, i, t, s, n) {
|
|
1129
|
-
var a =
|
|
1130
|
-
return n && s && !
|
|
1129
|
+
var a = S.keyCodes[i] || t;
|
|
1130
|
+
return n && s && !S.keyCodes[i] ? Us(n, s) : a ? Us(a, e) : s ? je(s) !== i : e === void 0;
|
|
1131
1131
|
}
|
|
1132
1132
|
function mo(e, i, t, s, n) {
|
|
1133
1133
|
if (t)
|
|
@@ -1143,7 +1143,7 @@ function mo(e, i, t, s, n) {
|
|
|
1143
1143
|
a = e;
|
|
1144
1144
|
else {
|
|
1145
1145
|
var d = e.attrs && e.attrs.type;
|
|
1146
|
-
a = s ||
|
|
1146
|
+
a = s || S.mustUseProp(i, d, l) ? e.domProps || (e.domProps = {}) : e.attrs || (e.attrs = {});
|
|
1147
1147
|
}
|
|
1148
1148
|
var h = Ge(l), m = je(l);
|
|
1149
1149
|
if (!(h in a) && !(m in a) && (a[l] = t[l], n)) {
|
|
@@ -1187,7 +1187,7 @@ function vo(e, i) {
|
|
|
1187
1187
|
this
|
|
1188
1188
|
);
|
|
1189
1189
|
else {
|
|
1190
|
-
var t = e.on = e.on ?
|
|
1190
|
+
var t = e.on = e.on ? O({}, e.on) : {};
|
|
1191
1191
|
for (var s in i) {
|
|
1192
1192
|
var n = t[s], a = i[s];
|
|
1193
1193
|
t[s] = n ? [].concat(n, a) : a;
|
|
@@ -1312,7 +1312,7 @@ function Rs(e, i, t, s, n) {
|
|
|
1312
1312
|
}
|
|
1313
1313
|
var r;
|
|
1314
1314
|
if (C(e.cid) && (r = e, e = Do(r, a), e === void 0))
|
|
1315
|
-
return
|
|
1315
|
+
return Oo(
|
|
1316
1316
|
r,
|
|
1317
1317
|
i,
|
|
1318
1318
|
t,
|
|
@@ -1388,11 +1388,11 @@ Always create fresh vnode data objects in each render!`,
|
|
|
1388
1388
|
var a, r;
|
|
1389
1389
|
if (typeof i == "string") {
|
|
1390
1390
|
var o;
|
|
1391
|
-
r = e.$vnode && e.$vnode.ns ||
|
|
1391
|
+
r = e.$vnode && e.$vnode.ns || S.getTagNamespace(i), S.isReservedTag(i) ? (process.env.NODE_ENV !== "production" && u(t) && u(t.nativeOn) && t.tag !== "component" && A(
|
|
1392
1392
|
"The .native modifier for v-on is only valid on components but it was used on <" + i + ">.",
|
|
1393
1393
|
e
|
|
1394
1394
|
), a = new q(
|
|
1395
|
-
|
|
1395
|
+
S.parsePlatformTagName(i),
|
|
1396
1396
|
t,
|
|
1397
1397
|
s,
|
|
1398
1398
|
void 0,
|
|
@@ -1436,7 +1436,7 @@ function xo(e) {
|
|
|
1436
1436
|
}, !0)) : (te(e, "$attrs", n && n.attrs || z, null, !0), te(e, "$listeners", i._parentListeners || z, null, !0));
|
|
1437
1437
|
}
|
|
1438
1438
|
var xi = null;
|
|
1439
|
-
function
|
|
1439
|
+
function So(e) {
|
|
1440
1440
|
ma(e.prototype), e.prototype.$nextTick = function(i) {
|
|
1441
1441
|
return $i(i, this);
|
|
1442
1442
|
}, e.prototype._render = function() {
|
|
@@ -1470,7 +1470,7 @@ function Oo(e) {
|
|
|
1470
1470
|
function ci(e, i) {
|
|
1471
1471
|
return (e.__esModule || ni && e[Symbol.toStringTag] === "Module") && (e = e.default), U(e) ? i.extend(e) : e;
|
|
1472
1472
|
}
|
|
1473
|
-
function
|
|
1473
|
+
function Oo(e, i, t, s, n) {
|
|
1474
1474
|
var a = Le();
|
|
1475
1475
|
return a.asyncFactory = e, a.asyncMeta = { data: i, context: t, children: s, tag: n }, a;
|
|
1476
1476
|
}
|
|
@@ -1635,7 +1635,7 @@ function Go(e, i, t) {
|
|
|
1635
1635
|
e
|
|
1636
1636
|
))), ie(e, "beforeMount");
|
|
1637
1637
|
var s;
|
|
1638
|
-
return process.env.NODE_ENV !== "production" &&
|
|
1638
|
+
return process.env.NODE_ENV !== "production" && S.performance && re ? s = function() {
|
|
1639
1639
|
var n = e._name, a = e._uid, r = "vue-perf-start:" + a, o = "vue-perf-end:" + a;
|
|
1640
1640
|
re(r);
|
|
1641
1641
|
var l = e._render();
|
|
@@ -1698,19 +1698,19 @@ function ie(e, i) {
|
|
|
1698
1698
|
st(t[n], e, null, e, s);
|
|
1699
1699
|
e._hasHookEvent && e.$emit("hook:" + i), It();
|
|
1700
1700
|
}
|
|
1701
|
-
var _o = 100, de = [], as = [], yt = {}, Ut = {},
|
|
1701
|
+
var _o = 100, de = [], as = [], yt = {}, Ut = {}, Si = !1, rs = !1, Xe = 0;
|
|
1702
1702
|
function Ro() {
|
|
1703
|
-
Xe = de.length = as.length = 0, yt = {}, process.env.NODE_ENV !== "production" && (Ut = {}),
|
|
1703
|
+
Xe = de.length = as.length = 0, yt = {}, process.env.NODE_ENV !== "production" && (Ut = {}), Si = rs = !1;
|
|
1704
1704
|
}
|
|
1705
|
-
var Ta = 0,
|
|
1705
|
+
var Ta = 0, Oi = Date.now;
|
|
1706
1706
|
if (j && !rt) {
|
|
1707
1707
|
var pi = window.performance;
|
|
1708
|
-
pi && typeof pi.now == "function" &&
|
|
1708
|
+
pi && typeof pi.now == "function" && Oi() > document.createEvent("Event").timeStamp && (Oi = function() {
|
|
1709
1709
|
return pi.now();
|
|
1710
1710
|
});
|
|
1711
1711
|
}
|
|
1712
1712
|
function qs() {
|
|
1713
|
-
Ta =
|
|
1713
|
+
Ta = Oi(), rs = !0;
|
|
1714
1714
|
var e, i;
|
|
1715
1715
|
for (de.sort(function(n, a) {
|
|
1716
1716
|
return n.id - a.id;
|
|
@@ -1723,7 +1723,7 @@ function qs() {
|
|
|
1723
1723
|
break;
|
|
1724
1724
|
}
|
|
1725
1725
|
var t = as.slice(), s = de.slice();
|
|
1726
|
-
Ro(), Ko(t), qo(s), _t &&
|
|
1726
|
+
Ro(), Ko(t), qo(s), _t && S.devtools && _t.emit("flush");
|
|
1727
1727
|
}
|
|
1728
1728
|
function qo(e) {
|
|
1729
1729
|
for (var i = e.length; i--; ) {
|
|
@@ -1748,8 +1748,8 @@ function Yo(e) {
|
|
|
1748
1748
|
t--;
|
|
1749
1749
|
de.splice(t + 1, 0, e);
|
|
1750
1750
|
}
|
|
1751
|
-
if (!
|
|
1752
|
-
if (
|
|
1751
|
+
if (!Si) {
|
|
1752
|
+
if (Si = !0, process.env.NODE_ENV !== "production" && !S.async) {
|
|
1753
1753
|
qs();
|
|
1754
1754
|
return;
|
|
1755
1755
|
}
|
|
@@ -1847,7 +1847,7 @@ function Zo(e, i) {
|
|
|
1847
1847
|
var d = Xi(l, i, t, e);
|
|
1848
1848
|
if (process.env.NODE_ENV !== "production") {
|
|
1849
1849
|
var h = je(l);
|
|
1850
|
-
(Hn(h) ||
|
|
1850
|
+
(Hn(h) || S.isReservedAttr(h)) && A(
|
|
1851
1851
|
'"' + h + '" is a reserved attribute and cannot be used as component prop.',
|
|
1852
1852
|
e
|
|
1853
1853
|
), te(s, l, d, function() {
|
|
@@ -1992,11 +1992,11 @@ function al(e) {
|
|
|
1992
1992
|
var t = this;
|
|
1993
1993
|
t._uid = nl++;
|
|
1994
1994
|
var s, n;
|
|
1995
|
-
process.env.NODE_ENV !== "production" &&
|
|
1995
|
+
process.env.NODE_ENV !== "production" && S.performance && re && (s = "vue-perf-start:" + t._uid, n = "vue-perf-end:" + t._uid, re(s)), t._isVue = !0, i && i._isComponent ? rl(t, i) : t.$options = Re(
|
|
1996
1996
|
ls(t.constructor),
|
|
1997
1997
|
i || {},
|
|
1998
1998
|
t
|
|
1999
|
-
), process.env.NODE_ENV !== "production" ? ca(t) : t._renderProxy = t, t._self = t, Uo(t), Mo(t), xo(t), ie(t, "beforeCreate"), ro(t), Wo(t), ao(t), ie(t, "created"), process.env.NODE_ENV !== "production" &&
|
|
1999
|
+
), process.env.NODE_ENV !== "production" ? ca(t) : t._renderProxy = t, t._self = t, Uo(t), Mo(t), xo(t), ie(t, "beforeCreate"), ro(t), Wo(t), ao(t), ie(t, "created"), process.env.NODE_ENV !== "production" && S.performance && re && (t._name = De(t, !1), re(n), Yt("vue " + t._name + " init", s, n)), t.$options.el && t.$mount(t.$options.el);
|
|
2000
2000
|
};
|
|
2001
2001
|
}
|
|
2002
2002
|
function rl(e, i) {
|
|
@@ -2012,7 +2012,7 @@ function ls(e) {
|
|
|
2012
2012
|
if (t !== s) {
|
|
2013
2013
|
e.superOptions = t;
|
|
2014
2014
|
var n = ol(e);
|
|
2015
|
-
n &&
|
|
2015
|
+
n && O(e.extendOptions, n), i = e.options = Re(t, e.extendOptions), i.name && (i.components[i.name] = e);
|
|
2016
2016
|
}
|
|
2017
2017
|
}
|
|
2018
2018
|
return i;
|
|
@@ -2030,7 +2030,7 @@ al(D);
|
|
|
2030
2030
|
sl(D);
|
|
2031
2031
|
Fo(D);
|
|
2032
2032
|
Vo(D);
|
|
2033
|
-
|
|
2033
|
+
So(D);
|
|
2034
2034
|
function ll(e) {
|
|
2035
2035
|
e.use = function(i) {
|
|
2036
2036
|
var t = this._installedPlugins || (this._installedPlugins = []);
|
|
@@ -2063,7 +2063,7 @@ function pl(e) {
|
|
|
2063
2063
|
t
|
|
2064
2064
|
), o.super = s, o.options.props && ul(o), o.options.computed && dl(o), o.extend = s.extend, o.mixin = s.mixin, o.use = s.use, ii.forEach(function(l) {
|
|
2065
2065
|
o[l] = s[l];
|
|
2066
|
-
}), r && (o.options.components[r] = o), o.superOptions = s.options, o.extendOptions = t, o.sealedOptions =
|
|
2066
|
+
}), r && (o.options.components[r] = o), o.superOptions = s.options, o.extendOptions = t, o.sealedOptions = O({}, o.options), a[n] = o, o;
|
|
2067
2067
|
};
|
|
2068
2068
|
}
|
|
2069
2069
|
function ul(e) {
|
|
@@ -2086,7 +2086,7 @@ function hl(e) {
|
|
|
2086
2086
|
function Ys(e) {
|
|
2087
2087
|
return e && (e.Ctor.options.name || e.tag);
|
|
2088
2088
|
}
|
|
2089
|
-
function
|
|
2089
|
+
function Ot(e, i) {
|
|
2090
2090
|
return Array.isArray(e) ? e.indexOf(i) > -1 : typeof e == "string" ? e.split(",").indexOf(i) > -1 : Kn(e) ? e.test(i) : !1;
|
|
2091
2091
|
}
|
|
2092
2092
|
function Hs(e, i) {
|
|
@@ -2135,11 +2135,11 @@ var Ws = [String, RegExp, Array], fl = {
|
|
|
2135
2135
|
var i = this;
|
|
2136
2136
|
this.cacheVNode(), this.$watch("include", function(t) {
|
|
2137
2137
|
Hs(i, function(s) {
|
|
2138
|
-
return
|
|
2138
|
+
return Ot(t, s);
|
|
2139
2139
|
});
|
|
2140
2140
|
}), this.$watch("exclude", function(t) {
|
|
2141
2141
|
Hs(i, function(s) {
|
|
2142
|
-
return !
|
|
2142
|
+
return !Ot(t, s);
|
|
2143
2143
|
});
|
|
2144
2144
|
});
|
|
2145
2145
|
},
|
|
@@ -2150,7 +2150,7 @@ var Ws = [String, RegExp, Array], fl = {
|
|
|
2150
2150
|
var i = this.$slots.default, t = va(i), s = t && t.componentOptions;
|
|
2151
2151
|
if (s) {
|
|
2152
2152
|
var n = Ys(s), a = this, r = a.include, o = a.exclude;
|
|
2153
|
-
if (r && (!n || !
|
|
2153
|
+
if (r && (!n || !Ot(r, n)) || o && n && Ot(o, n))
|
|
2154
2154
|
return t;
|
|
2155
2155
|
var l = this, d = l.cache, h = l.keys, m = t.key == null ? s.Ctor.cid + (s.tag ? "::" + s.tag : "") : t.key;
|
|
2156
2156
|
d[m] ? (t.componentInstance = d[m].componentInstance, fe(h, m), h.push(m)) : (this.vnodeToCache = t, this.keyToCache = m), t.data.keepAlive = !0;
|
|
@@ -2163,21 +2163,21 @@ var Ws = [String, RegExp, Array], fl = {
|
|
|
2163
2163
|
function Al(e) {
|
|
2164
2164
|
var i = {};
|
|
2165
2165
|
i.get = function() {
|
|
2166
|
-
return
|
|
2166
|
+
return S;
|
|
2167
2167
|
}, process.env.NODE_ENV !== "production" && (i.set = function() {
|
|
2168
2168
|
A(
|
|
2169
2169
|
"Do not replace the Vue.config object, set individual fields instead."
|
|
2170
2170
|
);
|
|
2171
2171
|
}), Object.defineProperty(e, "config", i), e.util = {
|
|
2172
2172
|
warn: A,
|
|
2173
|
-
extend:
|
|
2173
|
+
extend: O,
|
|
2174
2174
|
mergeOptions: Re,
|
|
2175
2175
|
defineReactive: te
|
|
2176
2176
|
}, e.set = Hi, e.delete = ra, e.nextTick = $i, e.observable = function(t) {
|
|
2177
2177
|
return _e(t), t;
|
|
2178
2178
|
}, e.options = /* @__PURE__ */ Object.create(null), ii.forEach(function(t) {
|
|
2179
2179
|
e.options[t + "s"] = /* @__PURE__ */ Object.create(null);
|
|
2180
|
-
}), e.options._base = e,
|
|
2180
|
+
}), e.options._base = e, O(e.options.components, ml), ll(e), cl(e), pl(e), hl(e);
|
|
2181
2181
|
}
|
|
2182
2182
|
Al(D);
|
|
2183
2183
|
Object.defineProperty(D.prototype, "$isServer", {
|
|
@@ -2256,7 +2256,7 @@ function xl(e) {
|
|
|
2256
2256
|
return "math";
|
|
2257
2257
|
}
|
|
2258
2258
|
var Dt = /* @__PURE__ */ Object.create(null);
|
|
2259
|
-
function
|
|
2259
|
+
function Sl(e) {
|
|
2260
2260
|
if (!j)
|
|
2261
2261
|
return !0;
|
|
2262
2262
|
if (Na(e))
|
|
@@ -2267,7 +2267,7 @@ function Ol(e) {
|
|
|
2267
2267
|
return e.indexOf("-") > -1 ? Dt[e] = i.constructor === window.HTMLUnknownElement || i.constructor === window.HTMLElement : Dt[e] = /HTMLUnknownElement/.test(i.toString());
|
|
2268
2268
|
}
|
|
2269
2269
|
var Qi = W("text,number,password,search,email,tel,url");
|
|
2270
|
-
function
|
|
2270
|
+
function Ol(e) {
|
|
2271
2271
|
if (typeof e == "string") {
|
|
2272
2272
|
var i = document.querySelector(e);
|
|
2273
2273
|
return i || (process.env.NODE_ENV !== "production" && A(
|
|
@@ -2345,7 +2345,7 @@ function $e(e, i) {
|
|
|
2345
2345
|
}
|
|
2346
2346
|
}
|
|
2347
2347
|
var Me = new q("", {}, []), pt = ["create", "activate", "update", "remove", "destroy"];
|
|
2348
|
-
function
|
|
2348
|
+
function Se(e, i) {
|
|
2349
2349
|
return e.key === i.key && e.asyncFactory === i.asyncFactory && (e.tag === i.tag && e.isComment === i.isComment && u(e.data) === u(i.data) && Kl(e, i) || M(e.isAsyncPlaceholder) && C(i.asyncFactory.error));
|
|
2350
2350
|
}
|
|
2351
2351
|
function Kl(e, i) {
|
|
@@ -2379,9 +2379,9 @@ function Hl(e) {
|
|
|
2379
2379
|
u(c) && a.removeChild(c, p);
|
|
2380
2380
|
}
|
|
2381
2381
|
function d(p, c) {
|
|
2382
|
-
return !c && !p.ns && !(
|
|
2382
|
+
return !c && !p.ns && !(S.ignoredElements.length && S.ignoredElements.some(function(f) {
|
|
2383
2383
|
return Kn(f) ? f.test(p.tag) : f === p.tag;
|
|
2384
|
-
})) &&
|
|
2384
|
+
})) && S.isUnknownElement(p.tag);
|
|
2385
2385
|
}
|
|
2386
2386
|
var h = 0;
|
|
2387
2387
|
function m(p, c, f, g, y, E, k) {
|
|
@@ -2475,7 +2475,7 @@ function Hl(e) {
|
|
|
2475
2475
|
function lt(p, c, f, g, y) {
|
|
2476
2476
|
var E = 0, k = 0, I = c.length - 1, x = c[0], w = c[I], N = f.length - 1, P = f[0], Z = f[N], xe, ge, ve, Cs, ri = !y;
|
|
2477
2477
|
for (process.env.NODE_ENV !== "production" && Ye(f); E <= I && k <= N; )
|
|
2478
|
-
C(x) ? x = c[++E] : C(w) ? w = c[--I] :
|
|
2478
|
+
C(x) ? x = c[++E] : C(w) ? w = c[--I] : Se(x, P) ? (pe(x, P, g, f, k), x = c[++E], P = f[++k]) : Se(w, Z) ? (pe(w, Z, g, f, N), w = c[--I], Z = f[--N]) : Se(x, Z) ? (pe(x, Z, g, f, N), ri && a.insertBefore(p, x.elm, a.nextSibling(w.elm)), x = c[++E], Z = f[--N]) : Se(w, P) ? (pe(w, P, g, f, k), ri && a.insertBefore(p, w.elm, x.elm), w = c[--I], P = f[++k]) : (C(xe) && (xe = Yl(c, E, I)), ge = u(P.key) ? xe[P.key] : Et(P, c, E, I), C(ge) ? m(P, g, p, x.elm, !1, f, k) : (ve = c[ge], Se(ve, P) ? (pe(ve, P, g, f, k), c[ge] = void 0, ri && a.insertBefore(p, ve.elm, x.elm)) : m(P, g, p, x.elm, !1, f, k)), P = f[++k]);
|
|
2479
2479
|
E > I ? (Cs = C(f[N + 1]) ? null : f[N + 1].elm, Ke(p, Cs, f, k, N, g)) : k > N && ce(c, E, I);
|
|
2480
2480
|
}
|
|
2481
2481
|
function Ye(p) {
|
|
@@ -2490,7 +2490,7 @@ function Hl(e) {
|
|
|
2490
2490
|
function Et(p, c, f, g) {
|
|
2491
2491
|
for (var y = f; y < g; y++) {
|
|
2492
2492
|
var E = c[y];
|
|
2493
|
-
if (u(E) &&
|
|
2493
|
+
if (u(E) && Se(p, E))
|
|
2494
2494
|
return y;
|
|
2495
2495
|
}
|
|
2496
2496
|
}
|
|
@@ -2577,7 +2577,7 @@ function Hl(e) {
|
|
|
2577
2577
|
E = !0, m(f, k);
|
|
2578
2578
|
else {
|
|
2579
2579
|
var I = u(c.nodeType);
|
|
2580
|
-
if (!I &&
|
|
2580
|
+
if (!I && Se(c, f))
|
|
2581
2581
|
pe(c, f, k, null, null, y);
|
|
2582
2582
|
else {
|
|
2583
2583
|
if (I) {
|
|
@@ -2675,7 +2675,7 @@ function Xs(e, i) {
|
|
|
2675
2675
|
var t = i.componentOptions;
|
|
2676
2676
|
if (!(u(t) && t.Ctor.options.inheritAttrs === !1) && !(C(e.data.attrs) && C(i.data.attrs))) {
|
|
2677
2677
|
var s, n, a, r = i.elm, o = e.data.attrs || {}, l = i.data.attrs || {};
|
|
2678
|
-
u(l.__ob__) && (l = i.data.attrs =
|
|
2678
|
+
u(l.__ob__) && (l = i.data.attrs = O({}, l));
|
|
2679
2679
|
for (s in l)
|
|
2680
2680
|
n = l[s], a = o[s], a !== n && $s(r, s, n, i.data.pre);
|
|
2681
2681
|
(rt || ji) && l.value !== o.value && $s(r, "value", l.value);
|
|
@@ -2764,7 +2764,7 @@ var rc = {
|
|
|
2764
2764
|
function nn(e, i) {
|
|
2765
2765
|
if (!(C(e.data.domProps) && C(i.data.domProps))) {
|
|
2766
2766
|
var t, s, n = i.elm, a = e.data.domProps || {}, r = i.data.domProps || {};
|
|
2767
|
-
u(r.__ob__) && (r = i.data.domProps =
|
|
2767
|
+
u(r.__ob__) && (r = i.data.domProps = O({}, r));
|
|
2768
2768
|
for (t in a)
|
|
2769
2769
|
t in r || (n[t] = "");
|
|
2770
2770
|
for (t in r) {
|
|
@@ -2826,7 +2826,7 @@ var pc = {
|
|
|
2826
2826
|
});
|
|
2827
2827
|
function fi(e) {
|
|
2828
2828
|
var i = xa(e.style);
|
|
2829
|
-
return e.staticStyle ?
|
|
2829
|
+
return e.staticStyle ? O(e.staticStyle, i) : i;
|
|
2830
2830
|
}
|
|
2831
2831
|
function xa(e) {
|
|
2832
2832
|
return Array.isArray(e) ? Zn(e) : typeof e == "string" ? uc(e) : e;
|
|
@@ -2835,10 +2835,10 @@ function dc(e, i) {
|
|
|
2835
2835
|
var t = {}, s;
|
|
2836
2836
|
if (i)
|
|
2837
2837
|
for (var n = e; n.componentInstance; )
|
|
2838
|
-
n = n.componentInstance._vnode, n && n.data && (s = fi(n.data)) &&
|
|
2839
|
-
(s = fi(e.data)) &&
|
|
2838
|
+
n = n.componentInstance._vnode, n && n.data && (s = fi(n.data)) && O(t, s);
|
|
2839
|
+
(s = fi(e.data)) && O(t, s);
|
|
2840
2840
|
for (var a = e; a = a.parent; )
|
|
2841
|
-
a.data && (s = fi(a.data)) &&
|
|
2841
|
+
a.data && (s = fi(a.data)) && O(t, s);
|
|
2842
2842
|
return t;
|
|
2843
2843
|
}
|
|
2844
2844
|
var hc = /^--/, an = /\s*!important$/, rn = function(e, i, t) {
|
|
@@ -2867,7 +2867,7 @@ function ln(e, i) {
|
|
|
2867
2867
|
var t = i.data, s = e.data;
|
|
2868
2868
|
if (!(C(t.staticStyle) && C(t.style) && C(s.staticStyle) && C(s.style))) {
|
|
2869
2869
|
var n, a, r = i.elm, o = s.staticStyle, l = s.normalizedStyle || s.style || {}, d = o || l, h = xa(i.data.style) || {};
|
|
2870
|
-
i.data.normalizedStyle = u(h.__ob__) ?
|
|
2870
|
+
i.data.normalizedStyle = u(h.__ob__) ? O({}, h) : h;
|
|
2871
2871
|
var m = dc(i, !0);
|
|
2872
2872
|
for (a in d)
|
|
2873
2873
|
C(m[a]) && rn(r, a, "");
|
|
@@ -2878,11 +2878,11 @@ function ln(e, i) {
|
|
|
2878
2878
|
var mc = {
|
|
2879
2879
|
create: ln,
|
|
2880
2880
|
update: ln
|
|
2881
|
-
},
|
|
2882
|
-
function
|
|
2881
|
+
}, Sa = /\s+/;
|
|
2882
|
+
function Oa(e, i) {
|
|
2883
2883
|
if (!(!i || !(i = i.trim())))
|
|
2884
2884
|
if (e.classList)
|
|
2885
|
-
i.indexOf(" ") > -1 ? i.split(
|
|
2885
|
+
i.indexOf(" ") > -1 ? i.split(Sa).forEach(function(s) {
|
|
2886
2886
|
return e.classList.add(s);
|
|
2887
2887
|
}) : e.classList.add(i);
|
|
2888
2888
|
else {
|
|
@@ -2893,7 +2893,7 @@ function Sa(e, i) {
|
|
|
2893
2893
|
function Da(e, i) {
|
|
2894
2894
|
if (!(!i || !(i = i.trim())))
|
|
2895
2895
|
if (e.classList)
|
|
2896
|
-
i.indexOf(" ") > -1 ? i.split(
|
|
2896
|
+
i.indexOf(" ") > -1 ? i.split(Sa).forEach(function(n) {
|
|
2897
2897
|
return e.classList.remove(n);
|
|
2898
2898
|
}) : e.classList.remove(i), e.classList.length || e.removeAttribute("class");
|
|
2899
2899
|
else {
|
|
@@ -2906,7 +2906,7 @@ function Ma(e) {
|
|
|
2906
2906
|
if (!!e) {
|
|
2907
2907
|
if (typeof e == "object") {
|
|
2908
2908
|
var i = {};
|
|
2909
|
-
return e.css !== !1 &&
|
|
2909
|
+
return e.css !== !1 && O(i, cn(e.name || "v")), O(i, e), i;
|
|
2910
2910
|
} else if (typeof e == "string")
|
|
2911
2911
|
return cn(e);
|
|
2912
2912
|
}
|
|
@@ -2932,7 +2932,7 @@ function La(e) {
|
|
|
2932
2932
|
}
|
|
2933
2933
|
function Ue(e, i) {
|
|
2934
2934
|
var t = e._transitionClasses || (e._transitionClasses = []);
|
|
2935
|
-
t.indexOf(i) < 0 && (t.push(i),
|
|
2935
|
+
t.indexOf(i) < 0 && (t.push(i), Oa(e, i));
|
|
2936
2936
|
}
|
|
2937
2937
|
function he(e, i) {
|
|
2938
2938
|
e._transitionClasses && fe(e._transitionClasses, i), Da(e, i);
|
|
@@ -3228,7 +3228,7 @@ var wc = function(e) {
|
|
|
3228
3228
|
r.key = r.key == null ? r.isComment ? o + "comment" : o + r.tag : Ee(r.key) ? String(r.key).indexOf(o) === 0 ? r.key : o + r.key : r.key;
|
|
3229
3229
|
var l = (r.data || (r.data = {})).transition = qa(this), d = this._vnode, h = Vi(d);
|
|
3230
3230
|
if (r.data.directives && r.data.directives.some(Nc) && (r.data.show = !0), h && h.data && !Ec(r, h) && !At(h) && !(h.componentInstance && h.componentInstance._vnode.isComment)) {
|
|
3231
|
-
var m = h.data.transition =
|
|
3231
|
+
var m = h.data.transition = O({}, l);
|
|
3232
3232
|
if (n === "out-in")
|
|
3233
3233
|
return this._leaving = !0, ye(m, "afterLeave", function() {
|
|
3234
3234
|
t._leaving = !1, t.$forceUpdate();
|
|
@@ -3247,7 +3247,7 @@ var wc = function(e) {
|
|
|
3247
3247
|
return a;
|
|
3248
3248
|
}
|
|
3249
3249
|
}
|
|
3250
|
-
}, ja =
|
|
3250
|
+
}, ja = O({
|
|
3251
3251
|
tag: String,
|
|
3252
3252
|
moveClass: String
|
|
3253
3253
|
}, Ra);
|
|
@@ -3289,7 +3289,7 @@ var xc = {
|
|
|
3289
3289
|
},
|
|
3290
3290
|
updated: function() {
|
|
3291
3291
|
var i = this.prevChildren, t = this.moveClass || (this.name || "v") + "-move";
|
|
3292
|
-
!i.length || !this.hasMove(i[0].elm, t) || (i.forEach(
|
|
3292
|
+
!i.length || !this.hasMove(i[0].elm, t) || (i.forEach(Sc), i.forEach(Oc), i.forEach(Dc), this._reflow = document.body.offsetHeight, i.forEach(function(s) {
|
|
3293
3293
|
if (s.data.moved) {
|
|
3294
3294
|
var n = s.elm, a = n.style;
|
|
3295
3295
|
Ue(n, t), a.transform = a.WebkitTransform = a.transitionDuration = "", n.addEventListener(Zt, n._moveCb = function r(o) {
|
|
@@ -3307,16 +3307,16 @@ var xc = {
|
|
|
3307
3307
|
var s = i.cloneNode();
|
|
3308
3308
|
i._transitionClasses && i._transitionClasses.forEach(function(a) {
|
|
3309
3309
|
Da(s, a);
|
|
3310
|
-
}),
|
|
3310
|
+
}), Oa(s, t), s.style.display = "none", this.$el.appendChild(s);
|
|
3311
3311
|
var n = Ua(s);
|
|
3312
3312
|
return this.$el.removeChild(s), this._hasMove = n.hasTransform;
|
|
3313
3313
|
}
|
|
3314
3314
|
}
|
|
3315
3315
|
};
|
|
3316
|
-
function
|
|
3316
|
+
function Sc(e) {
|
|
3317
3317
|
e.elm._moveCb && e.elm._moveCb(), e.elm._enterCb && e.elm._enterCb();
|
|
3318
3318
|
}
|
|
3319
|
-
function
|
|
3319
|
+
function Oc(e) {
|
|
3320
3320
|
e.data.newPos = e.elm.getBoundingClientRect();
|
|
3321
3321
|
}
|
|
3322
3322
|
function Dc(e) {
|
|
@@ -3335,18 +3335,18 @@ D.config.mustUseProp = yl;
|
|
|
3335
3335
|
D.config.isReservedTag = Na;
|
|
3336
3336
|
D.config.isReservedAttr = gl;
|
|
3337
3337
|
D.config.getTagNamespace = xl;
|
|
3338
|
-
D.config.isUnknownElement =
|
|
3339
|
-
|
|
3340
|
-
|
|
3338
|
+
D.config.isUnknownElement = Sl;
|
|
3339
|
+
O(D.options.directives, Tc);
|
|
3340
|
+
O(D.options.components, Mc);
|
|
3341
3341
|
D.prototype.__patch__ = j ? Cc : L;
|
|
3342
3342
|
D.prototype.$mount = function(e, i) {
|
|
3343
|
-
return e = e && j ?
|
|
3343
|
+
return e = e && j ? Ol(e) : void 0, Go(this, e, i);
|
|
3344
3344
|
};
|
|
3345
3345
|
j && setTimeout(function() {
|
|
3346
|
-
|
|
3346
|
+
S.devtools && (_t ? _t.emit("init", D) : process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" && console[console.info ? "info" : "log"](
|
|
3347
3347
|
`Download the Vue Devtools extension for a better development experience:
|
|
3348
3348
|
https://github.com/vuejs/vue-devtools`
|
|
3349
|
-
)), process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" &&
|
|
3349
|
+
)), process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" && S.productionTip !== !1 && typeof console < "u" && console[console.info ? "info" : "log"](
|
|
3350
3350
|
`You are running Vue in development mode.
|
|
3351
3351
|
Make sure to turn on production mode when deploying for production.
|
|
3352
3352
|
See more tips at https://vuejs.org/guide/deployment.html`
|
|
@@ -3443,8 +3443,8 @@ function Fc(e) {
|
|
|
3443
3443
|
}
|
|
3444
3444
|
var _i = void 0;
|
|
3445
3445
|
try {
|
|
3446
|
-
var
|
|
3447
|
-
|
|
3446
|
+
var Oe = require("vue");
|
|
3447
|
+
Oe && yn(Oe) ? _i = Oe : Oe && "default" in Oe && yn(Oe.default) && (_i = Oe.default);
|
|
3448
3448
|
} catch {
|
|
3449
3449
|
}
|
|
3450
3450
|
var Ve = null, Ze = null, Gt = !0, Ha = "__composition_api_installed__";
|
|
@@ -4390,7 +4390,8 @@ const rr = /* @__PURE__ */ function() {
|
|
|
4390
4390
|
styleZoom: "",
|
|
4391
4391
|
styleOrigin: "",
|
|
4392
4392
|
moveX: "-50%",
|
|
4393
|
-
moveY: "-50%"
|
|
4393
|
+
moveY: "-50%",
|
|
4394
|
+
newScaleData: 1
|
|
4394
4395
|
};
|
|
4395
4396
|
},
|
|
4396
4397
|
watch: {
|
|
@@ -4757,7 +4758,7 @@ var Ep = function() {
|
|
|
4757
4758
|
staticClass: "attch-list--label"
|
|
4758
4759
|
}, [e._v("\u6682\u65E0\u9644\u4EF6")])]);
|
|
4759
4760
|
}];
|
|
4760
|
-
const
|
|
4761
|
+
const Sn = {};
|
|
4761
4762
|
var Np = /* @__PURE__ */ Q(
|
|
4762
4763
|
kp,
|
|
4763
4764
|
Ep,
|
|
@@ -4769,12 +4770,12 @@ var Np = /* @__PURE__ */ Q(
|
|
|
4769
4770
|
null
|
|
4770
4771
|
);
|
|
4771
4772
|
function Bp(e) {
|
|
4772
|
-
for (let i in
|
|
4773
|
-
this[i] =
|
|
4773
|
+
for (let i in Sn)
|
|
4774
|
+
this[i] = Sn[i];
|
|
4774
4775
|
}
|
|
4775
4776
|
const xp = /* @__PURE__ */ function() {
|
|
4776
4777
|
return Np.exports;
|
|
4777
|
-
}(),
|
|
4778
|
+
}(), Sp = {
|
|
4778
4779
|
name: "TopTab",
|
|
4779
4780
|
components: {
|
|
4780
4781
|
TopPopup: $,
|
|
@@ -4931,7 +4932,7 @@ const xp = /* @__PURE__ */ function() {
|
|
|
4931
4932
|
}
|
|
4932
4933
|
}
|
|
4933
4934
|
};
|
|
4934
|
-
var
|
|
4935
|
+
var Op = function() {
|
|
4935
4936
|
var e = this, i = e.$createElement, t = e._self._c || i;
|
|
4936
4937
|
return t("div", {
|
|
4937
4938
|
staticClass: "tops-tab"
|
|
@@ -5082,10 +5083,10 @@ var Sp = function() {
|
|
|
5082
5083
|
}, [e._v(e._s(s.assigneeNames))])])])]);
|
|
5083
5084
|
}) : e._e()], 2)], 1);
|
|
5084
5085
|
}, Dp = [];
|
|
5085
|
-
const
|
|
5086
|
+
const On = {};
|
|
5086
5087
|
var Mp = /* @__PURE__ */ Q(
|
|
5087
|
-
Op,
|
|
5088
5088
|
Sp,
|
|
5089
|
+
Op,
|
|
5089
5090
|
Dp,
|
|
5090
5091
|
!1,
|
|
5091
5092
|
Pp,
|
|
@@ -5094,8 +5095,8 @@ var Mp = /* @__PURE__ */ Q(
|
|
|
5094
5095
|
null
|
|
5095
5096
|
);
|
|
5096
5097
|
function Pp(e) {
|
|
5097
|
-
for (let i in
|
|
5098
|
-
this[i] =
|
|
5098
|
+
for (let i in On)
|
|
5099
|
+
this[i] = On[i];
|
|
5099
5100
|
}
|
|
5100
5101
|
const Qp = /* @__PURE__ */ function() {
|
|
5101
5102
|
return Mp.exports;
|
|
@@ -5273,10 +5274,12 @@ const le = /* @__PURE__ */ function() {
|
|
|
5273
5274
|
deep: !0
|
|
5274
5275
|
},
|
|
5275
5276
|
defaultValue: {
|
|
5277
|
+
immediate: !0,
|
|
5278
|
+
deep: !0,
|
|
5276
5279
|
handler(e, i) {
|
|
5277
5280
|
this.active = e;
|
|
5278
5281
|
let t = this.lists.filter((s, n) => s.id == e);
|
|
5279
|
-
this.activeItem = t[0], this.$emit("change", this.activeItem);
|
|
5282
|
+
this.activeItem = t[0], this.activeItem && this.$emit("change", this.activeItem);
|
|
5280
5283
|
}
|
|
5281
5284
|
}
|
|
5282
5285
|
},
|
|
@@ -5491,7 +5494,7 @@ const fr = /* @__PURE__ */ function() {
|
|
|
5491
5494
|
watch: {
|
|
5492
5495
|
visible: {
|
|
5493
5496
|
async handler(e, i) {
|
|
5494
|
-
this.show = e, this.$emit("update:visible", this.show), e
|
|
5497
|
+
this.show = e, this.$emit("update:visible", this.show), e ? this.handleOption() : this.$refs.TopDownSelect.handleClose();
|
|
5495
5498
|
}
|
|
5496
5499
|
},
|
|
5497
5500
|
show: {
|
|
@@ -5589,7 +5592,7 @@ const fr = /* @__PURE__ */ function() {
|
|
|
5589
5592
|
}));
|
|
5590
5593
|
},
|
|
5591
5594
|
async handleChange(e, i) {
|
|
5592
|
-
this.handleTips("", !0, "loading"), this.checkedItem = {}, this.firstPerson = [], this.personList = [],
|
|
5595
|
+
this.handleTips("", !0, "loading"), this.checkedItem = {}, this.firstPerson = [], this.personList = [], this.checkedItem = e, this.handlefirstNode(this.checkedItem.id), this.getDiagramUrl(), this.$emit("change", e, i);
|
|
5593
5596
|
},
|
|
5594
5597
|
async getAfferentParticipantNodeList() {
|
|
5595
5598
|
await this.request.get("/aws/repository/getAfferentParticipantNodeList", {
|
|
@@ -5597,11 +5600,7 @@ const fr = /* @__PURE__ */ function() {
|
|
|
5597
5600
|
processDefId: this.checkedItem.id
|
|
5598
5601
|
}
|
|
5599
5602
|
}).then((e) => {
|
|
5600
|
-
e.code == 200 && (this.firstPerson && this.firstPerson.length && (
|
|
5601
|
-
"\u9009\u4E2D\u8282\u70B9L::",
|
|
5602
|
-
this.personList,
|
|
5603
|
-
this.firstPerson
|
|
5604
|
-
), this.personList = e.data.filter(
|
|
5603
|
+
e.code == 200 && (this.firstPerson && this.firstPerson.length && (this.personList = e.data.filter(
|
|
5605
5604
|
(i) => !this.firstPerson.some(
|
|
5606
5605
|
(t) => t.id == i.id
|
|
5607
5606
|
)
|
|
@@ -5630,7 +5629,7 @@ const fr = /* @__PURE__ */ function() {
|
|
|
5630
5629
|
multiple: e.loopCardinality != 1,
|
|
5631
5630
|
maxMultiple: e.loopCardinality > 0 ? e.loopCardinality : 0,
|
|
5632
5631
|
checkedArray: []
|
|
5633
|
-
},
|
|
5632
|
+
}, this.multiNodeParticipant[e.id] && this.multiNodeParticipant[e.id].length ? this.entity.checkedArray = this.personListCopy[e.id].map(
|
|
5634
5633
|
(i) => ({
|
|
5635
5634
|
uid: i.uid,
|
|
5636
5635
|
type: i.type,
|
|
@@ -5701,7 +5700,7 @@ const fr = /* @__PURE__ */ function() {
|
|
|
5701
5700
|
}
|
|
5702
5701
|
},
|
|
5703
5702
|
handleCallback(e) {
|
|
5704
|
-
|
|
5703
|
+
this.personListCopy[this.personObjId] = e, this.entity.checkedArray = e.map((i) => ({
|
|
5705
5704
|
uid: i.uid,
|
|
5706
5705
|
type: i.type,
|
|
5707
5706
|
deptId: this.handleLastStr(i.ancestors, i.subjectId),
|
|
@@ -7362,7 +7361,7 @@ var Bu = function() {
|
|
|
7362
7361
|
}
|
|
7363
7362
|
})], 1) : e._e();
|
|
7364
7363
|
}, xu = [];
|
|
7365
|
-
const
|
|
7364
|
+
const Su = {
|
|
7366
7365
|
name: "TreeNode",
|
|
7367
7366
|
components: {
|
|
7368
7367
|
TopPopup: $,
|
|
@@ -7593,8 +7592,8 @@ const Ou = {
|
|
|
7593
7592
|
}
|
|
7594
7593
|
}
|
|
7595
7594
|
}, Vn = {};
|
|
7596
|
-
var
|
|
7597
|
-
|
|
7595
|
+
var Ou = /* @__PURE__ */ Q(
|
|
7596
|
+
Su,
|
|
7598
7597
|
Bu,
|
|
7599
7598
|
xu,
|
|
7600
7599
|
!1,
|
|
@@ -7608,7 +7607,7 @@ function Du(e) {
|
|
|
7608
7607
|
this[i] = Vn[i];
|
|
7609
7608
|
}
|
|
7610
7609
|
const Mu = /* @__PURE__ */ function() {
|
|
7611
|
-
return
|
|
7610
|
+
return Ou.exports;
|
|
7612
7611
|
}();
|
|
7613
7612
|
var Pu = function() {
|
|
7614
7613
|
var e = this, i = e.$createElement, t = e._self._c || i;
|
|
@@ -8235,7 +8234,7 @@ const _u = {
|
|
|
8235
8234
|
this.visibleListMsg = !0;
|
|
8236
8235
|
},
|
|
8237
8236
|
async confirm() {
|
|
8238
|
-
if ((this.param.ProcessInsObj.processDefId === "obj_94014ede99b6495d8f6d5977314faa15" || !this.param.isRequire) && (this.commentMsg = "
|
|
8237
|
+
if ((this.param.ProcessInsObj.processDefId === "obj_94014ede99b6495d8f6d5977314faa15" || !this.param.isRequire) && (this.commentMsg = " "), !this.commentMsg) {
|
|
8239
8238
|
this.handleTips("\u8BF7\u8F93\u5165\u5BA1\u6279\u610F\u89C1!", !1, "success");
|
|
8240
8239
|
return;
|
|
8241
8240
|
}
|
|
@@ -8325,7 +8324,7 @@ var Ru = /* @__PURE__ */ Q(
|
|
|
8325
8324
|
Ju,
|
|
8326
8325
|
!1,
|
|
8327
8326
|
qu,
|
|
8328
|
-
"
|
|
8327
|
+
"404a2dca",
|
|
8329
8328
|
null,
|
|
8330
8329
|
null
|
|
8331
8330
|
);
|