@airpower/web 1.9.3 → 1.9.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/README.md +6 -4
- package/dist/config/WebConfig.d.ts +12 -0
- package/dist/main.js +67 -93
- package/dist/web.css +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
<a href="https://www.npmjs.com/@airpower/web">
|
|
7
|
+
<img src="https://img.shields.io/npm/v/@airpower/web"/>
|
|
8
|
+
</a>
|
|
9
|
+
<a href="https://www.npmjs.com/@airpower/web">
|
|
10
|
+
<img src="https://img.shields.io/npm/dm/@airpower/web"/>
|
|
11
|
+
</a>
|
|
10
12
|
</p>
|
|
11
13
|
|
|
12
14
|
<p align="center">
|
|
@@ -73,6 +73,9 @@ export declare class WebConfig {
|
|
|
73
73
|
alphaDescription: string;
|
|
74
74
|
hueLabel: string;
|
|
75
75
|
hueDescription: string;
|
|
76
|
+
svLabel: string;
|
|
77
|
+
svDescription: string;
|
|
78
|
+
predefineDescription: string;
|
|
76
79
|
};
|
|
77
80
|
datepicker: {
|
|
78
81
|
now: string;
|
|
@@ -205,6 +208,15 @@ export declare class WebConfig {
|
|
|
205
208
|
resetFilter: string;
|
|
206
209
|
clearFilter: string;
|
|
207
210
|
sumText: string;
|
|
211
|
+
selectAllLabel: string;
|
|
212
|
+
selectRowLabel: string;
|
|
213
|
+
expandRowLabel: string;
|
|
214
|
+
collapseRowLabel: string;
|
|
215
|
+
sortLabel: string;
|
|
216
|
+
filterLabel: string;
|
|
217
|
+
};
|
|
218
|
+
tag: {
|
|
219
|
+
close: string;
|
|
208
220
|
};
|
|
209
221
|
tour: {
|
|
210
222
|
next: string;
|
package/dist/main.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { defineComponent, createElementBlock, openBlock, createElementVNode, computed, createBlock, unref, mergeProps, toHandlers, withCtx, renderSlot, resolveComponent, normalizeClass, createVNode, createTextVNode, toDisplayString, ref, withModifiers, onMounted, watch, resolveDirective, Transition, normalizeStyle, withDirectives, createCommentVNode, nextTick, inject, shallowRef, shallowReactive, reactive, h, provide, getCurrentInstance, watchEffect, Fragment, renderList, vShow, useSlots, createSlots, createApp, onUpdated, mergeModels, useModel, withKeys } from "vue";
|
|
2
2
|
import ElementPlus, { ElLink, ElButton, ElMessage, ElMessageBox, ElIcon, ElEmpty, ElFormItem, ElSubMenu, ElMenuItem, ElMenu, ElImage, ElUpload, ElPagination, ElPopover, ElRadioGroup, ElRadioButton, ElInput, ElProgress, ElTabPane, ElTabs, ElCheckTag, ElSelect, ElOption, ElTable, ElTableColumn, ElTree } from "element-plus";
|
|
3
3
|
import axios from "axios";
|
|
4
|
-
/*! Element Plus Icons Vue v2.3.2 */
|
|
5
4
|
var _sfc_main6 = /* @__PURE__ */ defineComponent({
|
|
6
5
|
name: "ArrowDown",
|
|
7
6
|
__name: "arrow-down",
|
|
@@ -402,7 +401,10 @@ var zhCn = {
|
|
|
402
401
|
alphaLabel: "选择透明度的值",
|
|
403
402
|
alphaDescription: "透明度 {alpha}, 当前颜色 {color}",
|
|
404
403
|
hueLabel: "选择色相值",
|
|
405
|
-
hueDescription: "色相 {hue}, 当前颜色 {color}"
|
|
404
|
+
hueDescription: "色相 {hue}, 当前颜色 {color}",
|
|
405
|
+
svLabel: "选择饱和度与明度的值",
|
|
406
|
+
svDescription: "饱和度 {saturation}, 明度 {brightness}, 当前颜色 {color}",
|
|
407
|
+
predefineDescription: "选择 {value} 作为颜色"
|
|
406
408
|
},
|
|
407
409
|
datepicker: {
|
|
408
410
|
now: "此刻",
|
|
@@ -534,7 +536,16 @@ var zhCn = {
|
|
|
534
536
|
confirmFilter: "筛选",
|
|
535
537
|
resetFilter: "重置",
|
|
536
538
|
clearFilter: "全部",
|
|
537
|
-
sumText: "合计"
|
|
539
|
+
sumText: "合计",
|
|
540
|
+
selectAllLabel: "选择所有行",
|
|
541
|
+
selectRowLabel: "选择当前行",
|
|
542
|
+
expandRowLabel: "展开当前行",
|
|
543
|
+
collapseRowLabel: "收起当前行",
|
|
544
|
+
sortLabel: "按 {column} 排序",
|
|
545
|
+
filterLabel: "按 {column} 过滤"
|
|
546
|
+
},
|
|
547
|
+
tag: {
|
|
548
|
+
close: "关闭此标签"
|
|
538
549
|
},
|
|
539
550
|
tour: {
|
|
540
551
|
next: "下一步",
|
|
@@ -1363,18 +1374,12 @@ function getAugmentedNamespace(n) {
|
|
|
1363
1374
|
return a;
|
|
1364
1375
|
}
|
|
1365
1376
|
var clipboard$1 = { exports: {} };
|
|
1366
|
-
/*!
|
|
1367
|
-
* clipboard.js v2.0.11
|
|
1368
|
-
* https://clipboardjs.com/
|
|
1369
|
-
*
|
|
1370
|
-
* Licensed MIT © Zeno Rocha
|
|
1371
|
-
*/
|
|
1372
1377
|
var clipboard = clipboard$1.exports;
|
|
1373
1378
|
var hasRequiredClipboard;
|
|
1374
1379
|
function requireClipboard() {
|
|
1375
1380
|
if (hasRequiredClipboard) return clipboard$1.exports;
|
|
1376
1381
|
hasRequiredClipboard = 1;
|
|
1377
|
-
(function(module, exports) {
|
|
1382
|
+
(function(module, exports$1) {
|
|
1378
1383
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
1379
1384
|
module.exports = factory();
|
|
1380
1385
|
})(clipboard, function() {
|
|
@@ -1796,18 +1801,18 @@ function requireClipboard() {
|
|
|
1796
1801
|
/***/
|
|
1797
1802
|
879: (
|
|
1798
1803
|
/***/
|
|
1799
|
-
function(__unused_webpack_module,
|
|
1800
|
-
|
|
1804
|
+
function(__unused_webpack_module, exports$12) {
|
|
1805
|
+
exports$12.node = function(value) {
|
|
1801
1806
|
return value !== void 0 && value instanceof HTMLElement && value.nodeType === 1;
|
|
1802
1807
|
};
|
|
1803
|
-
|
|
1808
|
+
exports$12.nodeList = function(value) {
|
|
1804
1809
|
var type = Object.prototype.toString.call(value);
|
|
1805
|
-
return value !== void 0 && (type === "[object NodeList]" || type === "[object HTMLCollection]") && "length" in value && (value.length === 0 ||
|
|
1810
|
+
return value !== void 0 && (type === "[object NodeList]" || type === "[object HTMLCollection]") && "length" in value && (value.length === 0 || exports$12.node(value[0]));
|
|
1806
1811
|
};
|
|
1807
|
-
|
|
1812
|
+
exports$12.string = function(value) {
|
|
1808
1813
|
return typeof value === "string" || value instanceof String;
|
|
1809
1814
|
};
|
|
1810
|
-
|
|
1815
|
+
exports$12.fn = function(value) {
|
|
1811
1816
|
var type = Object.prototype.toString.call(value);
|
|
1812
1817
|
return type === "[object Function]";
|
|
1813
1818
|
};
|
|
@@ -1990,10 +1995,10 @@ function requireClipboard() {
|
|
|
1990
1995
|
};
|
|
1991
1996
|
}();
|
|
1992
1997
|
!function() {
|
|
1993
|
-
__webpack_require__.d = function(
|
|
1998
|
+
__webpack_require__.d = function(exports$12, definition) {
|
|
1994
1999
|
for (var key in definition) {
|
|
1995
|
-
if (__webpack_require__.o(definition, key) && !__webpack_require__.o(
|
|
1996
|
-
Object.defineProperty(
|
|
2000
|
+
if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports$12, key)) {
|
|
2001
|
+
Object.defineProperty(exports$12, key, { enumerable: true, get: definition[key] });
|
|
1997
2002
|
}
|
|
1998
2003
|
}
|
|
1999
2004
|
};
|
|
@@ -2435,7 +2440,7 @@ var hasRequiredCore;
|
|
|
2435
2440
|
function requireCore() {
|
|
2436
2441
|
if (hasRequiredCore) return core$1.exports;
|
|
2437
2442
|
hasRequiredCore = 1;
|
|
2438
|
-
(function(module, exports) {
|
|
2443
|
+
(function(module, exports$1) {
|
|
2439
2444
|
(function(root, factory) {
|
|
2440
2445
|
{
|
|
2441
2446
|
module.exports = factory();
|
|
@@ -3043,7 +3048,7 @@ var hasRequiredX64Core;
|
|
|
3043
3048
|
function requireX64Core() {
|
|
3044
3049
|
if (hasRequiredX64Core) return x64Core$1.exports;
|
|
3045
3050
|
hasRequiredX64Core = 1;
|
|
3046
|
-
(function(module, exports) {
|
|
3051
|
+
(function(module, exports$1) {
|
|
3047
3052
|
(function(root, factory) {
|
|
3048
3053
|
{
|
|
3049
3054
|
module.exports = factory(requireCore());
|
|
@@ -3300,7 +3305,7 @@ var hasRequiredLibTypedarrays;
|
|
|
3300
3305
|
function requireLibTypedarrays() {
|
|
3301
3306
|
if (hasRequiredLibTypedarrays) return libTypedarrays$1.exports;
|
|
3302
3307
|
hasRequiredLibTypedarrays = 1;
|
|
3303
|
-
(function(module, exports) {
|
|
3308
|
+
(function(module, exports$1) {
|
|
3304
3309
|
(function(root, factory) {
|
|
3305
3310
|
{
|
|
3306
3311
|
module.exports = factory(requireCore());
|
|
@@ -3345,7 +3350,7 @@ var hasRequiredEncUtf16;
|
|
|
3345
3350
|
function requireEncUtf16() {
|
|
3346
3351
|
if (hasRequiredEncUtf16) return encUtf16$1.exports;
|
|
3347
3352
|
hasRequiredEncUtf16 = 1;
|
|
3348
|
-
(function(module, exports) {
|
|
3353
|
+
(function(module, exports$1) {
|
|
3349
3354
|
(function(root, factory) {
|
|
3350
3355
|
{
|
|
3351
3356
|
module.exports = factory(requireCore());
|
|
@@ -3463,7 +3468,7 @@ var hasRequiredEncBase64;
|
|
|
3463
3468
|
function requireEncBase64() {
|
|
3464
3469
|
if (hasRequiredEncBase64) return encBase64$1.exports;
|
|
3465
3470
|
hasRequiredEncBase64 = 1;
|
|
3466
|
-
(function(module, exports) {
|
|
3471
|
+
(function(module, exports$1) {
|
|
3467
3472
|
(function(root, factory) {
|
|
3468
3473
|
{
|
|
3469
3474
|
module.exports = factory(requireCore());
|
|
@@ -3571,7 +3576,7 @@ var hasRequiredEncBase64url;
|
|
|
3571
3576
|
function requireEncBase64url() {
|
|
3572
3577
|
if (hasRequiredEncBase64url) return encBase64url$1.exports;
|
|
3573
3578
|
hasRequiredEncBase64url = 1;
|
|
3574
|
-
(function(module, exports) {
|
|
3579
|
+
(function(module, exports$1) {
|
|
3575
3580
|
(function(root, factory) {
|
|
3576
3581
|
{
|
|
3577
3582
|
module.exports = factory(requireCore());
|
|
@@ -3690,7 +3695,7 @@ var hasRequiredMd5;
|
|
|
3690
3695
|
function requireMd5() {
|
|
3691
3696
|
if (hasRequiredMd5) return md5$1.exports;
|
|
3692
3697
|
hasRequiredMd5 = 1;
|
|
3693
|
-
(function(module, exports) {
|
|
3698
|
+
(function(module, exports$1) {
|
|
3694
3699
|
(function(root, factory) {
|
|
3695
3700
|
{
|
|
3696
3701
|
module.exports = factory(requireCore());
|
|
@@ -3869,7 +3874,7 @@ var hasRequiredSha1;
|
|
|
3869
3874
|
function requireSha1() {
|
|
3870
3875
|
if (hasRequiredSha1) return sha1$1.exports;
|
|
3871
3876
|
hasRequiredSha1 = 1;
|
|
3872
|
-
(function(module, exports) {
|
|
3877
|
+
(function(module, exports$1) {
|
|
3873
3878
|
(function(root, factory) {
|
|
3874
3879
|
{
|
|
3875
3880
|
module.exports = factory(requireCore());
|
|
@@ -3960,7 +3965,7 @@ var hasRequiredSha256;
|
|
|
3960
3965
|
function requireSha256() {
|
|
3961
3966
|
if (hasRequiredSha256) return sha256$1.exports;
|
|
3962
3967
|
hasRequiredSha256 = 1;
|
|
3963
|
-
(function(module, exports) {
|
|
3968
|
+
(function(module, exports$1) {
|
|
3964
3969
|
(function(root, factory) {
|
|
3965
3970
|
{
|
|
3966
3971
|
module.exports = factory(requireCore());
|
|
@@ -4081,7 +4086,7 @@ var hasRequiredSha224;
|
|
|
4081
4086
|
function requireSha224() {
|
|
4082
4087
|
if (hasRequiredSha224) return sha224$1.exports;
|
|
4083
4088
|
hasRequiredSha224 = 1;
|
|
4084
|
-
(function(module, exports) {
|
|
4089
|
+
(function(module, exports$1) {
|
|
4085
4090
|
(function(root, factory, undef) {
|
|
4086
4091
|
{
|
|
4087
4092
|
module.exports = factory(requireCore(), requireSha256());
|
|
@@ -4126,7 +4131,7 @@ var hasRequiredSha512;
|
|
|
4126
4131
|
function requireSha512() {
|
|
4127
4132
|
if (hasRequiredSha512) return sha512$1.exports;
|
|
4128
4133
|
hasRequiredSha512 = 1;
|
|
4129
|
-
(function(module, exports) {
|
|
4134
|
+
(function(module, exports$1) {
|
|
4130
4135
|
(function(root, factory, undef) {
|
|
4131
4136
|
{
|
|
4132
4137
|
module.exports = factory(requireCore(), requireX64Core());
|
|
@@ -4408,7 +4413,7 @@ var hasRequiredSha384;
|
|
|
4408
4413
|
function requireSha384() {
|
|
4409
4414
|
if (hasRequiredSha384) return sha384$1.exports;
|
|
4410
4415
|
hasRequiredSha384 = 1;
|
|
4411
|
-
(function(module, exports) {
|
|
4416
|
+
(function(module, exports$1) {
|
|
4412
4417
|
(function(root, factory, undef) {
|
|
4413
4418
|
{
|
|
4414
4419
|
module.exports = factory(requireCore(), requireX64Core(), requireSha512());
|
|
@@ -4454,7 +4459,7 @@ var hasRequiredSha3;
|
|
|
4454
4459
|
function requireSha3() {
|
|
4455
4460
|
if (hasRequiredSha3) return sha3$1.exports;
|
|
4456
4461
|
hasRequiredSha3 = 1;
|
|
4457
|
-
(function(module, exports) {
|
|
4462
|
+
(function(module, exports$1) {
|
|
4458
4463
|
(function(root, factory, undef) {
|
|
4459
4464
|
{
|
|
4460
4465
|
module.exports = factory(requireCore(), requireX64Core());
|
|
@@ -4656,22 +4661,12 @@ var hasRequiredRipemd160;
|
|
|
4656
4661
|
function requireRipemd160() {
|
|
4657
4662
|
if (hasRequiredRipemd160) return ripemd160$1.exports;
|
|
4658
4663
|
hasRequiredRipemd160 = 1;
|
|
4659
|
-
(function(module, exports) {
|
|
4664
|
+
(function(module, exports$1) {
|
|
4660
4665
|
(function(root, factory) {
|
|
4661
4666
|
{
|
|
4662
4667
|
module.exports = factory(requireCore());
|
|
4663
4668
|
}
|
|
4664
4669
|
})(ripemd160, function(CryptoJS2) {
|
|
4665
|
-
/** @preserve
|
|
4666
|
-
(c) 2012 by Cédric Mesnil. All rights reserved.
|
|
4667
|
-
|
|
4668
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
4669
|
-
|
|
4670
|
-
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
4671
|
-
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
4672
|
-
|
|
4673
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4674
|
-
*/
|
|
4675
4670
|
(function(Math2) {
|
|
4676
4671
|
var C = CryptoJS2;
|
|
4677
4672
|
var C_lib = C.lib;
|
|
@@ -5137,7 +5132,7 @@ var hasRequiredHmac;
|
|
|
5137
5132
|
function requireHmac() {
|
|
5138
5133
|
if (hasRequiredHmac) return hmac$1.exports;
|
|
5139
5134
|
hasRequiredHmac = 1;
|
|
5140
|
-
(function(module, exports) {
|
|
5135
|
+
(function(module, exports$1) {
|
|
5141
5136
|
(function(root, factory) {
|
|
5142
5137
|
{
|
|
5143
5138
|
module.exports = factory(requireCore());
|
|
@@ -5244,7 +5239,7 @@ var hasRequiredPbkdf2;
|
|
|
5244
5239
|
function requirePbkdf2() {
|
|
5245
5240
|
if (hasRequiredPbkdf2) return pbkdf2$1.exports;
|
|
5246
5241
|
hasRequiredPbkdf2 = 1;
|
|
5247
|
-
(function(module, exports) {
|
|
5242
|
+
(function(module, exports$1) {
|
|
5248
5243
|
(function(root, factory, undef) {
|
|
5249
5244
|
{
|
|
5250
5245
|
module.exports = factory(requireCore(), requireSha256(), requireHmac());
|
|
@@ -5342,7 +5337,7 @@ var hasRequiredEvpkdf;
|
|
|
5342
5337
|
function requireEvpkdf() {
|
|
5343
5338
|
if (hasRequiredEvpkdf) return evpkdf$1.exports;
|
|
5344
5339
|
hasRequiredEvpkdf = 1;
|
|
5345
|
-
(function(module, exports) {
|
|
5340
|
+
(function(module, exports$1) {
|
|
5346
5341
|
(function(root, factory, undef) {
|
|
5347
5342
|
{
|
|
5348
5343
|
module.exports = factory(requireCore(), requireSha1(), requireHmac());
|
|
@@ -5433,7 +5428,7 @@ var hasRequiredCipherCore;
|
|
|
5433
5428
|
function requireCipherCore() {
|
|
5434
5429
|
if (hasRequiredCipherCore) return cipherCore$1.exports;
|
|
5435
5430
|
hasRequiredCipherCore = 1;
|
|
5436
|
-
(function(module, exports) {
|
|
5431
|
+
(function(module, exports$1) {
|
|
5437
5432
|
(function(root, factory, undef) {
|
|
5438
5433
|
{
|
|
5439
5434
|
module.exports = factory(requireCore(), requireEvpkdf());
|
|
@@ -6077,7 +6072,7 @@ var hasRequiredModeCfb;
|
|
|
6077
6072
|
function requireModeCfb() {
|
|
6078
6073
|
if (hasRequiredModeCfb) return modeCfb$1.exports;
|
|
6079
6074
|
hasRequiredModeCfb = 1;
|
|
6080
|
-
(function(module, exports) {
|
|
6075
|
+
(function(module, exports$1) {
|
|
6081
6076
|
(function(root, factory, undef) {
|
|
6082
6077
|
{
|
|
6083
6078
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6129,7 +6124,7 @@ var hasRequiredModeCtr;
|
|
|
6129
6124
|
function requireModeCtr() {
|
|
6130
6125
|
if (hasRequiredModeCtr) return modeCtr$1.exports;
|
|
6131
6126
|
hasRequiredModeCtr = 1;
|
|
6132
|
-
(function(module, exports) {
|
|
6127
|
+
(function(module, exports$1) {
|
|
6133
6128
|
(function(root, factory, undef) {
|
|
6134
6129
|
{
|
|
6135
6130
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6169,17 +6164,12 @@ var hasRequiredModeCtrGladman;
|
|
|
6169
6164
|
function requireModeCtrGladman() {
|
|
6170
6165
|
if (hasRequiredModeCtrGladman) return modeCtrGladman$1.exports;
|
|
6171
6166
|
hasRequiredModeCtrGladman = 1;
|
|
6172
|
-
(function(module, exports) {
|
|
6167
|
+
(function(module, exports$1) {
|
|
6173
6168
|
(function(root, factory, undef) {
|
|
6174
6169
|
{
|
|
6175
6170
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
6176
6171
|
}
|
|
6177
6172
|
})(modeCtrGladman, function(CryptoJS2) {
|
|
6178
|
-
/** @preserve
|
|
6179
|
-
* Counter block mode compatible with Dr Brian Gladman fileenc.c
|
|
6180
|
-
* derived from CryptoJS.mode.CTR
|
|
6181
|
-
* Jan Hruby jhruby.web@gmail.com
|
|
6182
|
-
*/
|
|
6183
6173
|
CryptoJS2.mode.CTRGladman = function() {
|
|
6184
6174
|
var CTRGladman = CryptoJS2.lib.BlockCipherMode.extend();
|
|
6185
6175
|
function incWord(word) {
|
|
@@ -6249,7 +6239,7 @@ var hasRequiredModeOfb;
|
|
|
6249
6239
|
function requireModeOfb() {
|
|
6250
6240
|
if (hasRequiredModeOfb) return modeOfb$1.exports;
|
|
6251
6241
|
hasRequiredModeOfb = 1;
|
|
6252
|
-
(function(module, exports) {
|
|
6242
|
+
(function(module, exports$1) {
|
|
6253
6243
|
(function(root, factory, undef) {
|
|
6254
6244
|
{
|
|
6255
6245
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6287,7 +6277,7 @@ var hasRequiredModeEcb;
|
|
|
6287
6277
|
function requireModeEcb() {
|
|
6288
6278
|
if (hasRequiredModeEcb) return modeEcb$1.exports;
|
|
6289
6279
|
hasRequiredModeEcb = 1;
|
|
6290
|
-
(function(module, exports) {
|
|
6280
|
+
(function(module, exports$1) {
|
|
6291
6281
|
(function(root, factory, undef) {
|
|
6292
6282
|
{
|
|
6293
6283
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6318,7 +6308,7 @@ var hasRequiredPadAnsix923;
|
|
|
6318
6308
|
function requirePadAnsix923() {
|
|
6319
6309
|
if (hasRequiredPadAnsix923) return padAnsix923$1.exports;
|
|
6320
6310
|
hasRequiredPadAnsix923 = 1;
|
|
6321
|
-
(function(module, exports) {
|
|
6311
|
+
(function(module, exports$1) {
|
|
6322
6312
|
(function(root, factory, undef) {
|
|
6323
6313
|
{
|
|
6324
6314
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6350,7 +6340,7 @@ var hasRequiredPadIso10126;
|
|
|
6350
6340
|
function requirePadIso10126() {
|
|
6351
6341
|
if (hasRequiredPadIso10126) return padIso10126$1.exports;
|
|
6352
6342
|
hasRequiredPadIso10126 = 1;
|
|
6353
|
-
(function(module, exports) {
|
|
6343
|
+
(function(module, exports$1) {
|
|
6354
6344
|
(function(root, factory, undef) {
|
|
6355
6345
|
{
|
|
6356
6346
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6378,7 +6368,7 @@ var hasRequiredPadIso97971;
|
|
|
6378
6368
|
function requirePadIso97971() {
|
|
6379
6369
|
if (hasRequiredPadIso97971) return padIso97971$1.exports;
|
|
6380
6370
|
hasRequiredPadIso97971 = 1;
|
|
6381
|
-
(function(module, exports) {
|
|
6371
|
+
(function(module, exports$1) {
|
|
6382
6372
|
(function(root, factory, undef) {
|
|
6383
6373
|
{
|
|
6384
6374
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6405,7 +6395,7 @@ var hasRequiredPadZeropadding;
|
|
|
6405
6395
|
function requirePadZeropadding() {
|
|
6406
6396
|
if (hasRequiredPadZeropadding) return padZeropadding$1.exports;
|
|
6407
6397
|
hasRequiredPadZeropadding = 1;
|
|
6408
|
-
(function(module, exports) {
|
|
6398
|
+
(function(module, exports$1) {
|
|
6409
6399
|
(function(root, factory, undef) {
|
|
6410
6400
|
{
|
|
6411
6401
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6439,7 +6429,7 @@ var hasRequiredPadNopadding;
|
|
|
6439
6429
|
function requirePadNopadding() {
|
|
6440
6430
|
if (hasRequiredPadNopadding) return padNopadding$1.exports;
|
|
6441
6431
|
hasRequiredPadNopadding = 1;
|
|
6442
|
-
(function(module, exports) {
|
|
6432
|
+
(function(module, exports$1) {
|
|
6443
6433
|
(function(root, factory, undef) {
|
|
6444
6434
|
{
|
|
6445
6435
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6462,7 +6452,7 @@ var hasRequiredFormatHex;
|
|
|
6462
6452
|
function requireFormatHex() {
|
|
6463
6453
|
if (hasRequiredFormatHex) return formatHex$1.exports;
|
|
6464
6454
|
hasRequiredFormatHex = 1;
|
|
6465
|
-
(function(module, exports) {
|
|
6455
|
+
(function(module, exports$1) {
|
|
6466
6456
|
(function(root, factory, undef) {
|
|
6467
6457
|
{
|
|
6468
6458
|
module.exports = factory(requireCore(), requireCipherCore());
|
|
@@ -6522,7 +6512,7 @@ var hasRequiredAes;
|
|
|
6522
6512
|
function requireAes() {
|
|
6523
6513
|
if (hasRequiredAes) return aes$1.exports;
|
|
6524
6514
|
hasRequiredAes = 1;
|
|
6525
|
-
(function(module, exports) {
|
|
6515
|
+
(function(module, exports$1) {
|
|
6526
6516
|
(function(root, factory, undef) {
|
|
6527
6517
|
{
|
|
6528
6518
|
module.exports = factory(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
@@ -6676,7 +6666,7 @@ var hasRequiredTripledes;
|
|
|
6676
6666
|
function requireTripledes() {
|
|
6677
6667
|
if (hasRequiredTripledes) return tripledes$1.exports;
|
|
6678
6668
|
hasRequiredTripledes = 1;
|
|
6679
|
-
(function(module, exports) {
|
|
6669
|
+
(function(module, exports$1) {
|
|
6680
6670
|
(function(root, factory, undef) {
|
|
6681
6671
|
{
|
|
6682
6672
|
module.exports = factory(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
@@ -7457,7 +7447,7 @@ var hasRequiredRc4;
|
|
|
7457
7447
|
function requireRc4() {
|
|
7458
7448
|
if (hasRequiredRc4) return rc4$1.exports;
|
|
7459
7449
|
hasRequiredRc4 = 1;
|
|
7460
|
-
(function(module, exports) {
|
|
7450
|
+
(function(module, exports$1) {
|
|
7461
7451
|
(function(root, factory, undef) {
|
|
7462
7452
|
{
|
|
7463
7453
|
module.exports = factory(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
@@ -7540,7 +7530,7 @@ var hasRequiredRabbit;
|
|
|
7540
7530
|
function requireRabbit() {
|
|
7541
7531
|
if (hasRequiredRabbit) return rabbit$1.exports;
|
|
7542
7532
|
hasRequiredRabbit = 1;
|
|
7543
|
-
(function(module, exports) {
|
|
7533
|
+
(function(module, exports$1) {
|
|
7544
7534
|
(function(root, factory, undef) {
|
|
7545
7535
|
{
|
|
7546
7536
|
module.exports = factory(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
@@ -7669,7 +7659,7 @@ var hasRequiredRabbitLegacy;
|
|
|
7669
7659
|
function requireRabbitLegacy() {
|
|
7670
7660
|
if (hasRequiredRabbitLegacy) return rabbitLegacy$1.exports;
|
|
7671
7661
|
hasRequiredRabbitLegacy = 1;
|
|
7672
|
-
(function(module, exports) {
|
|
7662
|
+
(function(module, exports$1) {
|
|
7673
7663
|
(function(root, factory, undef) {
|
|
7674
7664
|
{
|
|
7675
7665
|
module.exports = factory(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
@@ -7795,7 +7785,7 @@ var hasRequiredBlowfish;
|
|
|
7795
7785
|
function requireBlowfish() {
|
|
7796
7786
|
if (hasRequiredBlowfish) return blowfish$1.exports;
|
|
7797
7787
|
hasRequiredBlowfish = 1;
|
|
7798
|
-
(function(module, exports) {
|
|
7788
|
+
(function(module, exports$1) {
|
|
7799
7789
|
(function(root, factory, undef) {
|
|
7800
7790
|
{
|
|
7801
7791
|
module.exports = factory(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
|
@@ -8983,7 +8973,7 @@ var hasRequiredCryptoJs;
|
|
|
8983
8973
|
function requireCryptoJs() {
|
|
8984
8974
|
if (hasRequiredCryptoJs) return cryptoJs$1.exports;
|
|
8985
8975
|
hasRequiredCryptoJs = 1;
|
|
8986
|
-
(function(module, exports) {
|
|
8976
|
+
(function(module, exports$1) {
|
|
8987
8977
|
(function(root, factory, undef) {
|
|
8988
8978
|
{
|
|
8989
8979
|
module.exports = factory(requireCore(), requireX64Core(), requireLibTypedarrays(), requireEncUtf16(), requireEncBase64(), requireEncBase64url(), requireMd5(), requireSha1(), requireSha256(), requireSha224(), requireSha512(), requireSha384(), requireSha3(), requireRipemd160(), requireHmac(), requirePbkdf2(), requireEvpkdf(), requireCipherCore(), requireModeCfb(), requireModeCtr(), requireModeCtrGladman(), requireModeOfb(), requireModeEcb(), requirePadAnsix923(), requirePadIso10126(), requirePadIso97971(), requirePadZeropadding(), requirePadNopadding(), requireFormatHex(), requireAes(), requireTripledes(), requireRc4(), requireRabbit(), requireRabbitLegacy(), requireBlowfish());
|
|
@@ -10513,7 +10503,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
10513
10503
|
if (!formData) {
|
|
10514
10504
|
throw new Error("请手动为AFormField绑定v-model或使用 useEditor 创建表单对象(推荐)!!!");
|
|
10515
10505
|
}
|
|
10516
|
-
const EntityClass = inject("entityClass")
|
|
10506
|
+
const EntityClass = props.entity || inject("entityClass");
|
|
10517
10507
|
if (!EntityClass) {
|
|
10518
10508
|
throw new Error("请手动传入到AFormField的entity属性或使用 useEditor 创建表单对象(推荐)!!!");
|
|
10519
10509
|
}
|
|
@@ -10703,11 +10693,6 @@ function setupDevtoolsPlugin(pluginDescriptor, setupFn) {
|
|
|
10703
10693
|
}
|
|
10704
10694
|
}
|
|
10705
10695
|
}
|
|
10706
|
-
/*!
|
|
10707
|
-
* vue-router v4.6.3
|
|
10708
|
-
* (c) 2025 Eduardo San Martin Morote
|
|
10709
|
-
* @license MIT
|
|
10710
|
-
*/
|
|
10711
10696
|
const isBrowser = typeof document !== "undefined";
|
|
10712
10697
|
function isRouteComponent(component) {
|
|
10713
10698
|
return typeof component === "object" || "displayName" in component || "props" in component || "__vccOpts" in component;
|
|
@@ -10819,11 +10804,11 @@ function isSameRouteRecord(a, b) {
|
|
|
10819
10804
|
}
|
|
10820
10805
|
function isSameRouteLocationParams(a, b) {
|
|
10821
10806
|
if (Object.keys(a).length !== Object.keys(b).length) return false;
|
|
10822
|
-
for (
|
|
10807
|
+
for (var key in a) if (!isSameRouteLocationParamsValue(a[key], b[key])) return false;
|
|
10823
10808
|
return true;
|
|
10824
10809
|
}
|
|
10825
10810
|
function isSameRouteLocationParamsValue(a, b) {
|
|
10826
|
-
return isArray(a) ? isEquivalentArray(a, b) : isArray(b) ? isEquivalentArray(b, a) : a === b;
|
|
10811
|
+
return isArray(a) ? isEquivalentArray(a, b) : isArray(b) ? isEquivalentArray(b, a) : a?.valueOf() === b?.valueOf();
|
|
10827
10812
|
}
|
|
10828
10813
|
function isEquivalentArray(a, b) {
|
|
10829
10814
|
return isArray(b) ? a.length === b.length && a.every((value, i) => value === b[i]) : a.length === 1 && a[0] === b;
|
|
@@ -11502,11 +11487,6 @@ function omit(obj, keys) {
|
|
|
11502
11487
|
for (const key in obj) if (!keys.includes(key)) ret[key] = obj[key];
|
|
11503
11488
|
return ret;
|
|
11504
11489
|
}
|
|
11505
|
-
/*!
|
|
11506
|
-
* vue-router v4.6.3
|
|
11507
|
-
* (c) 2025 Eduardo San Martin Morote
|
|
11508
|
-
* @license MIT
|
|
11509
|
-
*/
|
|
11510
11490
|
let createBaseLocation = () => location.protocol + "//" + location.host;
|
|
11511
11491
|
function createCurrentLocation(base, location$1) {
|
|
11512
11492
|
const { pathname, search, hash } = location$1;
|
|
@@ -12288,7 +12268,7 @@ function includesParams(outer, inner) {
|
|
|
12288
12268
|
const outerValue = outer[key];
|
|
12289
12269
|
if (typeof innerValue === "string") {
|
|
12290
12270
|
if (innerValue !== outerValue) return false;
|
|
12291
|
-
} else if (!isArray(outerValue) || outerValue.length !== innerValue.length || innerValue.some((value, i) => value !== outerValue[i])) return false;
|
|
12271
|
+
} else if (!isArray(outerValue) || outerValue.length !== innerValue.length || innerValue.some((value, i) => value.valueOf() !== outerValue[i].valueOf())) return false;
|
|
12292
12272
|
}
|
|
12293
12273
|
return true;
|
|
12294
12274
|
}
|
|
@@ -15194,7 +15174,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
15194
15174
|
}, {
|
|
15195
15175
|
default: withCtx(() => [
|
|
15196
15176
|
createElementVNode("div", _hoisted_1$6, [
|
|
15197
|
-
createVNode(unref(
|
|
15177
|
+
createVNode(unref(Qrcode), {
|
|
15198
15178
|
content,
|
|
15199
15179
|
size: 160
|
|
15200
15180
|
}),
|
|
@@ -15285,12 +15265,6 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
15285
15265
|
}
|
|
15286
15266
|
});
|
|
15287
15267
|
const APhone = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-d871cd10"]]);
|
|
15288
|
-
/*!
|
|
15289
|
-
* qrcode.vue v3.6.0
|
|
15290
|
-
* A Vue.js component to generate QRCode. Both support Vue 2 and Vue 3
|
|
15291
|
-
* © 2017-PRESENT @scopewu(https://github.com/scopewu)
|
|
15292
|
-
* MIT License.
|
|
15293
|
-
*/
|
|
15294
15268
|
var __assign = function() {
|
|
15295
15269
|
__assign = Object.assign || function __assign2(t) {
|
|
15296
15270
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -16329,7 +16303,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
16329
16303
|
};
|
|
16330
16304
|
}
|
|
16331
16305
|
});
|
|
16332
|
-
const
|
|
16306
|
+
const Qrcode = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-024409f5"]]);
|
|
16333
16307
|
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
16334
16308
|
__name: "Select",
|
|
16335
16309
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -19637,7 +19611,7 @@ export {
|
|
|
19637
19611
|
APanel,
|
|
19638
19612
|
APayload,
|
|
19639
19613
|
APhone,
|
|
19640
|
-
AQrcode,
|
|
19614
|
+
Qrcode as AQrcode,
|
|
19641
19615
|
_sfc_main$9 as ASelect,
|
|
19642
19616
|
_sfc_main$8 as ASelector,
|
|
19643
19617
|
_sfc_main$7 as ATab,
|