@utogether/utils 3.0.0-beta.35 → 3.0.0-beta.36
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/pkg/formatData.d.ts +1 -1
- package/dist/utils.es.js +365 -365
- package/dist/utils.umd.js +1 -1
- package/package.json +1 -1
package/dist/utils.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var j = Object.defineProperty;
|
|
2
|
-
var U = (a, l,
|
|
3
|
-
var x = (a, l,
|
|
2
|
+
var U = (a, l, o) => l in a ? j(a, l, { enumerable: !0, configurable: !0, writable: !0, value: o }) : a[l] = o;
|
|
3
|
+
var x = (a, l, o) => U(a, typeof l != "symbol" ? l + "" : l, o);
|
|
4
4
|
import { createVNode, resolveComponent, mergeProps, isVNode, ref, shallowRef, unref, getCurrentInstance, onBeforeUnmount, reactive, watchEffect, isRef } from "vue";
|
|
5
5
|
import dayjs from "dayjs";
|
|
6
6
|
import XEUtils, { isArray, findTree, isEmpty, isObject, isPlainObject, isUndefined, isFunction, isString, clone, merge, has } from "xe-utils";
|
|
@@ -20,8 +20,8 @@ class sessionStorageProxy {
|
|
|
20
20
|
this.storage = l;
|
|
21
21
|
}
|
|
22
22
|
// 存
|
|
23
|
-
setItem(l,
|
|
24
|
-
this.storage.setItem && this.storage.setItem(this.getKey(l), JSON.stringify(
|
|
23
|
+
setItem(l, o) {
|
|
24
|
+
this.storage.setItem && this.storage.setItem(this.getKey(l), JSON.stringify(o || null));
|
|
25
25
|
}
|
|
26
26
|
// 取
|
|
27
27
|
getItem(l) {
|
|
@@ -53,8 +53,8 @@ class localforageProxy {
|
|
|
53
53
|
}), this.storage = localforage;
|
|
54
54
|
}
|
|
55
55
|
// 存
|
|
56
|
-
setItem(l,
|
|
57
|
-
this.storage.setItem(l,
|
|
56
|
+
setItem(l, o) {
|
|
57
|
+
this.storage.setItem(l, o);
|
|
58
58
|
}
|
|
59
59
|
// 取
|
|
60
60
|
getItem(l) {
|
|
@@ -73,14 +73,14 @@ const storageSession = new sessionStorageProxy(sessionStorage), storageLocal = n
|
|
|
73
73
|
/*! typescript-cookie v1.0.6 | MIT */
|
|
74
74
|
const encodeName = (a) => encodeURIComponent(a).replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent).replace(/[()]/g, escape), encodeValue = (a) => encodeURIComponent(a).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g, decodeURIComponent), decodeName = decodeURIComponent, decodeValue = (a) => (a[0] === '"' && (a = a.slice(1, -1)), a.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent));
|
|
75
75
|
function stringifyAttributes(a) {
|
|
76
|
-
return a = Object.assign({}, a), typeof a.expires == "number" && (a.expires = new Date(Date.now() + a.expires * 864e5)), a.expires != null && (a.expires = a.expires.toUTCString()), Object.entries(a).filter(([l,
|
|
76
|
+
return a = Object.assign({}, a), typeof a.expires == "number" && (a.expires = new Date(Date.now() + a.expires * 864e5)), a.expires != null && (a.expires = a.expires.toUTCString()), Object.entries(a).filter(([l, o]) => o != null && o !== !1).map(([l, o]) => o === !0 ? `; ${l}` : `; ${l}=${o.split(";")[0]}`).join("");
|
|
77
77
|
}
|
|
78
|
-
function get(a, l,
|
|
79
|
-
const
|
|
78
|
+
function get(a, l, o) {
|
|
79
|
+
const h = /(?:^|; )([^=]*)=([^;]*)/g, r = {};
|
|
80
80
|
let e;
|
|
81
|
-
for (; (e =
|
|
81
|
+
for (; (e = h.exec(document.cookie)) != null; )
|
|
82
82
|
try {
|
|
83
|
-
const i =
|
|
83
|
+
const i = o(e[1]);
|
|
84
84
|
if (r[i] = l(e[2], i), a === i)
|
|
85
85
|
break;
|
|
86
86
|
} catch {
|
|
@@ -95,11 +95,11 @@ const DEFAULT_CODEC = Object.freeze({
|
|
|
95
95
|
}), DEFAULT_ATTRIBUTES = Object.freeze({
|
|
96
96
|
path: "/"
|
|
97
97
|
});
|
|
98
|
-
function setCookie(a, l,
|
|
99
|
-
return document.cookie = `${r(a)}=${
|
|
98
|
+
function setCookie(a, l, o = DEFAULT_ATTRIBUTES, { encodeValue: h = encodeValue, encodeName: r = encodeName } = {}) {
|
|
99
|
+
return document.cookie = `${r(a)}=${h(l, a)}${stringifyAttributes(o)}`;
|
|
100
100
|
}
|
|
101
|
-
function getCookie(a, { decodeValue: l = decodeValue, decodeName:
|
|
102
|
-
return get(a, l,
|
|
101
|
+
function getCookie(a, { decodeValue: l = decodeValue, decodeName: o = decodeName } = {}) {
|
|
102
|
+
return get(a, l, o);
|
|
103
103
|
}
|
|
104
104
|
function getCookies({ decodeValue: a = decodeValue, decodeName: l = decodeName } = {}) {
|
|
105
105
|
return get(void 0, a, l);
|
|
@@ -110,7 +110,7 @@ function removeCookie(a, l = DEFAULT_ATTRIBUTES) {
|
|
|
110
110
|
}));
|
|
111
111
|
}
|
|
112
112
|
function init(a, l) {
|
|
113
|
-
const
|
|
113
|
+
const o = {
|
|
114
114
|
set: function(r, e, i) {
|
|
115
115
|
return setCookie(r, e, Object.assign({}, this.attributes, i), {
|
|
116
116
|
encodeValue: this.converter.write
|
|
@@ -131,11 +131,11 @@ function init(a, l) {
|
|
|
131
131
|
withConverter: function(r) {
|
|
132
132
|
return init(Object.assign({}, this.converter, r), this.attributes);
|
|
133
133
|
}
|
|
134
|
-
},
|
|
134
|
+
}, h = {
|
|
135
135
|
attributes: { value: Object.freeze(l) },
|
|
136
136
|
converter: { value: Object.freeze(a) }
|
|
137
137
|
};
|
|
138
|
-
return Object.create(
|
|
138
|
+
return Object.create(o, h);
|
|
139
139
|
}
|
|
140
140
|
init({ read: DEFAULT_CODEC.decodeValue, write: DEFAULT_CODEC.encodeValue }, DEFAULT_ATTRIBUTES);
|
|
141
141
|
class Cookies {
|
|
@@ -151,8 +151,8 @@ class Cookies {
|
|
|
151
151
|
* @param value
|
|
152
152
|
* @param cookieSetting
|
|
153
153
|
*/
|
|
154
|
-
set(l = "default",
|
|
155
|
-
setCookie(`${this.getKey(l)}`,
|
|
154
|
+
set(l = "default", o = "") {
|
|
155
|
+
setCookie(`${this.getKey(l)}`, o);
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
158
|
* 拿到 cookie 值
|
|
@@ -191,9 +191,9 @@ const VxetableRender = (VXETable, {
|
|
|
191
191
|
const dict = storageLocal.getItem("kLov");
|
|
192
192
|
VXETable.renderer.add("#SuSelect", {
|
|
193
193
|
renderTableEdit(a, l) {
|
|
194
|
-
let
|
|
194
|
+
let o;
|
|
195
195
|
const {
|
|
196
|
-
row:
|
|
196
|
+
row: h,
|
|
197
197
|
column: r
|
|
198
198
|
} = l, {
|
|
199
199
|
options: e,
|
|
@@ -208,12 +208,12 @@ const VxetableRender = (VXETable, {
|
|
|
208
208
|
multiple: f,
|
|
209
209
|
mapField: b
|
|
210
210
|
} = i, m = useComponent(), s = f ? `_${r.field}` : r.field;
|
|
211
|
-
m.setDefaultValue(i,
|
|
211
|
+
m.setDefaultValue(i, h, r.field);
|
|
212
212
|
function M(V) {
|
|
213
213
|
m.remote(V, r.field, a);
|
|
214
214
|
}
|
|
215
215
|
function p(V) {
|
|
216
|
-
m.selectChange(V,
|
|
216
|
+
m.selectChange(V, h, r.field, a, {
|
|
217
217
|
column: r,
|
|
218
218
|
datasource: "row"
|
|
219
219
|
});
|
|
@@ -222,14 +222,14 @@ const VxetableRender = (VXETable, {
|
|
|
222
222
|
v != null && v.input && v.input(l, V);
|
|
223
223
|
}
|
|
224
224
|
function A() {
|
|
225
|
-
m.clear(
|
|
225
|
+
m.clear(h, r.field, b, v, "row");
|
|
226
226
|
}
|
|
227
227
|
function k() {
|
|
228
228
|
!e.length && M(""), v != null && v.focus && v.focus(l, r.field);
|
|
229
229
|
}
|
|
230
230
|
return [createVNode(resolveComponent("el-select"), mergeProps({
|
|
231
|
-
modelValue:
|
|
232
|
-
"onUpdate:modelValue": (V) =>
|
|
231
|
+
modelValue: h[s],
|
|
232
|
+
"onUpdate:modelValue": (V) => h[s] = V,
|
|
233
233
|
filterable: !0,
|
|
234
234
|
remote: !0,
|
|
235
235
|
clearable: !0,
|
|
@@ -242,18 +242,18 @@ const VxetableRender = (VXETable, {
|
|
|
242
242
|
onChange: (V) => p(V),
|
|
243
243
|
onClear: () => A(),
|
|
244
244
|
onInput: (V) => y(V)
|
|
245
|
-
}), _isSlot(
|
|
245
|
+
}), _isSlot(o = e.map((V) => createVNode(resolveComponent("el-option"), {
|
|
246
246
|
key: V[d],
|
|
247
247
|
label: V[Z],
|
|
248
248
|
value: V[d]
|
|
249
|
-
}, null))) ?
|
|
250
|
-
default: () => [
|
|
249
|
+
}, null))) ? o : {
|
|
250
|
+
default: () => [o]
|
|
251
251
|
})];
|
|
252
252
|
},
|
|
253
253
|
renderTableDefault(a, l) {
|
|
254
|
-
let
|
|
254
|
+
let o;
|
|
255
255
|
const {
|
|
256
|
-
row:
|
|
256
|
+
row: h,
|
|
257
257
|
column: r
|
|
258
258
|
} = l, {
|
|
259
259
|
options: e,
|
|
@@ -268,12 +268,12 @@ const VxetableRender = (VXETable, {
|
|
|
268
268
|
multiple: f,
|
|
269
269
|
mapField: b
|
|
270
270
|
} = i, m = useComponent(), s = f ? `_${r.field}` : r.field;
|
|
271
|
-
m.setDefaultValue(i,
|
|
271
|
+
m.setDefaultValue(i, h, r.field);
|
|
272
272
|
function M(V) {
|
|
273
273
|
m.remote(V, r.field, a);
|
|
274
274
|
}
|
|
275
275
|
function p(V) {
|
|
276
|
-
m.selectChange(V,
|
|
276
|
+
m.selectChange(V, h, r.field, a, {
|
|
277
277
|
column: r,
|
|
278
278
|
datasource: "row"
|
|
279
279
|
});
|
|
@@ -282,14 +282,14 @@ const VxetableRender = (VXETable, {
|
|
|
282
282
|
v != null && v.input && v.input(l, V);
|
|
283
283
|
}
|
|
284
284
|
function A() {
|
|
285
|
-
m.clear(
|
|
285
|
+
m.clear(h, r.field, b, v, "row");
|
|
286
286
|
}
|
|
287
287
|
function k() {
|
|
288
288
|
!e.length && M(""), v != null && v.focus && v.focus(l, r.field);
|
|
289
289
|
}
|
|
290
290
|
return [createVNode(resolveComponent("el-select"), mergeProps({
|
|
291
|
-
modelValue:
|
|
292
|
-
"onUpdate:modelValue": (V) =>
|
|
291
|
+
modelValue: h[s],
|
|
292
|
+
"onUpdate:modelValue": (V) => h[s] = V,
|
|
293
293
|
filterable: !0,
|
|
294
294
|
remote: !0,
|
|
295
295
|
clearable: !0,
|
|
@@ -302,12 +302,12 @@ const VxetableRender = (VXETable, {
|
|
|
302
302
|
onChange: (V) => p(V),
|
|
303
303
|
onClear: () => A(),
|
|
304
304
|
onInput: (V) => y(V)
|
|
305
|
-
}), _isSlot(
|
|
305
|
+
}), _isSlot(o = e.map((V) => createVNode(resolveComponent("el-option"), {
|
|
306
306
|
key: V[d],
|
|
307
307
|
label: V[Z],
|
|
308
308
|
value: V[d]
|
|
309
|
-
}, null))) ?
|
|
310
|
-
default: () => [
|
|
309
|
+
}, null))) ? o : {
|
|
310
|
+
default: () => [o]
|
|
311
311
|
})];
|
|
312
312
|
},
|
|
313
313
|
// 可编辑显示模板
|
|
@@ -325,9 +325,9 @@ const VxetableRender = (VXETable, {
|
|
|
325
325
|
return textValue && (val = eval(`row.${textValue}`) || row[column.field]), val && multiple && isArray(val) && (val = val && val.join(",")), [createVNode("span", null, [val])];
|
|
326
326
|
},
|
|
327
327
|
renderItemContent(a, l) {
|
|
328
|
-
let
|
|
328
|
+
let o;
|
|
329
329
|
const {
|
|
330
|
-
data:
|
|
330
|
+
data: h,
|
|
331
331
|
field: r
|
|
332
332
|
} = l, {
|
|
333
333
|
options: e,
|
|
@@ -342,12 +342,12 @@ const VxetableRender = (VXETable, {
|
|
|
342
342
|
multiple: f,
|
|
343
343
|
loading: b = !1
|
|
344
344
|
} = i, m = useComponent(), s = f ? `_${r}` : r;
|
|
345
|
-
m.setDefaultValue(i,
|
|
345
|
+
m.setDefaultValue(i, h, r);
|
|
346
346
|
async function M(V) {
|
|
347
347
|
m.remote(V, r, a);
|
|
348
348
|
}
|
|
349
349
|
function p(V) {
|
|
350
|
-
m.selectChange(V,
|
|
350
|
+
m.selectChange(V, h, r, a, {
|
|
351
351
|
datasource: "data"
|
|
352
352
|
});
|
|
353
353
|
}
|
|
@@ -355,14 +355,14 @@ const VxetableRender = (VXETable, {
|
|
|
355
355
|
v != null && v.input && v.input(l, V);
|
|
356
356
|
}
|
|
357
357
|
function A() {
|
|
358
|
-
m.clear(
|
|
358
|
+
m.clear(h, r, n, v, "data");
|
|
359
359
|
}
|
|
360
360
|
function k() {
|
|
361
361
|
!e.length && M(""), v != null && v.focus && v.focus(l);
|
|
362
362
|
}
|
|
363
363
|
return [createVNode(resolveComponent("el-select"), mergeProps({
|
|
364
|
-
modelValue:
|
|
365
|
-
"onUpdate:modelValue": (V) =>
|
|
364
|
+
modelValue: h[s],
|
|
365
|
+
"onUpdate:modelValue": (V) => h[s] = V,
|
|
366
366
|
filterable: !0,
|
|
367
367
|
remote: !0,
|
|
368
368
|
clearable: !0,
|
|
@@ -375,23 +375,23 @@ const VxetableRender = (VXETable, {
|
|
|
375
375
|
onChange: (V) => p(V),
|
|
376
376
|
onClear: () => A(),
|
|
377
377
|
onInput: () => y()
|
|
378
|
-
}), _isSlot(
|
|
378
|
+
}), _isSlot(o = e.map((V) => createVNode(resolveComponent("el-option"), {
|
|
379
379
|
key: V[d],
|
|
380
380
|
label: V[Z],
|
|
381
381
|
value: V[d]
|
|
382
|
-
}, null))) ?
|
|
383
|
-
default: () => [
|
|
382
|
+
}, null))) ? o : {
|
|
383
|
+
default: () => [o]
|
|
384
384
|
})];
|
|
385
385
|
}
|
|
386
386
|
}), VXETable.renderer.add("#SuDateRange", {
|
|
387
387
|
renderItemContent(a, l) {
|
|
388
388
|
const {
|
|
389
|
-
data:
|
|
390
|
-
field:
|
|
389
|
+
data: o,
|
|
390
|
+
field: h
|
|
391
391
|
} = l, {
|
|
392
392
|
props: r
|
|
393
393
|
} = a;
|
|
394
|
-
r != null && r.defaultValue && !h
|
|
394
|
+
r != null && r.defaultValue && !o[h] && (o[h] = r.defaultValue, r.defaultValue = r.required ? r.defaultValue : null);
|
|
395
395
|
const e = /* @__PURE__ */ new Date(), i = [{
|
|
396
396
|
text: i18n("message.udp.today", !0),
|
|
397
397
|
value: () => [t(1, "day"), e]
|
|
@@ -415,8 +415,8 @@ const VxetableRender = (VXETable, {
|
|
|
415
415
|
value: () => [t(1, "year"), e]
|
|
416
416
|
}], t = (v, Z) => dayjs().subtract(v, Z).add("1", "day").format();
|
|
417
417
|
return [createVNode(resolveComponent("el-date-picker"), mergeProps({
|
|
418
|
-
modelValue: h
|
|
419
|
-
"onUpdate:modelValue": (v) => h
|
|
418
|
+
modelValue: o[h],
|
|
419
|
+
"onUpdate:modelValue": (v) => o[h] = v,
|
|
420
420
|
type: (r == null ? void 0 : r.type) || "daterange",
|
|
421
421
|
shortcuts: i,
|
|
422
422
|
style: "width: 100%",
|
|
@@ -427,9 +427,9 @@ const VxetableRender = (VXETable, {
|
|
|
427
427
|
}
|
|
428
428
|
}), VXETable.renderer.add("#select", {
|
|
429
429
|
renderTableEdit(a, l) {
|
|
430
|
-
let
|
|
430
|
+
let o;
|
|
431
431
|
const {
|
|
432
|
-
row:
|
|
432
|
+
row: h,
|
|
433
433
|
column: r
|
|
434
434
|
} = l, {
|
|
435
435
|
options: e,
|
|
@@ -443,37 +443,37 @@ const VxetableRender = (VXETable, {
|
|
|
443
443
|
multiple: n,
|
|
444
444
|
mapField: f
|
|
445
445
|
} = i, b = useComponent(), m = n ? `_${r.field}` : r.field;
|
|
446
|
-
b.setDefaultValue(i,
|
|
446
|
+
b.setDefaultValue(i, h, r.field);
|
|
447
447
|
function s(p) {
|
|
448
|
-
b.selectChange(p,
|
|
448
|
+
b.selectChange(p, h, r.field, a, {
|
|
449
449
|
column: r,
|
|
450
450
|
datasource: "row"
|
|
451
451
|
});
|
|
452
452
|
}
|
|
453
453
|
function M() {
|
|
454
|
-
b.clear(
|
|
454
|
+
b.clear(h, r.field, f, v, "row");
|
|
455
455
|
}
|
|
456
456
|
return [createVNode(resolveComponent("el-select"), mergeProps({
|
|
457
|
-
modelValue:
|
|
458
|
-
"onUpdate:modelValue": (p) =>
|
|
457
|
+
modelValue: h[m],
|
|
458
|
+
"onUpdate:modelValue": (p) => h[m] = p,
|
|
459
459
|
filterable: !0,
|
|
460
460
|
clearable: !0
|
|
461
461
|
}, i, {
|
|
462
462
|
style: "width: 100%",
|
|
463
463
|
onChange: (p) => s(p),
|
|
464
464
|
onClear: () => M()
|
|
465
|
-
}), _isSlot(
|
|
465
|
+
}), _isSlot(o = e.map((p) => createVNode(resolveComponent("el-option"), {
|
|
466
466
|
key: p[d],
|
|
467
467
|
label: p[Z],
|
|
468
468
|
value: p[d]
|
|
469
|
-
}, null))) ?
|
|
470
|
-
default: () => [
|
|
469
|
+
}, null))) ? o : {
|
|
470
|
+
default: () => [o]
|
|
471
471
|
})];
|
|
472
472
|
},
|
|
473
473
|
renderTableDefault(a, l) {
|
|
474
|
-
let
|
|
474
|
+
let o;
|
|
475
475
|
const {
|
|
476
|
-
row:
|
|
476
|
+
row: h,
|
|
477
477
|
column: r
|
|
478
478
|
} = l, {
|
|
479
479
|
options: e,
|
|
@@ -488,31 +488,31 @@ const VxetableRender = (VXETable, {
|
|
|
488
488
|
multiple: f,
|
|
489
489
|
mapField: b
|
|
490
490
|
} = i, m = useComponent(), s = f ? `_${r.field}` : r.field;
|
|
491
|
-
m.setDefaultValue(i,
|
|
491
|
+
m.setDefaultValue(i, h, r.field);
|
|
492
492
|
function M(y) {
|
|
493
|
-
m.selectChange(y,
|
|
493
|
+
m.selectChange(y, h, r.field, a, {
|
|
494
494
|
column: r,
|
|
495
495
|
datasource: "row"
|
|
496
496
|
});
|
|
497
497
|
}
|
|
498
498
|
function p() {
|
|
499
|
-
m.clear(
|
|
499
|
+
m.clear(h, r.field, b, v, "row");
|
|
500
500
|
}
|
|
501
501
|
return [createVNode(resolveComponent("el-select"), mergeProps({
|
|
502
|
-
modelValue:
|
|
503
|
-
"onUpdate:modelValue": (y) =>
|
|
502
|
+
modelValue: h[s],
|
|
503
|
+
"onUpdate:modelValue": (y) => h[s] = y,
|
|
504
504
|
filterable: !0,
|
|
505
505
|
clearable: !0
|
|
506
506
|
}, i, {
|
|
507
507
|
style: "width: 100%",
|
|
508
508
|
onChange: (y) => M(y),
|
|
509
509
|
onClear: () => p()
|
|
510
|
-
}), _isSlot(
|
|
510
|
+
}), _isSlot(o = e.map((y) => createVNode(resolveComponent("el-option"), {
|
|
511
511
|
key: y[d],
|
|
512
512
|
label: n && y[n] ? y[d] : y[Z],
|
|
513
513
|
value: y[d]
|
|
514
|
-
}, null))) ?
|
|
515
|
-
default: () => [
|
|
514
|
+
}, null))) ? o : {
|
|
515
|
+
default: () => [o]
|
|
516
516
|
})];
|
|
517
517
|
},
|
|
518
518
|
// 可编辑显示模板
|
|
@@ -536,9 +536,9 @@ const VxetableRender = (VXETable, {
|
|
|
536
536
|
return textValue && (val = eval(`row.${textValue}`) || row[column.field]), item && (val = extLabel ? item[value] : item[label]), val && (props != null && props.multiple) && isArray(val) && (val = val && val.join(",")), [createVNode("span", null, [val])];
|
|
537
537
|
},
|
|
538
538
|
renderItemContent(a, l) {
|
|
539
|
-
let
|
|
539
|
+
let o;
|
|
540
540
|
const {
|
|
541
|
-
data:
|
|
541
|
+
data: h,
|
|
542
542
|
field: r
|
|
543
543
|
} = l, {
|
|
544
544
|
options: e,
|
|
@@ -552,37 +552,37 @@ const VxetableRender = (VXETable, {
|
|
|
552
552
|
mapField: f,
|
|
553
553
|
multiple: b
|
|
554
554
|
} = i, m = b ? `_${r}` : r;
|
|
555
|
-
n.setDefaultValue(i,
|
|
555
|
+
n.setDefaultValue(i, h, r);
|
|
556
556
|
function s(p) {
|
|
557
|
-
n.selectChange(p,
|
|
557
|
+
n.selectChange(p, h, r, a, {
|
|
558
558
|
datasource: "data"
|
|
559
559
|
});
|
|
560
560
|
}
|
|
561
561
|
function M() {
|
|
562
|
-
n.clear(
|
|
562
|
+
n.clear(h, r, f, v, "data");
|
|
563
563
|
}
|
|
564
564
|
return [createVNode(resolveComponent("el-select"), mergeProps({
|
|
565
|
-
modelValue:
|
|
566
|
-
"onUpdate:modelValue": (p) =>
|
|
565
|
+
modelValue: h[m],
|
|
566
|
+
"onUpdate:modelValue": (p) => h[m] = p,
|
|
567
567
|
filterable: !0,
|
|
568
568
|
clearable: !0,
|
|
569
569
|
style: "width: 100%"
|
|
570
570
|
}, i, {
|
|
571
571
|
onChange: (p) => s(p),
|
|
572
572
|
onClear: () => M()
|
|
573
|
-
}), _isSlot(
|
|
573
|
+
}), _isSlot(o = e.map((p) => createVNode(resolveComponent("el-option"), {
|
|
574
574
|
key: p[d],
|
|
575
575
|
label: p[Z],
|
|
576
576
|
value: p[d]
|
|
577
|
-
}, null))) ?
|
|
578
|
-
default: () => [
|
|
577
|
+
}, null))) ? o : {
|
|
578
|
+
default: () => [o]
|
|
579
579
|
})];
|
|
580
580
|
}
|
|
581
581
|
}), VXETable.renderer.add("#lov", {
|
|
582
582
|
renderItemContent(a, l) {
|
|
583
583
|
const {
|
|
584
|
-
data:
|
|
585
|
-
field:
|
|
584
|
+
data: o,
|
|
585
|
+
field: h
|
|
586
586
|
} = l, {
|
|
587
587
|
props: r,
|
|
588
588
|
events: e
|
|
@@ -590,7 +590,7 @@ const VxetableRender = (VXETable, {
|
|
|
590
590
|
defaultValues: t,
|
|
591
591
|
mapField: v
|
|
592
592
|
} = r;
|
|
593
|
-
t && (h
|
|
593
|
+
t && (o[h] = t);
|
|
594
594
|
function Z(n, f) {
|
|
595
595
|
const {
|
|
596
596
|
mapField: b,
|
|
@@ -601,11 +601,11 @@ const VxetableRender = (VXETable, {
|
|
|
601
601
|
if (M) {
|
|
602
602
|
if (M) {
|
|
603
603
|
const y = {};
|
|
604
|
-
|
|
604
|
+
o[s || m] = n.reduce((A, k) => {
|
|
605
605
|
for (const V in b)
|
|
606
606
|
y[V] = A ? y[V] + "," + k[b[V]] : k[b[V]];
|
|
607
607
|
return A = A ? A + "," + k[s || m] : k[s || m], A;
|
|
608
|
-
}, ""), Object.assign(
|
|
608
|
+
}, ""), Object.assign(o, y);
|
|
609
609
|
}
|
|
610
610
|
} else {
|
|
611
611
|
const y = {
|
|
@@ -613,20 +613,20 @@ const VxetableRender = (VXETable, {
|
|
|
613
613
|
};
|
|
614
614
|
for (const A in b)
|
|
615
615
|
y[A] = n[b[A]];
|
|
616
|
-
Object.assign(
|
|
616
|
+
Object.assign(o, y);
|
|
617
617
|
}
|
|
618
618
|
const p = {
|
|
619
|
-
data:
|
|
619
|
+
data: o,
|
|
620
620
|
options: n,
|
|
621
621
|
field: m
|
|
622
622
|
};
|
|
623
623
|
e != null && e.change && e.change(p);
|
|
624
624
|
}
|
|
625
625
|
function d() {
|
|
626
|
-
i.clear(
|
|
626
|
+
i.clear(o, h, v, e, "data");
|
|
627
627
|
}
|
|
628
628
|
return [createVNode(resolveComponent("ut-lov"), mergeProps({
|
|
629
|
-
record:
|
|
629
|
+
record: o
|
|
630
630
|
}, r, {
|
|
631
631
|
mode: "vxe",
|
|
632
632
|
onChange: (n, f) => Z(n, f),
|
|
@@ -636,8 +636,8 @@ const VxetableRender = (VXETable, {
|
|
|
636
636
|
// 单元格编辑
|
|
637
637
|
renderTableEdit(a, l) {
|
|
638
638
|
const {
|
|
639
|
-
row:
|
|
640
|
-
column:
|
|
639
|
+
row: o,
|
|
640
|
+
column: h
|
|
641
641
|
} = l, {
|
|
642
642
|
props: r,
|
|
643
643
|
events: e
|
|
@@ -655,20 +655,20 @@ const VxetableRender = (VXETable, {
|
|
|
655
655
|
};
|
|
656
656
|
for (const p in n)
|
|
657
657
|
M[p] = Z[n[p]];
|
|
658
|
-
Object.assign(
|
|
658
|
+
Object.assign(o, M);
|
|
659
659
|
}
|
|
660
660
|
const s = {
|
|
661
|
-
row:
|
|
661
|
+
row: o,
|
|
662
662
|
options: Z,
|
|
663
|
-
field:
|
|
663
|
+
field: h.field
|
|
664
664
|
};
|
|
665
665
|
e != null && e.change && e.change(s);
|
|
666
666
|
}
|
|
667
667
|
function v() {
|
|
668
|
-
i.clear(
|
|
668
|
+
i.clear(o, h.field, r.mapField, e, "row");
|
|
669
669
|
}
|
|
670
670
|
return [createVNode(resolveComponent("ut-lov"), mergeProps({
|
|
671
|
-
record:
|
|
671
|
+
record: o,
|
|
672
672
|
mode: "vxe",
|
|
673
673
|
transfer: !0
|
|
674
674
|
}, r, {
|
|
@@ -679,8 +679,8 @@ const VxetableRender = (VXETable, {
|
|
|
679
679
|
// 单元格默认
|
|
680
680
|
renderTableDefault(a, l) {
|
|
681
681
|
const {
|
|
682
|
-
row:
|
|
683
|
-
column:
|
|
682
|
+
row: o,
|
|
683
|
+
column: h
|
|
684
684
|
} = l, {
|
|
685
685
|
props: r,
|
|
686
686
|
events: e
|
|
@@ -698,20 +698,20 @@ const VxetableRender = (VXETable, {
|
|
|
698
698
|
};
|
|
699
699
|
for (const p in n)
|
|
700
700
|
M[p] = Z[n[p]];
|
|
701
|
-
Object.assign(
|
|
701
|
+
Object.assign(o, M);
|
|
702
702
|
}
|
|
703
703
|
const s = {
|
|
704
|
-
row:
|
|
704
|
+
row: o,
|
|
705
705
|
options: Z,
|
|
706
|
-
field:
|
|
706
|
+
field: h.field
|
|
707
707
|
};
|
|
708
708
|
e != null && e.change && e.change(s);
|
|
709
709
|
}
|
|
710
710
|
function v() {
|
|
711
|
-
i.clear(
|
|
711
|
+
i.clear(o, h.field, mapField, e, "row");
|
|
712
712
|
}
|
|
713
713
|
return [createVNode(resolveComponent("ut-lov"), mergeProps({
|
|
714
|
-
record:
|
|
714
|
+
record: o,
|
|
715
715
|
mode: "ele"
|
|
716
716
|
}, r, {
|
|
717
717
|
onChange: (Z, d) => t(Z, d),
|
|
@@ -721,16 +721,16 @@ const VxetableRender = (VXETable, {
|
|
|
721
721
|
// 可编辑显示模板
|
|
722
722
|
renderTableCell(a, l) {
|
|
723
723
|
const {
|
|
724
|
-
row:
|
|
725
|
-
column:
|
|
724
|
+
row: o,
|
|
725
|
+
column: h
|
|
726
726
|
} = l;
|
|
727
|
-
return [createVNode("span", null, [h
|
|
727
|
+
return [createVNode("span", null, [o[h.field]])];
|
|
728
728
|
}
|
|
729
729
|
}), VXETable.renderer.add("#textarea", {
|
|
730
730
|
renderTableEdit(a, l) {
|
|
731
731
|
const {
|
|
732
|
-
row:
|
|
733
|
-
column:
|
|
732
|
+
row: o,
|
|
733
|
+
column: h
|
|
734
734
|
} = l, {
|
|
735
735
|
props: r,
|
|
736
736
|
events: e
|
|
@@ -738,17 +738,17 @@ const VxetableRender = (VXETable, {
|
|
|
738
738
|
mapField: i
|
|
739
739
|
} = r, t = useComponent();
|
|
740
740
|
function v(d) {
|
|
741
|
-
t.change(d,
|
|
742
|
-
column:
|
|
741
|
+
t.change(d, o, h.field, a, {
|
|
742
|
+
column: h,
|
|
743
743
|
datasource: "row"
|
|
744
744
|
});
|
|
745
745
|
}
|
|
746
746
|
function Z() {
|
|
747
|
-
t.clear(
|
|
747
|
+
t.clear(o, h.field, i, e, "row");
|
|
748
748
|
}
|
|
749
749
|
return [createVNode(resolveComponent("vxe-textarea"), mergeProps({
|
|
750
|
-
modelValue: h
|
|
751
|
-
"onUpdate:modelValue": (d) => h
|
|
750
|
+
modelValue: o[h.field],
|
|
751
|
+
"onUpdate:modelValue": (d) => o[h.field] = d
|
|
752
752
|
}, r, {
|
|
753
753
|
style: "width: 100%",
|
|
754
754
|
onChange: (d) => v(d),
|
|
@@ -757,8 +757,8 @@ const VxetableRender = (VXETable, {
|
|
|
757
757
|
},
|
|
758
758
|
renderTableDefault(a, l) {
|
|
759
759
|
const {
|
|
760
|
-
row:
|
|
761
|
-
column:
|
|
760
|
+
row: o,
|
|
761
|
+
column: h
|
|
762
762
|
} = l, {
|
|
763
763
|
props: r,
|
|
764
764
|
events: e
|
|
@@ -766,17 +766,17 @@ const VxetableRender = (VXETable, {
|
|
|
766
766
|
mapField: i
|
|
767
767
|
} = r, t = useComponent();
|
|
768
768
|
function v(d) {
|
|
769
|
-
t.change(d,
|
|
770
|
-
column:
|
|
769
|
+
t.change(d, o, h.field, a, {
|
|
770
|
+
column: h,
|
|
771
771
|
datasource: "row"
|
|
772
772
|
});
|
|
773
773
|
}
|
|
774
774
|
function Z() {
|
|
775
|
-
t.clear(
|
|
775
|
+
t.clear(o, h.field, i, e, "row");
|
|
776
776
|
}
|
|
777
777
|
return [createVNode(resolveComponent("vxe-textarea"), mergeProps({
|
|
778
|
-
modelValue: h
|
|
779
|
-
"onUpdate:modelValue": (d) => h
|
|
778
|
+
modelValue: o[h.field],
|
|
779
|
+
"onUpdate:modelValue": (d) => o[h.field] = d
|
|
780
780
|
}, r, {
|
|
781
781
|
onChange: (d) => v(d),
|
|
782
782
|
onClear: () => Z()
|
|
@@ -785,15 +785,15 @@ const VxetableRender = (VXETable, {
|
|
|
785
785
|
// 可编辑显示模板
|
|
786
786
|
renderTableCell(a, l) {
|
|
787
787
|
const {
|
|
788
|
-
row:
|
|
789
|
-
column:
|
|
788
|
+
row: o,
|
|
789
|
+
column: h
|
|
790
790
|
} = l;
|
|
791
|
-
return h
|
|
791
|
+
return o[h.field];
|
|
792
792
|
},
|
|
793
793
|
renderItemContent(a, l) {
|
|
794
794
|
const {
|
|
795
|
-
data:
|
|
796
|
-
field:
|
|
795
|
+
data: o,
|
|
796
|
+
field: h
|
|
797
797
|
} = l, {
|
|
798
798
|
props: r,
|
|
799
799
|
events: e
|
|
@@ -801,18 +801,18 @@ const VxetableRender = (VXETable, {
|
|
|
801
801
|
defaultValue: t,
|
|
802
802
|
mapField: v
|
|
803
803
|
} = r;
|
|
804
|
-
t && (h
|
|
804
|
+
t && (o[h] = t);
|
|
805
805
|
function Z(n) {
|
|
806
|
-
i.change(n,
|
|
806
|
+
i.change(n, o, h, a, {
|
|
807
807
|
datasource: "data"
|
|
808
808
|
});
|
|
809
809
|
}
|
|
810
810
|
function d() {
|
|
811
|
-
i.clear(
|
|
811
|
+
i.clear(o, h, v, e, "data");
|
|
812
812
|
}
|
|
813
813
|
return [createVNode(resolveComponent("vxe-textarea"), mergeProps({
|
|
814
|
-
modelValue: h
|
|
815
|
-
"onUpdate:modelValue": (n) => h
|
|
814
|
+
modelValue: o[h],
|
|
815
|
+
"onUpdate:modelValue": (n) => o[h] = n
|
|
816
816
|
}, r, {
|
|
817
817
|
onChange: (n) => Z(n),
|
|
818
818
|
onClear: () => d()
|
|
@@ -821,18 +821,18 @@ const VxetableRender = (VXETable, {
|
|
|
821
821
|
}), VXETable.renderer.add("#upload", {
|
|
822
822
|
renderTableEdit(a, l) {
|
|
823
823
|
const {
|
|
824
|
-
row:
|
|
825
|
-
column:
|
|
824
|
+
row: o,
|
|
825
|
+
column: h
|
|
826
826
|
} = l, {
|
|
827
827
|
props: r,
|
|
828
828
|
events: e
|
|
829
829
|
} = a;
|
|
830
830
|
function i(t, v) {
|
|
831
|
-
h
|
|
831
|
+
o[h.field] = "", e != null && e.remove && (e == null || e.remove(t, v));
|
|
832
832
|
}
|
|
833
833
|
return [createVNode(resolveComponent("form-upload"), mergeProps({
|
|
834
|
-
record:
|
|
835
|
-
field:
|
|
834
|
+
record: o,
|
|
835
|
+
field: h.field,
|
|
836
836
|
size: "mini"
|
|
837
837
|
}, r, {
|
|
838
838
|
"render-mode": "column",
|
|
@@ -843,14 +843,14 @@ const VxetableRender = (VXETable, {
|
|
|
843
843
|
// 可编辑显示模板
|
|
844
844
|
renderTableCell(a, l) {
|
|
845
845
|
const {
|
|
846
|
-
row:
|
|
847
|
-
column:
|
|
846
|
+
row: o,
|
|
847
|
+
column: h
|
|
848
848
|
} = l, {
|
|
849
849
|
props: r
|
|
850
850
|
} = a;
|
|
851
851
|
return [createVNode(resolveComponent("form-upload"), mergeProps({
|
|
852
|
-
record:
|
|
853
|
-
field:
|
|
852
|
+
record: o,
|
|
853
|
+
field: h.field,
|
|
854
854
|
size: "mini"
|
|
855
855
|
}, r, {
|
|
856
856
|
mode: "image",
|
|
@@ -860,18 +860,18 @@ const VxetableRender = (VXETable, {
|
|
|
860
860
|
},
|
|
861
861
|
renderItemContent(a, l) {
|
|
862
862
|
const {
|
|
863
|
-
data:
|
|
864
|
-
field:
|
|
863
|
+
data: o,
|
|
864
|
+
field: h
|
|
865
865
|
} = l, {
|
|
866
866
|
props: r,
|
|
867
867
|
events: e
|
|
868
868
|
} = a;
|
|
869
869
|
function i(t, v) {
|
|
870
|
-
h
|
|
870
|
+
o[h] = "", e != null && e.remove && (e == null || e.remove(t, v));
|
|
871
871
|
}
|
|
872
872
|
return [createVNode(resolveComponent("form-upload"), mergeProps({
|
|
873
|
-
record:
|
|
874
|
-
field:
|
|
873
|
+
record: o,
|
|
874
|
+
field: h,
|
|
875
875
|
mode: "image"
|
|
876
876
|
}, r, {
|
|
877
877
|
onRemove: (t, v) => i(t, v)
|
|
@@ -880,9 +880,9 @@ const VxetableRender = (VXETable, {
|
|
|
880
880
|
}), VXETable.renderer.add("#tag", {
|
|
881
881
|
// 默认显示模板
|
|
882
882
|
renderTableDefault(a, l) {
|
|
883
|
-
let
|
|
883
|
+
let o;
|
|
884
884
|
const {
|
|
885
|
-
row:
|
|
885
|
+
row: h,
|
|
886
886
|
column: r
|
|
887
887
|
} = l, {
|
|
888
888
|
props: {
|
|
@@ -891,20 +891,20 @@ const VxetableRender = (VXETable, {
|
|
|
891
891
|
}
|
|
892
892
|
} = a;
|
|
893
893
|
function t() {
|
|
894
|
-
return
|
|
894
|
+
return h[r.field] ? i[h[r.field]] : null;
|
|
895
895
|
}
|
|
896
|
-
return [
|
|
896
|
+
return [h[r.field] ? createVNode(resolveComponent("el-tag"), {
|
|
897
897
|
effect: "dark",
|
|
898
898
|
type: t()
|
|
899
|
-
}, _isSlot(
|
|
900
|
-
default: () => [
|
|
899
|
+
}, _isSlot(o = getValue(e, h[r.field])) ? o : {
|
|
900
|
+
default: () => [o]
|
|
901
901
|
}) : null];
|
|
902
902
|
}
|
|
903
903
|
}), VXETable.renderer.add("#switch", {
|
|
904
904
|
renderTableDefault(a, l) {
|
|
905
905
|
const {
|
|
906
|
-
row:
|
|
907
|
-
column:
|
|
906
|
+
row: o,
|
|
907
|
+
column: h
|
|
908
908
|
} = l, {
|
|
909
909
|
props: {
|
|
910
910
|
code: r,
|
|
@@ -915,15 +915,15 @@ const VxetableRender = (VXETable, {
|
|
|
915
915
|
} = a;
|
|
916
916
|
function v(Z) {
|
|
917
917
|
const d = {
|
|
918
|
-
row:
|
|
919
|
-
column:
|
|
918
|
+
row: o,
|
|
919
|
+
column: h,
|
|
920
920
|
value: Z
|
|
921
921
|
};
|
|
922
922
|
t != null && t.change && t.change(d);
|
|
923
923
|
}
|
|
924
|
-
return [h
|
|
925
|
-
modelValue: h
|
|
926
|
-
"onUpdate:modelValue": (Z) => h
|
|
924
|
+
return [o[h.field] ? createVNode(resolveComponent("el-switch"), mergeProps({
|
|
925
|
+
modelValue: o[h.field],
|
|
926
|
+
"onUpdate:modelValue": (Z) => o[h.field] = Z,
|
|
927
927
|
"inline-prompt": !0,
|
|
928
928
|
size: "large",
|
|
929
929
|
style: "--el-switch-on-color: #13ce66; --el-switch-off-color: #E6A23C"
|
|
@@ -936,49 +936,49 @@ const VxetableRender = (VXETable, {
|
|
|
936
936
|
}), VXETable.renderer.add("#iconSelect", {
|
|
937
937
|
renderTableEdit(a, l) {
|
|
938
938
|
const {
|
|
939
|
-
row:
|
|
940
|
-
column:
|
|
939
|
+
row: o,
|
|
940
|
+
column: h
|
|
941
941
|
} = l;
|
|
942
942
|
return [createVNode(resolveComponent("SuIconSelect"), {
|
|
943
|
-
modelValue: h
|
|
944
|
-
"onUpdate:modelValue": (r) => h
|
|
943
|
+
modelValue: o[h.field],
|
|
944
|
+
"onUpdate:modelValue": (r) => o[h.field] = r,
|
|
945
945
|
teleported: !1
|
|
946
946
|
}, null)];
|
|
947
947
|
},
|
|
948
948
|
renderTableCell(a, l) {
|
|
949
949
|
const {
|
|
950
|
-
row:
|
|
951
|
-
column:
|
|
950
|
+
row: o,
|
|
951
|
+
column: h
|
|
952
952
|
} = l;
|
|
953
953
|
return [createVNode(resolveComponent("IconifyIconOffline"), {
|
|
954
|
-
icon: h
|
|
954
|
+
icon: o[h.field],
|
|
955
955
|
style: "font-size: 16px;"
|
|
956
956
|
}, null)];
|
|
957
957
|
},
|
|
958
958
|
renderItemContent(a, l) {
|
|
959
959
|
const {
|
|
960
|
-
data:
|
|
961
|
-
field:
|
|
960
|
+
data: o,
|
|
961
|
+
field: h
|
|
962
962
|
} = l;
|
|
963
963
|
return [createVNode(resolveComponent("SuIconSelect"), {
|
|
964
|
-
modelValue: h
|
|
965
|
-
"onUpdate:modelValue": (r) => h
|
|
964
|
+
modelValue: o[h],
|
|
965
|
+
"onUpdate:modelValue": (r) => o[h] = r,
|
|
966
966
|
teleported: !0
|
|
967
967
|
}, null)];
|
|
968
968
|
}
|
|
969
969
|
}), VXETable.renderer.add("#treeSelect", {
|
|
970
970
|
renderTableEdit(a, l) {
|
|
971
971
|
const {
|
|
972
|
-
row:
|
|
973
|
-
column:
|
|
972
|
+
row: o,
|
|
973
|
+
column: h
|
|
974
974
|
} = l, {
|
|
975
975
|
props: r,
|
|
976
976
|
sourceData: e,
|
|
977
977
|
events: i
|
|
978
978
|
} = a;
|
|
979
979
|
return [createVNode(resolveComponent("el-tree-select"), mergeProps({
|
|
980
|
-
modelValue: h
|
|
981
|
-
"onUpdate:modelValue": (t) => h
|
|
980
|
+
modelValue: o[h.field],
|
|
981
|
+
"onUpdate:modelValue": (t) => o[h.field] = t,
|
|
982
982
|
data: e,
|
|
983
983
|
"check-strictly": !0
|
|
984
984
|
}, r, {
|
|
@@ -990,31 +990,31 @@ const VxetableRender = (VXETable, {
|
|
|
990
990
|
},
|
|
991
991
|
renderTableCell(a, l) {
|
|
992
992
|
const {
|
|
993
|
-
row:
|
|
994
|
-
column:
|
|
993
|
+
row: o,
|
|
994
|
+
column: h
|
|
995
995
|
} = l, {
|
|
996
996
|
sourceData: r,
|
|
997
997
|
props: e = {}
|
|
998
998
|
} = a, {
|
|
999
999
|
children: i = "children",
|
|
1000
1000
|
label: t = "label"
|
|
1001
|
-
} = e, v = findTree(r, (Z) => Z.value === h
|
|
1001
|
+
} = e, v = findTree(r, (Z) => Z.value === o[h.field], {
|
|
1002
1002
|
children: i
|
|
1003
1003
|
});
|
|
1004
1004
|
return v ? [createVNode("span", null, [v.item[t]])] : null;
|
|
1005
1005
|
},
|
|
1006
1006
|
renderItemContent(a, l) {
|
|
1007
1007
|
const {
|
|
1008
|
-
data:
|
|
1009
|
-
field:
|
|
1008
|
+
data: o,
|
|
1009
|
+
field: h
|
|
1010
1010
|
} = l, {
|
|
1011
1011
|
props: r,
|
|
1012
1012
|
sourceData: e,
|
|
1013
1013
|
events: i
|
|
1014
1014
|
} = a;
|
|
1015
1015
|
return [createVNode(resolveComponent("el-tree-select"), mergeProps({
|
|
1016
|
-
modelValue: h
|
|
1017
|
-
"onUpdate:modelValue": (t) => h
|
|
1016
|
+
modelValue: o[h],
|
|
1017
|
+
"onUpdate:modelValue": (t) => o[h] = t,
|
|
1018
1018
|
data: e,
|
|
1019
1019
|
"check-strictly": !0
|
|
1020
1020
|
}, r, {
|
|
@@ -1100,46 +1100,46 @@ const VxetableRender = (VXETable, {
|
|
|
1100
1100
|
e[f] = e[f] || v[f];
|
|
1101
1101
|
})), !e[Z] && e[i] && (e[Z] = t ? (d = e[i]) == null ? void 0 : d.split(",") : e[i]);
|
|
1102
1102
|
}
|
|
1103
|
-
}), onCheckChange = (a, l,
|
|
1104
|
-
console.log(a, l,
|
|
1105
|
-
}, onNodeClick = (a, l,
|
|
1106
|
-
|
|
1107
|
-
}, onCurrentChange = (a, l,
|
|
1108
|
-
|
|
1103
|
+
}), onCheckChange = (a, l, o, h) => {
|
|
1104
|
+
console.log(a, l, o), h != null && h.checkChange && (h == null || h.checkChange(a, l, o));
|
|
1105
|
+
}, onNodeClick = (a, l, o, h) => {
|
|
1106
|
+
h != null && h.checkChange && (h == null || h.checkChange(a, l, o));
|
|
1107
|
+
}, onCurrentChange = (a, l, o) => {
|
|
1108
|
+
o != null && o.checkChange && (o == null || o.checkChange(a, l));
|
|
1109
1109
|
};
|
|
1110
1110
|
function getValue(a, l) {
|
|
1111
|
-
var
|
|
1112
|
-
return !l || !a || !dict ? l : (r = (
|
|
1111
|
+
var o, h, r;
|
|
1112
|
+
return !l || !a || !dict ? l : (r = (h = (o = dict[a]) == null ? void 0 : o.children) == null ? void 0 : h.find((e) => e.dictCode === l)) == null ? void 0 : r.dictName;
|
|
1113
1113
|
}
|
|
1114
1114
|
return VXETable;
|
|
1115
1115
|
}, getCookieParam = () => {
|
|
1116
1116
|
const a = "kCookies_param";
|
|
1117
1117
|
return cookies.get(a) ? JSON.parse(cookies.get(a)) : {};
|
|
1118
1118
|
}, hasClass = (a, l) => {
|
|
1119
|
-
var
|
|
1120
|
-
return !!((
|
|
1121
|
-
}, addClass = (a, l,
|
|
1122
|
-
hasClass(a, l) || (a.className += " " + l),
|
|
1123
|
-
}, removeClass = (a, l,
|
|
1124
|
-
var
|
|
1119
|
+
var o;
|
|
1120
|
+
return !!((o = a.className) != null && o.match(new RegExp("(\\s|^)" + l + "(\\s|$)")));
|
|
1121
|
+
}, addClass = (a, l, o) => {
|
|
1122
|
+
hasClass(a, l) || (a.className += " " + l), o && (hasClass(a, o) || (a.className += " " + o));
|
|
1123
|
+
}, removeClass = (a, l, o) => {
|
|
1124
|
+
var h, r;
|
|
1125
1125
|
if (hasClass(a, l)) {
|
|
1126
1126
|
const e = new RegExp("(\\s|^)" + l + "(\\s|$)");
|
|
1127
|
-
a.className = (
|
|
1127
|
+
a.className = (h = a.className) == null ? void 0 : h.replace(e, " ").trim();
|
|
1128
1128
|
}
|
|
1129
|
-
if (
|
|
1130
|
-
const e = new RegExp("(\\s|^)" +
|
|
1129
|
+
if (o && hasClass(a, o)) {
|
|
1130
|
+
const e = new RegExp("(\\s|^)" + o + "(\\s|$)");
|
|
1131
1131
|
a.className = (r = a.className) == null ? void 0 : r.replace(e, " ").trim();
|
|
1132
1132
|
}
|
|
1133
|
-
}, toggleClass = (a, l,
|
|
1134
|
-
const
|
|
1135
|
-
let { className: r } =
|
|
1136
|
-
r = r == null ? void 0 : r.replace(l, ""),
|
|
1133
|
+
}, toggleClass = (a, l, o) => {
|
|
1134
|
+
const h = o || document.body;
|
|
1135
|
+
let { className: r } = h;
|
|
1136
|
+
r = r == null ? void 0 : r.replace(l, ""), h.className = r && a ? `${r} ${l} ` : r;
|
|
1137
1137
|
};
|
|
1138
1138
|
function useRafThrottle(a) {
|
|
1139
1139
|
let l = !1;
|
|
1140
|
-
return function(...
|
|
1140
|
+
return function(...o) {
|
|
1141
1141
|
l || (l = !0, window.requestAnimationFrame(() => {
|
|
1142
|
-
a.apply(this,
|
|
1142
|
+
a.apply(this, o), l = !1;
|
|
1143
1143
|
}));
|
|
1144
1144
|
};
|
|
1145
1145
|
}
|
|
@@ -1148,9 +1148,9 @@ const openLink = (a) => {
|
|
|
1148
1148
|
l.setAttribute("href", a), l.setAttribute("target", "_blank"), l.setAttribute("rel", "noreferrer noopener"), l.setAttribute("id", "external"), document.getElementById("external") && document.body.removeChild(document.getElementById("external")), document.body.appendChild(l), l.click(), l.remove();
|
|
1149
1149
|
}, isServer = typeof window > "u", resizeHandler = (a) => {
|
|
1150
1150
|
for (const l of a) {
|
|
1151
|
-
const
|
|
1152
|
-
|
|
1153
|
-
|
|
1151
|
+
const o = l.target.__resizeListeners__ || [];
|
|
1152
|
+
o.length && o.forEach((h) => {
|
|
1153
|
+
h();
|
|
1154
1154
|
});
|
|
1155
1155
|
}
|
|
1156
1156
|
}, addResizeListener = (a, l) => {
|
|
@@ -1167,9 +1167,9 @@ function useWatermark(a = ref(document.body)) {
|
|
|
1167
1167
|
if (!Z) return;
|
|
1168
1168
|
const { clientHeight: d, clientWidth: n } = Z;
|
|
1169
1169
|
i({ height: d, width: n });
|
|
1170
|
-
}),
|
|
1171
|
-
const Z = unref(
|
|
1172
|
-
|
|
1170
|
+
}), o = domSymbol.toString(), h = shallowRef(), r = () => {
|
|
1171
|
+
const Z = unref(h);
|
|
1172
|
+
h.value = void 0;
|
|
1173
1173
|
const d = unref(a);
|
|
1174
1174
|
d && (Z && d.removeChild(Z), removeResizeListener(d, l));
|
|
1175
1175
|
};
|
|
@@ -1180,21 +1180,21 @@ function useWatermark(a = ref(document.body)) {
|
|
|
1180
1180
|
return m && (m.rotate(-20 * Math.PI / 120), m.font = (d == null ? void 0 : d.font) ?? "15px Reggae One", m.fillStyle = (d == null ? void 0 : d.fillStyle) ?? "rgba(180, 180, 180, 0.75)", m.textAlign = "left", m.textBaseline = "middle", m.fillText(Z, f / 20, b)), n.toDataURL("image/png");
|
|
1181
1181
|
}
|
|
1182
1182
|
function i(Z = {}) {
|
|
1183
|
-
const d = unref(
|
|
1183
|
+
const d = unref(h);
|
|
1184
1184
|
d && (isUndefined(Z.width) || (d.style.width = `${Z.width}px`), isUndefined(Z.height) || (d.style.height = `${Z.height}px`), isUndefined(Z.str) || (d.style.background = `url(${e(
|
|
1185
1185
|
Z.str,
|
|
1186
1186
|
Z.attr
|
|
1187
1187
|
)}) left top repeat`));
|
|
1188
1188
|
}
|
|
1189
1189
|
const t = (Z, d) => {
|
|
1190
|
-
if (unref(
|
|
1191
|
-
return i({ str: Z, attr: d }),
|
|
1190
|
+
if (unref(h))
|
|
1191
|
+
return i({ str: Z, attr: d }), o;
|
|
1192
1192
|
const n = document.createElement("div");
|
|
1193
|
-
|
|
1193
|
+
h.value = n, n.id = o, n.style.pointerEvents = "none", n.style.top = "0px", n.style.left = "0px", n.style.position = "absolute", n.style.zIndex = "100000";
|
|
1194
1194
|
const f = unref(a);
|
|
1195
|
-
if (!f) return
|
|
1195
|
+
if (!f) return o;
|
|
1196
1196
|
const { clientHeight: b, clientWidth: m } = f;
|
|
1197
|
-
return i({ str: Z, width: m, height: b, attr: d }), f.appendChild(n),
|
|
1197
|
+
return i({ str: Z, width: m, height: b, attr: d }), f.appendChild(n), o;
|
|
1198
1198
|
};
|
|
1199
1199
|
function v(Z, d) {
|
|
1200
1200
|
t(Z, d), addResizeListener(document.documentElement, l), getCurrentInstance() && onBeforeUnmount(() => {
|
|
@@ -1210,9 +1210,9 @@ function entries(a) {
|
|
|
1210
1210
|
function useAttrs(a = {}) {
|
|
1211
1211
|
const l = getCurrentInstance();
|
|
1212
1212
|
if (!l) return {};
|
|
1213
|
-
const { excludeListeners:
|
|
1213
|
+
const { excludeListeners: o = !1, excludeKeys: h = [] } = a, r = shallowRef({}), e = h.concat(DEFAULT_EXCLUDE_KEYS);
|
|
1214
1214
|
return l.attrs = reactive(l.attrs), watchEffect(() => {
|
|
1215
|
-
const i = entries(l.attrs).reduce((t, [v, Z]) => (!e.includes(v) && !(
|
|
1215
|
+
const i = entries(l.attrs).reduce((t, [v, Z]) => (!e.includes(v) && !(o && LISTENER_PREFIX.test(v)) && (t[v] = Z), t), {});
|
|
1216
1216
|
r.value = i;
|
|
1217
1217
|
}), r;
|
|
1218
1218
|
}
|
|
@@ -1236,7 +1236,7 @@ const useRender = () => {
|
|
|
1236
1236
|
defaultValue: L,
|
|
1237
1237
|
events: u
|
|
1238
1238
|
};
|
|
1239
|
-
},
|
|
1239
|
+
}, o = (c, H) => {
|
|
1240
1240
|
const u = w(H);
|
|
1241
1241
|
return {
|
|
1242
1242
|
name: "#SuSelect",
|
|
@@ -1245,7 +1245,7 @@ const useRender = () => {
|
|
|
1245
1245
|
options: (c == null ? void 0 : c.options) || [],
|
|
1246
1246
|
events: u
|
|
1247
1247
|
};
|
|
1248
|
-
},
|
|
1248
|
+
}, h = (c, H) => {
|
|
1249
1249
|
const u = {
|
|
1250
1250
|
optionProps: { extLabel: "userName", value: "employeeName" },
|
|
1251
1251
|
props: {
|
|
@@ -1257,7 +1257,7 @@ const useRender = () => {
|
|
|
1257
1257
|
fetchField: "employeeName"
|
|
1258
1258
|
}
|
|
1259
1259
|
};
|
|
1260
|
-
return
|
|
1260
|
+
return o(u, H);
|
|
1261
1261
|
}, r = (c) => {
|
|
1262
1262
|
const H = {
|
|
1263
1263
|
optionProps: { extLabel: "userName", value: "name" },
|
|
@@ -1268,7 +1268,7 @@ const useRender = () => {
|
|
|
1268
1268
|
mapField: c == null ? void 0 : c.mapField
|
|
1269
1269
|
}
|
|
1270
1270
|
};
|
|
1271
|
-
return
|
|
1271
|
+
return o(H);
|
|
1272
1272
|
}, e = (c, H) => {
|
|
1273
1273
|
const u = {
|
|
1274
1274
|
label: "organizationName",
|
|
@@ -1319,7 +1319,7 @@ const useRender = () => {
|
|
|
1319
1319
|
}, v = (c, H) => {
|
|
1320
1320
|
const u = Object.assign({ disabled: !1, rows: 3 }, c), C = u == null ? void 0 : u.defaultValue;
|
|
1321
1321
|
return {
|
|
1322
|
-
name: "
|
|
1322
|
+
name: "VxeTextarea",
|
|
1323
1323
|
props: u,
|
|
1324
1324
|
defaultValue: C,
|
|
1325
1325
|
events: w(H)
|
|
@@ -1439,12 +1439,12 @@ const useRender = () => {
|
|
|
1439
1439
|
}
|
|
1440
1440
|
return {
|
|
1441
1441
|
renderDict: l,
|
|
1442
|
-
renderSelect:
|
|
1442
|
+
renderSelect: o,
|
|
1443
1443
|
renderInput: t,
|
|
1444
1444
|
renderTextarea: v,
|
|
1445
1445
|
renderCheckBox: Z,
|
|
1446
1446
|
renderRadio: d,
|
|
1447
|
-
renderUser:
|
|
1447
|
+
renderUser: h,
|
|
1448
1448
|
renderSysUser: r,
|
|
1449
1449
|
renderInvOrg: e,
|
|
1450
1450
|
renderBU: i,
|
|
@@ -1464,11 +1464,11 @@ const useRender = () => {
|
|
|
1464
1464
|
}, useGlobal = () => {
|
|
1465
1465
|
const a = getCurrentInstance();
|
|
1466
1466
|
if (!a) return { $global: {}, $storage: {}, $config: {} };
|
|
1467
|
-
const l = a.appContext.app.config.globalProperties,
|
|
1467
|
+
const l = a.appContext.app.config.globalProperties, o = l.$storage, h = l.$config, r = l.$serviceApi, e = l.$hasAuthority, i = l.$printPlugin, t = l.$mode;
|
|
1468
1468
|
return {
|
|
1469
1469
|
$global: l,
|
|
1470
|
-
$storage:
|
|
1471
|
-
$config:
|
|
1470
|
+
$storage: o,
|
|
1471
|
+
$config: h,
|
|
1472
1472
|
$serviceApi: r,
|
|
1473
1473
|
$hasAuthority: e,
|
|
1474
1474
|
$printPlugin: i,
|
|
@@ -1485,60 +1485,60 @@ function buildUUID() {
|
|
|
1485
1485
|
}
|
|
1486
1486
|
let unique = 0;
|
|
1487
1487
|
function buildShortUUID(a = "") {
|
|
1488
|
-
const l = Date.now(),
|
|
1489
|
-
return unique++, a + "_" +
|
|
1488
|
+
const l = Date.now(), o = Math.floor(Math.random() * 1e9);
|
|
1489
|
+
return unique++, a + "_" + o + unique + String(l);
|
|
1490
1490
|
}
|
|
1491
1491
|
const deviceDetection = () => {
|
|
1492
|
-
const a = navigator.userAgent.toLowerCase(), l = a.match(/iphone os/i) === "iphone os",
|
|
1493
|
-
return l ||
|
|
1492
|
+
const a = navigator.userAgent.toLowerCase(), l = a.match(/iphone os/i) === "iphone os", o = a.match(/midp/i) === "midp", h = a.match(/rv:1.2.3.4/i) === "rv:1.2.3.4", r = a.match(/ucweb/i) === "ucweb", e = a.match(/android/i) === "android", i = a.match(/windows ce/i) === "windows ce", t = a.match(/windows mobile/i) === "windows mobile";
|
|
1493
|
+
return l || o || h || r || e || i || t;
|
|
1494
1494
|
}, getBrowserInfo = () => {
|
|
1495
|
-
const a = navigator.userAgent.toLowerCase(), l = /(msie|firefox|chrome|opera|version).*?([\d.]+)/,
|
|
1495
|
+
const a = navigator.userAgent.toLowerCase(), l = /(msie|firefox|chrome|opera|version).*?([\d.]+)/, o = a.match(l);
|
|
1496
1496
|
return {
|
|
1497
|
-
browser:
|
|
1498
|
-
version:
|
|
1497
|
+
browser: o[1].replace(/version/, "'safari"),
|
|
1498
|
+
version: o[2]
|
|
1499
1499
|
};
|
|
1500
|
-
}, showMessage = (a, l = "message",
|
|
1501
|
-
var
|
|
1502
|
-
return l === "alert" ? (
|
|
1500
|
+
}, showMessage = (a, l = "message", o = {}) => {
|
|
1501
|
+
var h, r;
|
|
1502
|
+
return l === "alert" ? (h = VxeUI.modal) == null ? void 0 : h.alert({ content: a, ...o }) : (r = VxeUI.modal) == null ? void 0 : r.message({ content: a, ...o });
|
|
1503
1503
|
}, successMessage = (a = "操作成功", l = {}) => {
|
|
1504
|
-
var
|
|
1505
|
-
return (
|
|
1504
|
+
var o;
|
|
1505
|
+
return (o = VxeUI.modal) == null ? void 0 : o.message({ content: a, ...l, status: "success" });
|
|
1506
1506
|
}, warnMessage = (a, l = {}) => {
|
|
1507
|
-
var
|
|
1508
|
-
return l.type === "alert" ? (
|
|
1507
|
+
var o, h;
|
|
1508
|
+
return l.type === "alert" ? (o = VxeUI.modal) == null ? void 0 : o.alert({ content: a, ...l, status: "warning" }) : (h = VxeUI.modal) == null ? void 0 : h.message({
|
|
1509
1509
|
content: a,
|
|
1510
1510
|
duration: 5e3,
|
|
1511
1511
|
...l,
|
|
1512
1512
|
status: "warning"
|
|
1513
1513
|
});
|
|
1514
1514
|
}, errorMessage = (a = "操作失败", l = {}) => {
|
|
1515
|
-
var
|
|
1516
|
-
return l.type === "alert" ? (
|
|
1515
|
+
var o, h;
|
|
1516
|
+
return l.type === "alert" ? (o = VxeUI.modal) == null ? void 0 : o.alert({ content: a, ...l, status: "error" }) : (h = VxeUI.modal) == null ? void 0 : h.message({ content: a, ...l, status: "error" });
|
|
1517
1517
|
}, renderHook = useRender(), i18nColums = (a, l = !0) => {
|
|
1518
|
-
let
|
|
1518
|
+
let o = 0, h = 0;
|
|
1519
1519
|
const r = a.length - 1;
|
|
1520
1520
|
return a.map((e, i) => {
|
|
1521
|
-
if (
|
|
1521
|
+
if (h = h + e.width, e.type) return e;
|
|
1522
1522
|
e.title = e.title || `message.${e.field}`;
|
|
1523
1523
|
const { showOverflow: t } = e;
|
|
1524
|
-
return e.field !== "operate" && ((e.width > 99 || e.minWidth) && (e.showOverflow = t === !1 ? t : "tooltip"), e.sortable = !(l === !1 || e.sortable === !1)),
|
|
1524
|
+
return e.field !== "operate" && ((e.width > 99 || e.minWidth) && (e.showOverflow = t === !1 ? t : "tooltip"), e.sortable = !(l === !1 || e.sortable === !1)), o || (o = e.minWidth), !o && r === i && h < window.innerWidth && (e.minWidth = e.width, e.width = null), e;
|
|
1525
1525
|
});
|
|
1526
|
-
}, formatItems = (a, l,
|
|
1527
|
-
var e, i
|
|
1528
|
-
if ((
|
|
1529
|
-
return
|
|
1526
|
+
}, formatItems = (a, l, o = 24) => a.length ? a.map((h) => {
|
|
1527
|
+
var r, e, i;
|
|
1528
|
+
if ((r = h.children) != null && r.length)
|
|
1529
|
+
return h.children = formatItems(h.children, l, o), h;
|
|
1530
1530
|
{
|
|
1531
|
-
|
|
1532
|
-
let
|
|
1533
|
-
l === "detail" ? (
|
|
1534
|
-
let
|
|
1531
|
+
h.title = h.title || `message.${h.field}`, h.span = h.span || o, h.type === "collapseNode" && (h.title = "", h.titleWidth = 0);
|
|
1532
|
+
let t = !1, v = window.$i18n ? window.$i18n("message.udp.placeholder") + window.$i18n(h.title) : "";
|
|
1533
|
+
l === "detail" ? (t = !0, v = null) : t = h.disabled === !1 ? h.disabled : h.disabled || ((i = (e = h.itemRender) == null ? void 0 : e.props) == null ? void 0 : i.disabled);
|
|
1534
|
+
let Z = {
|
|
1535
1535
|
name: "VxeInput",
|
|
1536
|
-
props: { disabled:
|
|
1536
|
+
props: { disabled: t, placeholder: t ? "" : v }
|
|
1537
1537
|
};
|
|
1538
|
-
return
|
|
1539
|
-
disabled:
|
|
1540
|
-
placeholder:
|
|
1541
|
-
}),
|
|
1538
|
+
return h.code && !h.itemRender && (Z = renderHook.renderDict(h.code)), h.itemRender = h.itemRender || Z, h.itemRender.props = Object.assign(h.itemRender.props || {}, {
|
|
1539
|
+
disabled: t,
|
|
1540
|
+
placeholder: t ? "" : v
|
|
1541
|
+
}), h;
|
|
1542
1542
|
}
|
|
1543
1543
|
}) : a, formSearchButtons = {
|
|
1544
1544
|
span: 6,
|
|
@@ -1565,11 +1565,11 @@ const deviceDetection = () => {
|
|
|
1565
1565
|
events: null
|
|
1566
1566
|
}
|
|
1567
1567
|
}, formatGridItems = (a, l) => {
|
|
1568
|
-
const
|
|
1568
|
+
const o = a, h = o.length, r = h > 2 && o.some((Z, d) => d < 3 && (Z.span > 6 || getDateRange(Z))), e = r || h > 3, i = {
|
|
1569
1569
|
collapseTags: !0,
|
|
1570
1570
|
collapseTagsTooltip: !0,
|
|
1571
1571
|
multiple: !0
|
|
1572
|
-
}, t =
|
|
1572
|
+
}, t = o.map((Z, d) => {
|
|
1573
1573
|
var n, f, b;
|
|
1574
1574
|
return Z.folding = r ? e && d > 1 : e && d > 2, Z.span = getDateRange(Z) ? 12 : Z.span || 6, Z.code && !Z.itemRender && (Z.itemRender = renderHook.renderDict(Z.code)), Z.itemRender = Z.itemRender || { name: "VxeInput" }, Z.resetValue = Z.itemRender.defaultValue, Z.title = Z.title || `message.${Z.field}`, (Z.multiple || (f = (n = Z.itemRender) == null ? void 0 : n.props) != null && f.multiple) && (Z.itemRender.props = Object.assign(
|
|
1575
1575
|
i,
|
|
@@ -1583,25 +1583,25 @@ const deviceDetection = () => {
|
|
|
1583
1583
|
t.push(v);
|
|
1584
1584
|
return t;
|
|
1585
1585
|
}, getDateRange = (a) => {
|
|
1586
|
-
var l,
|
|
1587
|
-
return ((l = a.itemRender) == null ? void 0 : l.name) === "#SuDateRange" ? ((
|
|
1586
|
+
var l, o, h, r, e;
|
|
1587
|
+
return ((l = a.itemRender) == null ? void 0 : l.name) === "#SuDateRange" ? ((h = (o = a.itemRender) == null ? void 0 : o.props) == null ? void 0 : h.type) === "daterange" || !((e = (r = a.itemRender) == null ? void 0 : r.props) != null && e.type) : !1;
|
|
1588
1588
|
}, formatRules = (a, l) => {
|
|
1589
|
-
const
|
|
1590
|
-
return a.forEach((
|
|
1589
|
+
const o = {};
|
|
1590
|
+
return a.forEach((h) => {
|
|
1591
1591
|
var r;
|
|
1592
|
-
if ((r =
|
|
1593
|
-
const e = formatRules(
|
|
1594
|
-
merge(
|
|
1595
|
-
} else if (
|
|
1596
|
-
const { field: e, title: i } =
|
|
1597
|
-
|
|
1592
|
+
if ((r = h.children) != null && r.length) {
|
|
1593
|
+
const e = formatRules(h.children, l);
|
|
1594
|
+
merge(o, e);
|
|
1595
|
+
} else if (h.required) {
|
|
1596
|
+
const { field: e, title: i } = h, t = i == null ? void 0 : i.startsWith("message.");
|
|
1597
|
+
o[e] = [
|
|
1598
1598
|
{
|
|
1599
1599
|
required: !0,
|
|
1600
1600
|
message: `${l("message.required")}${i && t ? l(i) : i || l(`message.${e}`)}`
|
|
1601
1601
|
}
|
|
1602
1602
|
];
|
|
1603
1603
|
}
|
|
1604
|
-
}),
|
|
1604
|
+
}), o;
|
|
1605
1605
|
}, expandedPaths = [];
|
|
1606
1606
|
function extractPathList(a) {
|
|
1607
1607
|
if (!Array.isArray(a)) {
|
|
@@ -1620,8 +1620,8 @@ function deleteTreeChildren(a, l = []) {
|
|
|
1620
1620
|
return;
|
|
1621
1621
|
}
|
|
1622
1622
|
if (!(!a || a.length === 0)) {
|
|
1623
|
-
for (const [
|
|
1624
|
-
|
|
1623
|
+
for (const [o, h] of a.entries())
|
|
1624
|
+
h.children && h.children.length === 1 && delete h.children, h.id = o, h.parentId = l.length ? l[l.length - 1] : null, h.pathList = [...l, h.id], h.uniqueId = h.pathList.length > 1 ? h.pathList.join("-") : h.pathList[0], h.children && h.children.length > 0 && deleteTreeChildren(h.children, h.pathList);
|
|
1625
1625
|
return a;
|
|
1626
1626
|
}
|
|
1627
1627
|
}
|
|
@@ -1631,8 +1631,8 @@ function buildHierarchyTree(a, l = []) {
|
|
|
1631
1631
|
return;
|
|
1632
1632
|
}
|
|
1633
1633
|
if (!(!a || a.length === 0)) {
|
|
1634
|
-
for (const [
|
|
1635
|
-
|
|
1634
|
+
for (const [o, h] of a.entries())
|
|
1635
|
+
h.id = o, h.parentId = l.length ? l[l.length - 1] : null, h.pathList = [...l, h.id], h.children && h.children.length > 0 && buildHierarchyTree(h.children, h.pathList);
|
|
1636
1636
|
return a;
|
|
1637
1637
|
}
|
|
1638
1638
|
}
|
|
@@ -1642,20 +1642,20 @@ function getNodeByUniqueId(a, l) {
|
|
|
1642
1642
|
return;
|
|
1643
1643
|
}
|
|
1644
1644
|
if (!a || a.length === 0) return;
|
|
1645
|
-
const
|
|
1646
|
-
if (
|
|
1647
|
-
const
|
|
1648
|
-
return getNodeByUniqueId(
|
|
1645
|
+
const o = a.find((r) => r.uniqueId === l);
|
|
1646
|
+
if (o) return o;
|
|
1647
|
+
const h = a.filter((r) => r.children).map((r) => r.children).flat(1);
|
|
1648
|
+
return getNodeByUniqueId(h, l);
|
|
1649
1649
|
}
|
|
1650
|
-
function appendFieldByUniqueId(a, l,
|
|
1650
|
+
function appendFieldByUniqueId(a, l, o) {
|
|
1651
1651
|
if (!Array.isArray(a)) {
|
|
1652
1652
|
console.warn("menuTree must be an array");
|
|
1653
1653
|
return;
|
|
1654
1654
|
}
|
|
1655
1655
|
if (!a || a.length === 0) return {};
|
|
1656
|
-
for (const
|
|
1657
|
-
const r =
|
|
1658
|
-
|
|
1656
|
+
for (const h of a) {
|
|
1657
|
+
const r = h.children && h.children.length > 0;
|
|
1658
|
+
h.uniqueId === l && Object.prototype.toString.call(o) === "[object Object]" && Object.assign(h, o), r && appendFieldByUniqueId(h.children, l, o);
|
|
1659
1659
|
}
|
|
1660
1660
|
return a;
|
|
1661
1661
|
}
|
|
@@ -1704,16 +1704,16 @@ const kTOKENKEY = "authorized-token", defaultConfig = {
|
|
|
1704
1704
|
}
|
|
1705
1705
|
/** 重连原始请求 */
|
|
1706
1706
|
static retryOriginalRequest(l) {
|
|
1707
|
-
return new Promise((
|
|
1708
|
-
g.requests.push((
|
|
1709
|
-
l.headers.Authorization = "Bearer " +
|
|
1707
|
+
return new Promise((o) => {
|
|
1708
|
+
g.requests.push((h) => {
|
|
1709
|
+
l.headers.Authorization = "Bearer " + h, o(l);
|
|
1710
1710
|
});
|
|
1711
1711
|
});
|
|
1712
1712
|
}
|
|
1713
1713
|
// 请求拦截
|
|
1714
1714
|
httpInterceptorsRequest() {
|
|
1715
1715
|
g.axiosInstance.interceptors.request.use(
|
|
1716
|
-
(l) => (has(l, "loading") && isRef(l.loading) && (l.loading.value = !0), NProgress.start(), typeof l.beforeRequestCallback == "function" ? (l.beforeRequestCallback(l), l) : g.initConfig.beforeRequestCallback ? (g.initConfig.beforeRequestCallback(l), l) : ["/refreshToken", "/login"].some((
|
|
1716
|
+
(l) => (has(l, "loading") && isRef(l.loading) && (l.loading.value = !0), NProgress.start(), typeof l.beforeRequestCallback == "function" ? (l.beforeRequestCallback(l), l) : g.initConfig.beforeRequestCallback ? (g.initConfig.beforeRequestCallback(l), l) : ["/refreshToken", "/login"].some((h) => l.url.indexOf(h) > -1) ? l : new Promise((h) => {
|
|
1717
1717
|
const r = cookies.get(kTOKENKEY);
|
|
1718
1718
|
if (r) {
|
|
1719
1719
|
const e = JSON.parse(r), i = (/* @__PURE__ */ new Date()).getTime();
|
|
@@ -1725,20 +1725,20 @@ const kTOKENKEY = "authorized-token", defaultConfig = {
|
|
|
1725
1725
|
this.routeToLogin();
|
|
1726
1726
|
}).finally(() => {
|
|
1727
1727
|
g.isRefreshing = !1;
|
|
1728
|
-
})),
|
|
1728
|
+
})), h(g.retryOriginalRequest(l))) : (l.headers.Authorization = "Bearer " + e.accessToken, h(l));
|
|
1729
1729
|
} else {
|
|
1730
1730
|
const e = cookies.get("kCookies_token");
|
|
1731
|
-
e && (l.headers["X-Token"] = e),
|
|
1731
|
+
e && (l.headers["X-Token"] = e), h(l);
|
|
1732
1732
|
}
|
|
1733
1733
|
})),
|
|
1734
1734
|
(l) => Promise.reject(l)
|
|
1735
1735
|
);
|
|
1736
1736
|
}
|
|
1737
1737
|
setToken(l) {
|
|
1738
|
-
const { access_token:
|
|
1739
|
-
accessToken:
|
|
1738
|
+
const { access_token: o, expires_in: h, refresh_token: r } = l, e = {
|
|
1739
|
+
accessToken: o,
|
|
1740
1740
|
refreshToken: r,
|
|
1741
|
-
expires: Date.now() +
|
|
1741
|
+
expires: Date.now() + h * 1e3
|
|
1742
1742
|
};
|
|
1743
1743
|
cookies.set(kTOKENKEY, JSON.stringify(e));
|
|
1744
1744
|
}
|
|
@@ -1748,29 +1748,29 @@ const kTOKENKEY = "authorized-token", defaultConfig = {
|
|
|
1748
1748
|
// 响应拦截
|
|
1749
1749
|
httpInterceptorsResponse() {
|
|
1750
1750
|
g.axiosInstance.interceptors.response.use(
|
|
1751
|
-
(
|
|
1752
|
-
const
|
|
1753
|
-
return has(
|
|
1751
|
+
(o) => {
|
|
1752
|
+
const h = o.config;
|
|
1753
|
+
return has(h, "loading") && isRef(h.loading) && (h.loading.value = !1), NProgress.done(), typeof h.beforeResponseCallback == "function" ? (h.beforeResponseCallback(o), o.data) : (g.initConfig.beforeResponseCallback && g.initConfig.beforeResponseCallback(o), o.data);
|
|
1754
1754
|
},
|
|
1755
|
-
(
|
|
1755
|
+
(o) => {
|
|
1756
1756
|
var r;
|
|
1757
|
-
const
|
|
1758
|
-
return has(
|
|
1757
|
+
const h = o;
|
|
1758
|
+
return has(o.config, "loading") && isRef((r = o == null ? void 0 : o.config) == null ? void 0 : r.loading) && (o.config.loading.value = !1), h.isCancelRequest = Axios.isCancel(h), NProgress.done(), Promise.reject(h);
|
|
1759
1759
|
}
|
|
1760
1760
|
);
|
|
1761
1761
|
}
|
|
1762
|
-
transformConfigByMethod(l,
|
|
1763
|
-
const { method:
|
|
1762
|
+
transformConfigByMethod(l, o) {
|
|
1763
|
+
const { method: h } = o, r = ["get"], e = h.toLocaleLowerCase(), i = r.includes(e) ? "params" : "data";
|
|
1764
1764
|
return {
|
|
1765
|
-
...
|
|
1765
|
+
...o,
|
|
1766
1766
|
[i]: l
|
|
1767
1767
|
};
|
|
1768
1768
|
}
|
|
1769
1769
|
// 通用请求工具函数
|
|
1770
|
-
request(l,
|
|
1771
|
-
const e = this.transformConfigByMethod(
|
|
1770
|
+
request(l, o, h, r) {
|
|
1771
|
+
const e = this.transformConfigByMethod(h, {
|
|
1772
1772
|
method: l,
|
|
1773
|
-
url:
|
|
1773
|
+
url: o,
|
|
1774
1774
|
...r
|
|
1775
1775
|
});
|
|
1776
1776
|
return new Promise((i, t) => {
|
|
@@ -1800,22 +1800,22 @@ const kTOKENKEY = "authorized-token", defaultConfig = {
|
|
|
1800
1800
|
});
|
|
1801
1801
|
}
|
|
1802
1802
|
// 单独抽离的post工具函数
|
|
1803
|
-
post(l,
|
|
1804
|
-
return this.request("post", l,
|
|
1803
|
+
post(l, o, h) {
|
|
1804
|
+
return this.request("post", l, o, h);
|
|
1805
1805
|
}
|
|
1806
1806
|
// 单独抽离的delete工具函数
|
|
1807
|
-
delete(l,
|
|
1808
|
-
return this.request("delete", l,
|
|
1807
|
+
delete(l, o, h) {
|
|
1808
|
+
return this.request("delete", l, o, h);
|
|
1809
1809
|
}
|
|
1810
1810
|
// 单独抽离的put工具函数
|
|
1811
|
-
put(l,
|
|
1812
|
-
return this.request("put", l,
|
|
1811
|
+
put(l, o, h) {
|
|
1812
|
+
return this.request("put", l, o, h);
|
|
1813
1813
|
}
|
|
1814
1814
|
// 单独抽离的get工具函数
|
|
1815
|
-
get(l,
|
|
1816
|
-
for (const r in
|
|
1817
|
-
|
|
1818
|
-
return this.request("get", l,
|
|
1815
|
+
get(l, o, h) {
|
|
1816
|
+
for (const r in o)
|
|
1817
|
+
o[r] || delete o[r];
|
|
1818
|
+
return this.request("get", l, o, h);
|
|
1819
1819
|
}
|
|
1820
1820
|
postRouter(l) {
|
|
1821
1821
|
return this.request("post", "route/service", l);
|
|
@@ -2479,10 +2479,10 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2479
2479
|
* @eg:var count = calendar.lYearDays(1987) ;//count=387
|
|
2480
2480
|
*/
|
|
2481
2481
|
lYearDays: function(a) {
|
|
2482
|
-
let l,
|
|
2482
|
+
let l, o = 348;
|
|
2483
2483
|
for (l = 32768; l > 8; l >>= 1)
|
|
2484
|
-
|
|
2485
|
-
return
|
|
2484
|
+
o += this.lunarInfo[a - 1900] & l ? 1 : 0;
|
|
2485
|
+
return o + this.leapDays(a);
|
|
2486
2486
|
},
|
|
2487
2487
|
/**
|
|
2488
2488
|
* 返回农历y年闰月是哪个月;若y年没有闰月 则返回0
|
|
@@ -2522,8 +2522,8 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2522
2522
|
solarDays: function(a, l) {
|
|
2523
2523
|
if (l > 12 || l < 1)
|
|
2524
2524
|
return -1;
|
|
2525
|
-
const
|
|
2526
|
-
return
|
|
2525
|
+
const o = l - 1;
|
|
2526
|
+
return o === 1 ? a % 4 === 0 && a % 100 !== 0 || a % 400 === 0 ? 29 : 28 : this.solarMonth[o];
|
|
2527
2527
|
},
|
|
2528
2528
|
/**
|
|
2529
2529
|
* 农历年份转换为干支纪年
|
|
@@ -2531,8 +2531,8 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2531
2531
|
* @return Cn string
|
|
2532
2532
|
*/
|
|
2533
2533
|
toGanZhiYear: function(a) {
|
|
2534
|
-
let l = (a - 3) % 10,
|
|
2535
|
-
return l === 0 && (l = 10),
|
|
2534
|
+
let l = (a - 3) % 10, o = (a - 3) % 12;
|
|
2535
|
+
return l === 0 && (l = 10), o === 0 && (o = 12), this.Gan[l - 1] + this.Zhi[o - 1];
|
|
2536
2536
|
},
|
|
2537
2537
|
/**
|
|
2538
2538
|
* 公历月、日判断所属星座
|
|
@@ -2541,8 +2541,8 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2541
2541
|
* @return Cn string
|
|
2542
2542
|
*/
|
|
2543
2543
|
toAstro: function(a, l) {
|
|
2544
|
-
const
|
|
2545
|
-
return
|
|
2544
|
+
const o = "摩羯水瓶双鱼白羊金牛双子巨蟹狮子处女天秤天蝎射手摩羯", h = [20, 19, 21, 21, 21, 22, 23, 23, 23, 23, 22, 22];
|
|
2545
|
+
return o.substr(a * 2 - (l < h[a - 1] ? 2 : 0), 2) + "座";
|
|
2546
2546
|
},
|
|
2547
2547
|
/**
|
|
2548
2548
|
* 传入offset偏移量返回干支
|
|
@@ -2562,12 +2562,12 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2562
2562
|
getTerm: function(a, l) {
|
|
2563
2563
|
if (a < 1900 || a > 2100 || l < 1 || l > 24)
|
|
2564
2564
|
return -1;
|
|
2565
|
-
const
|
|
2566
|
-
for (let r = 0; r <
|
|
2567
|
-
const e = parseInt("0x" +
|
|
2568
|
-
|
|
2565
|
+
const o = this.sTermInfo[a - 1900], h = [];
|
|
2566
|
+
for (let r = 0; r < o.length; r += 5) {
|
|
2567
|
+
const e = parseInt("0x" + o.substr(r, 5)).toString();
|
|
2568
|
+
h.push(e[0], e.substr(1, 2), e[3], e.substr(4, 2));
|
|
2569
2569
|
}
|
|
2570
|
-
return parseInt(
|
|
2570
|
+
return parseInt(h[l - 1]);
|
|
2571
2571
|
},
|
|
2572
2572
|
/**
|
|
2573
2573
|
* 传入农历数字月份返回汉语通俗表示法
|
|
@@ -2622,21 +2622,21 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2622
2622
|
* @return JSON object
|
|
2623
2623
|
* @eg:console.log(calendar.solar2lunar(1987,11,01));
|
|
2624
2624
|
*/
|
|
2625
|
-
solar2lunar: function(a, l,
|
|
2626
|
-
let
|
|
2627
|
-
if (
|
|
2625
|
+
solar2lunar: function(a, l, o) {
|
|
2626
|
+
let h = parseInt(a), r = parseInt(l), e = parseInt(o);
|
|
2627
|
+
if (h < 1900 || h > 2100 || h === 1900 && r === 1 && e < 31)
|
|
2628
2628
|
return -1;
|
|
2629
2629
|
let i;
|
|
2630
|
-
|
|
2630
|
+
h ? i = new Date(h, parseInt(r.toString()) - 1, e) : i = /* @__PURE__ */ new Date();
|
|
2631
2631
|
let t, v = 0, Z = 0;
|
|
2632
|
-
|
|
2632
|
+
h = i.getFullYear(), r = i.getMonth() + 1, e = i.getDate();
|
|
2633
2633
|
let d = (Date.UTC(i.getFullYear(), i.getMonth(), i.getDate()) - Date.UTC(1900, 0, 31)) / 864e5;
|
|
2634
2634
|
for (t = 1900; t < 2101 && d > 0; t++)
|
|
2635
2635
|
Z = this.lYearDays(t), d -= Z;
|
|
2636
2636
|
d < 0 && (d += Z, t--);
|
|
2637
2637
|
const n = /* @__PURE__ */ new Date();
|
|
2638
2638
|
let f = !1;
|
|
2639
|
-
n.getFullYear() ===
|
|
2639
|
+
n.getFullYear() === h && n.getMonth() + 1 === r && n.getDate() === e && (f = !0);
|
|
2640
2640
|
let b = i.getDay();
|
|
2641
2641
|
const m = this.nStr1[b];
|
|
2642
2642
|
b === 0 && (b = 7);
|
|
@@ -2646,12 +2646,12 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2646
2646
|
for (t = 1; t < 13 && d > 0; t++)
|
|
2647
2647
|
v > 0 && t === v + 1 && M === !1 ? (--t, M = !0, Z = this.leapDays(s)) : Z = this.monthDays(s, t), M === !0 && t === v + 1 && (M = !1), d -= Z;
|
|
2648
2648
|
d === 0 && v > 0 && t === v + 1 && (M ? M = !1 : (M = !0, --t)), d < 0 && (d += Z, --t);
|
|
2649
|
-
const p = t, y = d + 1, A = r - 1, k = this.toGanZhiYear(s), V = this.getTerm(
|
|
2650
|
-
let w = this.toGanZhi((
|
|
2651
|
-
e >= V && (w = this.toGanZhi((
|
|
2649
|
+
const p = t, y = d + 1, A = r - 1, k = this.toGanZhiYear(s), V = this.getTerm(h, r * 2 - 1), E = this.getTerm(h, r * 2);
|
|
2650
|
+
let w = this.toGanZhi((h - 1900) * 12 + r + 11);
|
|
2651
|
+
e >= V && (w = this.toGanZhi((h - 1900) * 12 + r + 12));
|
|
2652
2652
|
let T = !1, F;
|
|
2653
2653
|
V === e && (T = !0, F = this.solarTerm[r * 2 - 2]), E === e && (T = !0, F = this.solarTerm[r * 2 - 1]);
|
|
2654
|
-
const c = Date.UTC(
|
|
2654
|
+
const c = Date.UTC(h, A, 1, 0, 0, 0, 0) / 864e5 + 25567 + 10, H = this.toGanZhi(c + e - 1), u = this.toAstro(r, e), C = h + "-" + r + "-" + e, L = s + "-" + p + "-" + y, S = this.festival, I = this.lFestival, D = r + "-" + e;
|
|
2655
2655
|
let N = p + "-" + y;
|
|
2656
2656
|
return p === 12 && y === 29 && this.monthDays(s, p) === 29 && (N = "12-30"), {
|
|
2657
2657
|
date: C,
|
|
@@ -2664,7 +2664,7 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2664
2664
|
Animal: this.getAnimal(s),
|
|
2665
2665
|
IMonthCn: (M ? "闰" : "") + this.toChinaMonth(p),
|
|
2666
2666
|
IDayCn: this.toChinaDay(y),
|
|
2667
|
-
cYear:
|
|
2667
|
+
cYear: h,
|
|
2668
2668
|
cMonth: r,
|
|
2669
2669
|
cDay: e,
|
|
2670
2670
|
gzYear: k,
|
|
@@ -2689,14 +2689,14 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2689
2689
|
* @return JSON object
|
|
2690
2690
|
* @eg:console.log(calendar.lunar2solar(1987,9,10));
|
|
2691
2691
|
*/
|
|
2692
|
-
lunar2solar: function(a, l,
|
|
2693
|
-
a = parseInt(a), l = parseInt(l),
|
|
2692
|
+
lunar2solar: function(a, l, o, h) {
|
|
2693
|
+
a = parseInt(a), l = parseInt(l), o = parseInt(o), h = !!h;
|
|
2694
2694
|
const r = this.leapMonth(a);
|
|
2695
|
-
if (
|
|
2695
|
+
if (h && r !== l || a === 2100 && l === 12 && o > 1 || a === 1900 && l === 1 && o < 31)
|
|
2696
2696
|
return -1;
|
|
2697
2697
|
const e = this.monthDays(a, l);
|
|
2698
2698
|
let i = e;
|
|
2699
|
-
if (
|
|
2699
|
+
if (h && (i = this.leapDays(a)), a < 1900 || a > 2100 || o > i)
|
|
2700
2700
|
return -1;
|
|
2701
2701
|
let t = 0, v;
|
|
2702
2702
|
for (v = 1900; v < a; v++)
|
|
@@ -2704,8 +2704,8 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2704
2704
|
let Z = 0, d = !1;
|
|
2705
2705
|
for (v = 1; v < l; v++)
|
|
2706
2706
|
Z = this.leapMonth(a), d || Z <= v && Z > 0 && (t += this.leapDays(a), d = !0), t += this.monthDays(a, v);
|
|
2707
|
-
|
|
2708
|
-
const n = Date.UTC(1900, 1, 30, 0, 0, 0), f = new Date((t +
|
|
2707
|
+
h && (t += e);
|
|
2708
|
+
const n = Date.UTC(1900, 1, 30, 0, 0, 0), f = new Date((t + o - 31) * 864e5 + n), b = f.getUTCFullYear(), m = f.getUTCMonth() + 1, s = f.getUTCDate();
|
|
2709
2709
|
return this.solar2lunar(b, m, s);
|
|
2710
2710
|
}
|
|
2711
2711
|
}, dict = storageLocal.getItem("kLov"), formats = {
|
|
@@ -2745,8 +2745,8 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2745
2745
|
tableCellFormatMethod({ cellValue: a }, l) {
|
|
2746
2746
|
var r, e;
|
|
2747
2747
|
if (!l) return a;
|
|
2748
|
-
const
|
|
2749
|
-
return (
|
|
2748
|
+
const o = XEUtils.toValueString(a), h = dict ? (e = (r = dict[l]) == null ? void 0 : r.children) == null ? void 0 : e.find((i) => i.dictCode === o) : a;
|
|
2749
|
+
return (h == null ? void 0 : h.dictName) || a;
|
|
2750
2750
|
}
|
|
2751
2751
|
},
|
|
2752
2752
|
formatRelateField: {
|
|
@@ -2758,22 +2758,22 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
2758
2758
|
formatContact: {
|
|
2759
2759
|
// 字段拼接展示
|
|
2760
2760
|
tableCellFormatMethod({ row: a }, l) {
|
|
2761
|
-
return l.reduce((
|
|
2761
|
+
return l.reduce((o, h) => a[h] ? o ? o += a[h] : a[h] : o, "");
|
|
2762
2762
|
}
|
|
2763
2763
|
},
|
|
2764
2764
|
formatSelectLocal: {
|
|
2765
2765
|
tableCellFormatMethod({ cellValue: a }, l) {
|
|
2766
|
-
const [
|
|
2766
|
+
const [o, h = "value", r = "label"] = l, e = o == null ? void 0 : o.find((i) => i[h] === a);
|
|
2767
2767
|
return e ? e[r] : a;
|
|
2768
2768
|
}
|
|
2769
2769
|
},
|
|
2770
2770
|
formatMultiValue: {
|
|
2771
2771
|
tableCellFormatMethod({ row: a }, l) {
|
|
2772
2772
|
var e;
|
|
2773
|
-
const [
|
|
2773
|
+
const [o, h] = l;
|
|
2774
2774
|
let r;
|
|
2775
|
-
return (e = a[
|
|
2776
|
-
const t =
|
|
2775
|
+
return (e = a[o]) == null || e.split(",").forEach((i) => {
|
|
2776
|
+
const t = h.find((v) => v.value === i);
|
|
2777
2777
|
r = r ? `${r},${t == null ? void 0 : t.label}` : t == null ? void 0 : t.label;
|
|
2778
2778
|
}), r;
|
|
2779
2779
|
}
|
|
@@ -10401,29 +10401,29 @@ const http = new SuHttp(), lunarCalendar = {
|
|
|
10401
10401
|
height: 24
|
|
10402
10402
|
}, withInstall = (a) => {
|
|
10403
10403
|
const l = a;
|
|
10404
|
-
return l.install = (
|
|
10405
|
-
|
|
10404
|
+
return l.install = (o) => {
|
|
10405
|
+
o.component(l.name || l.__name, a);
|
|
10406
10406
|
}, a;
|
|
10407
10407
|
};
|
|
10408
10408
|
function sleep(a = 64) {
|
|
10409
10409
|
return new Promise((l) => {
|
|
10410
|
-
const
|
|
10411
|
-
window.clearTimeout(
|
|
10410
|
+
const o = setTimeout(() => {
|
|
10411
|
+
window.clearTimeout(o), l(a);
|
|
10412
10412
|
}, a);
|
|
10413
10413
|
});
|
|
10414
10414
|
}
|
|
10415
10415
|
const delay = (a) => new Promise((l) => setTimeout(l, a)), useDark = () => ({ isDark: ref(document.documentElement.classList.contains("dark")) }), useDebounce = (a, l) => {
|
|
10416
|
-
let
|
|
10416
|
+
let o;
|
|
10417
10417
|
return () => {
|
|
10418
|
-
|
|
10418
|
+
o && clearTimeout(o), o = setTimeout(a, l);
|
|
10419
10419
|
};
|
|
10420
10420
|
};
|
|
10421
10421
|
function isUrl(a) {
|
|
10422
10422
|
return /(((^http(s)?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/.test(a);
|
|
10423
10423
|
}
|
|
10424
10424
|
const getDictName = (a, l) => {
|
|
10425
|
-
var
|
|
10426
|
-
return !a || !l ? null : (r = (
|
|
10425
|
+
var h, r;
|
|
10426
|
+
return !a || !l ? null : (r = (h = storageLocal.getItem("kLov")[a]) == null ? void 0 : h.children.find((e) => l === e.dictCode)) == null ? void 0 : r.dictName;
|
|
10427
10427
|
};
|
|
10428
10428
|
export {
|
|
10429
10429
|
G as NProgress,
|