antanklayout_vue2 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1063,6 +1063,13 @@ module.exports.f = function getOwnPropertyNames(it) {
1063
1063
  };
1064
1064
 
1065
1065
 
1066
+ /***/ }),
1067
+
1068
+ /***/ "0597":
1069
+ /***/ (function(module, exports, __webpack_require__) {
1070
+
1071
+ // extracted by mini-css-extract-plugin
1072
+
1066
1073
  /***/ }),
1067
1074
 
1068
1075
  /***/ "06cf":
@@ -7911,10 +7918,13 @@ var defaultFormat = formats['default'];
7911
7918
  var defaults = {
7912
7919
  addQueryPrefix: false,
7913
7920
  allowDots: false,
7921
+ allowEmptyArrays: false,
7922
+ arrayFormat: 'indices',
7914
7923
  charset: 'utf-8',
7915
7924
  charsetSentinel: false,
7916
7925
  delimiter: '&',
7917
7926
  encode: true,
7927
+ encodeDotInKeys: false,
7918
7928
  encoder: utils.encode,
7919
7929
  encodeValuesOnly: false,
7920
7930
  format: defaultFormat,
@@ -7943,8 +7953,10 @@ var stringify = function stringify(
7943
7953
  prefix,
7944
7954
  generateArrayPrefix,
7945
7955
  commaRoundTrip,
7956
+ allowEmptyArrays,
7946
7957
  strictNullHandling,
7947
7958
  skipNulls,
7959
+ encodeDotInKeys,
7948
7960
  encoder,
7949
7961
  filter,
7950
7962
  sort,
@@ -8026,7 +8038,13 @@ var stringify = function stringify(
8026
8038
  objKeys = sort ? keys.sort(sort) : keys;
8027
8039
  }
8028
8040
 
8029
- var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;
8041
+ var encodedPrefix = encodeDotInKeys ? prefix.replace(/\./g, '%2E') : prefix;
8042
+
8043
+ var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? encodedPrefix + '[]' : encodedPrefix;
8044
+
8045
+ if (allowEmptyArrays && isArray(obj) && obj.length === 0) {
8046
+ return adjustedPrefix + '[]';
8047
+ }
8030
8048
 
8031
8049
  for (var j = 0; j < objKeys.length; ++j) {
8032
8050
  var key = objKeys[j];
@@ -8036,9 +8054,10 @@ var stringify = function stringify(
8036
8054
  continue;
8037
8055
  }
8038
8056
 
8057
+ var encodedKey = allowDots && encodeDotInKeys ? key.replace(/\./g, '%2E') : key;
8039
8058
  var keyPrefix = isArray(obj)
8040
- ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix
8041
- : adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');
8059
+ ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix
8060
+ : adjustedPrefix + (allowDots ? '.' + encodedKey : '[' + encodedKey + ']');
8042
8061
 
8043
8062
  sideChannel.set(object, step);
8044
8063
  var valueSideChannel = getSideChannel();
@@ -8048,8 +8067,10 @@ var stringify = function stringify(
8048
8067
  keyPrefix,
8049
8068
  generateArrayPrefix,
8050
8069
  commaRoundTrip,
8070
+ allowEmptyArrays,
8051
8071
  strictNullHandling,
8052
8072
  skipNulls,
8073
+ encodeDotInKeys,
8053
8074
  generateArrayPrefix === 'comma' && encodeValuesOnly && isArray(obj) ? null : encoder,
8054
8075
  filter,
8055
8076
  sort,
@@ -8071,6 +8092,14 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8071
8092
  return defaults;
8072
8093
  }
8073
8094
 
8095
+ if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
8096
+ throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
8097
+ }
8098
+
8099
+ if (typeof opts.encodeDotInKeys !== 'undefined' && typeof opts.encodeDotInKeys !== 'boolean') {
8100
+ throw new TypeError('`encodeDotInKeys` option can only be `true` or `false`, when provided');
8101
+ }
8102
+
8074
8103
  if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {
8075
8104
  throw new TypeError('Encoder has to be a function.');
8076
8105
  }
@@ -8094,13 +8123,32 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8094
8123
  filter = opts.filter;
8095
8124
  }
8096
8125
 
8126
+ var arrayFormat;
8127
+ if (opts.arrayFormat in arrayPrefixGenerators) {
8128
+ arrayFormat = opts.arrayFormat;
8129
+ } else if ('indices' in opts) {
8130
+ arrayFormat = opts.indices ? 'indices' : 'repeat';
8131
+ } else {
8132
+ arrayFormat = defaults.arrayFormat;
8133
+ }
8134
+
8135
+ if ('commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8136
+ throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8137
+ }
8138
+
8139
+ var allowDots = typeof opts.allowDots === 'undefined' ? opts.encodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
8140
+
8097
8141
  return {
8098
8142
  addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix,
8099
- allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
8143
+ allowDots: allowDots,
8144
+ allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
8145
+ arrayFormat: arrayFormat,
8100
8146
  charset: charset,
8101
8147
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
8148
+ commaRoundTrip: opts.commaRoundTrip,
8102
8149
  delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter,
8103
8150
  encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode,
8151
+ encodeDotInKeys: typeof opts.encodeDotInKeys === 'boolean' ? opts.encodeDotInKeys : defaults.encodeDotInKeys,
8104
8152
  encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,
8105
8153
  encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,
8106
8154
  filter: filter,
@@ -8134,20 +8182,8 @@ module.exports = function (object, opts) {
8134
8182
  return '';
8135
8183
  }
8136
8184
 
8137
- var arrayFormat;
8138
- if (opts && opts.arrayFormat in arrayPrefixGenerators) {
8139
- arrayFormat = opts.arrayFormat;
8140
- } else if (opts && 'indices' in opts) {
8141
- arrayFormat = opts.indices ? 'indices' : 'repeat';
8142
- } else {
8143
- arrayFormat = 'indices';
8144
- }
8145
-
8146
- var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
8147
- if (opts && 'commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8148
- throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8149
- }
8150
- var commaRoundTrip = generateArrayPrefix === 'comma' && opts && opts.commaRoundTrip;
8185
+ var generateArrayPrefix = arrayPrefixGenerators[options.arrayFormat];
8186
+ var commaRoundTrip = generateArrayPrefix === 'comma' && options.commaRoundTrip;
8151
8187
 
8152
8188
  if (!objKeys) {
8153
8189
  objKeys = Object.keys(obj);
@@ -8169,8 +8205,10 @@ module.exports = function (object, opts) {
8169
8205
  key,
8170
8206
  generateArrayPrefix,
8171
8207
  commaRoundTrip,
8208
+ options.allowEmptyArrays,
8172
8209
  options.strictNullHandling,
8173
8210
  options.skipNulls,
8211
+ options.encodeDotInKeys,
8174
8212
  options.encode ? options.encoder : null,
8175
8213
  options.filter,
8176
8214
  options.sort,
@@ -8344,7 +8382,7 @@ exports.binding = function (name) {
8344
8382
  var path;
8345
8383
  exports.cwd = function () { return cwd };
8346
8384
  exports.chdir = function (dir) {
8347
- if (!path) path = __webpack_require__("df7c");
8385
+ if (!path) path = __webpack_require__("b69a");
8348
8386
  cwd = path.resolve(dir, cwd);
8349
8387
  };
8350
8388
  })();
@@ -9698,9 +9736,9 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9698
9736
  var length, result, step, iterator, next, value;
9699
9737
  // if the target is not iterable or it's an array with the default iterator - use a simple case
9700
9738
  if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) {
9739
+ result = IS_CONSTRUCTOR ? new this() : [];
9701
9740
  iterator = getIterator(O, iteratorMethod);
9702
9741
  next = iterator.next;
9703
- result = IS_CONSTRUCTOR ? new this() : [];
9704
9742
  for (;!(step = call(next, iterator)).done; index++) {
9705
9743
  value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
9706
9744
  createProperty(result, index, value);
@@ -14879,7 +14917,7 @@ function _regeneratorRuntime() {
14879
14917
  function makeInvokeMethod(e, r, n) {
14880
14918
  var o = h;
14881
14919
  return function (i, a) {
14882
- if (o === f) throw new Error("Generator is already running");
14920
+ if (o === f) throw Error("Generator is already running");
14883
14921
  if (o === s) {
14884
14922
  if ("throw" === i) throw a;
14885
14923
  return {
@@ -15021,7 +15059,7 @@ function _regeneratorRuntime() {
15021
15059
  } else if (c) {
15022
15060
  if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
15023
15061
  } else {
15024
- if (!u) throw new Error("try statement without catch or finally");
15062
+ if (!u) throw Error("try statement without catch or finally");
15025
15063
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
15026
15064
  }
15027
15065
  }
@@ -15061,7 +15099,7 @@ function _regeneratorRuntime() {
15061
15099
  return o;
15062
15100
  }
15063
15101
  }
15064
- throw new Error("illegal catch attempt");
15102
+ throw Error("illegal catch attempt");
15065
15103
  },
15066
15104
  delegateYield: function delegateYield(e, r, n) {
15067
15105
  return this.delegate = {
@@ -18932,13 +18970,6 @@ __webpack_require__("5352");
18932
18970
  /* unused harmony reexport * */
18933
18971
 
18934
18972
 
18935
- /***/ }),
18936
-
18937
- /***/ "98df":
18938
- /***/ (function(module, exports, __webpack_require__) {
18939
-
18940
- // extracted by mini-css-extract-plugin
18941
-
18942
18973
  /***/ }),
18943
18974
 
18944
18975
  /***/ "99af":
@@ -19114,15 +19145,18 @@ var isArray = Array.isArray;
19114
19145
 
19115
19146
  var defaults = {
19116
19147
  allowDots: false,
19148
+ allowEmptyArrays: false,
19117
19149
  allowPrototypes: false,
19118
19150
  allowSparse: false,
19119
19151
  arrayLimit: 20,
19120
19152
  charset: 'utf-8',
19121
19153
  charsetSentinel: false,
19122
19154
  comma: false,
19155
+ decodeDotInKeys: true,
19123
19156
  decoder: utils.decode,
19124
19157
  delimiter: '&',
19125
19158
  depth: 5,
19159
+ duplicates: 'combine',
19126
19160
  ignoreQueryPrefix: false,
19127
19161
  interpretNumericEntities: false,
19128
19162
  parameterLimit: 1000,
@@ -19210,9 +19244,10 @@ var parseValues = function parseQueryStringValues(str, options) {
19210
19244
  val = isArray(val) ? [val] : val;
19211
19245
  }
19212
19246
 
19213
- if (has.call(obj, key)) {
19247
+ var existing = has.call(obj, key);
19248
+ if (existing && options.duplicates === 'combine') {
19214
19249
  obj[key] = utils.combine(obj[key], val);
19215
- } else {
19250
+ } else if (!existing || options.duplicates === 'last') {
19216
19251
  obj[key] = val;
19217
19252
  }
19218
19253
  }
@@ -19228,24 +19263,25 @@ var parseObject = function (chain, val, options, valuesParsed) {
19228
19263
  var root = chain[i];
19229
19264
 
19230
19265
  if (root === '[]' && options.parseArrays) {
19231
- obj = [].concat(leaf);
19266
+ obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
19232
19267
  } else {
19233
19268
  obj = options.plainObjects ? Object.create(null) : {};
19234
19269
  var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
19235
- var index = parseInt(cleanRoot, 10);
19236
- if (!options.parseArrays && cleanRoot === '') {
19270
+ var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, '.') : cleanRoot;
19271
+ var index = parseInt(decodedRoot, 10);
19272
+ if (!options.parseArrays && decodedRoot === '') {
19237
19273
  obj = { 0: leaf };
19238
19274
  } else if (
19239
19275
  !isNaN(index)
19240
- && root !== cleanRoot
19241
- && String(index) === cleanRoot
19276
+ && root !== decodedRoot
19277
+ && String(index) === decodedRoot
19242
19278
  && index >= 0
19243
19279
  && (options.parseArrays && index <= options.arrayLimit)
19244
19280
  ) {
19245
19281
  obj = [];
19246
19282
  obj[index] = leaf;
19247
- } else if (cleanRoot !== '__proto__') {
19248
- obj[cleanRoot] = leaf;
19283
+ } else if (decodedRoot !== '__proto__') {
19284
+ obj[decodedRoot] = leaf;
19249
19285
  }
19250
19286
  }
19251
19287
 
@@ -19314,7 +19350,15 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19314
19350
  return defaults;
19315
19351
  }
19316
19352
 
19317
- if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') {
19353
+ if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
19354
+ throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
19355
+ }
19356
+
19357
+ if (typeof opts.decodeDotInKeys !== 'undefined' && typeof opts.decodeDotInKeys !== 'boolean') {
19358
+ throw new TypeError('`decodeDotInKeys` option can only be `true` or `false`, when provided');
19359
+ }
19360
+
19361
+ if (opts.decoder !== null && typeof opts.decoder !== 'undefined' && typeof opts.decoder !== 'function') {
19318
19362
  throw new TypeError('Decoder has to be a function.');
19319
19363
  }
19320
19364
 
@@ -19323,18 +19367,29 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19323
19367
  }
19324
19368
  var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;
19325
19369
 
19370
+ var duplicates = typeof opts.duplicates === 'undefined' ? defaults.duplicates : opts.duplicates;
19371
+
19372
+ if (duplicates !== 'combine' && duplicates !== 'first' && duplicates !== 'last') {
19373
+ throw new TypeError('The duplicates option must be either combine, first, or last');
19374
+ }
19375
+
19376
+ var allowDots = typeof opts.allowDots === 'undefined' ? opts.decodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
19377
+
19326
19378
  return {
19327
- allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
19379
+ allowDots: allowDots,
19380
+ allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
19328
19381
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
19329
19382
  allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
19330
19383
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
19331
19384
  charset: charset,
19332
19385
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
19333
19386
  comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,
19387
+ decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
19334
19388
  decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,
19335
19389
  delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
19336
19390
  // eslint-disable-next-line no-implicit-coercion, no-extra-parens
19337
19391
  depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,
19392
+ duplicates: duplicates,
19338
19393
  ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
19339
19394
  interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
19340
19395
  parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,
@@ -19730,7 +19785,7 @@ module.exports = function (argument) {
19730
19785
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19731
19786
 
19732
19787
  "use strict";
19733
- /* harmony import */ var _Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b85c");
19788
+ /* harmony import */ var _Users_klsm_2024_codes_klsm_library_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b85c");
19734
19789
  /* harmony import */ var _api_layoutApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("755b");
19735
19790
 
19736
19791
  //
@@ -19861,7 +19916,7 @@ module.exports = function (argument) {
19861
19916
  var _this2 = this;
19862
19917
  this.documentList = [];
19863
19918
  this.loadMenu(function () {
19864
- var _iterator = Object(_Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(_this2.menust),
19919
+ var _iterator = Object(_Users_klsm_2024_codes_klsm_library_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(_this2.menust),
19865
19920
  _step;
19866
19921
  try {
19867
19922
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -21729,6 +21784,316 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
21729
21784
  });
21730
21785
 
21731
21786
 
21787
+ /***/ }),
21788
+
21789
+ /***/ "b69a":
21790
+ /***/ (function(module, exports, __webpack_require__) {
21791
+
21792
+ /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
21793
+ // backported and transplited with Babel, with backwards-compat fixes
21794
+
21795
+ // Copyright Joyent, Inc. and other Node contributors.
21796
+ //
21797
+ // Permission is hereby granted, free of charge, to any person obtaining a
21798
+ // copy of this software and associated documentation files (the
21799
+ // "Software"), to deal in the Software without restriction, including
21800
+ // without limitation the rights to use, copy, modify, merge, publish,
21801
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
21802
+ // persons to whom the Software is furnished to do so, subject to the
21803
+ // following conditions:
21804
+ //
21805
+ // The above copyright notice and this permission notice shall be included
21806
+ // in all copies or substantial portions of the Software.
21807
+ //
21808
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21809
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21810
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
21811
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21812
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21813
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21814
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
21815
+
21816
+ // resolves . and .. elements in a path array with directory names there
21817
+ // must be no slashes, empty elements, or device names (c:\) in the array
21818
+ // (so also no leading and trailing slashes - it does not distinguish
21819
+ // relative and absolute paths)
21820
+ function normalizeArray(parts, allowAboveRoot) {
21821
+ // if the path tries to go above the root, `up` ends up > 0
21822
+ var up = 0;
21823
+ for (var i = parts.length - 1; i >= 0; i--) {
21824
+ var last = parts[i];
21825
+ if (last === '.') {
21826
+ parts.splice(i, 1);
21827
+ } else if (last === '..') {
21828
+ parts.splice(i, 1);
21829
+ up++;
21830
+ } else if (up) {
21831
+ parts.splice(i, 1);
21832
+ up--;
21833
+ }
21834
+ }
21835
+
21836
+ // if the path is allowed to go above the root, restore leading ..s
21837
+ if (allowAboveRoot) {
21838
+ for (; up--; up) {
21839
+ parts.unshift('..');
21840
+ }
21841
+ }
21842
+
21843
+ return parts;
21844
+ }
21845
+
21846
+ // path.resolve([from ...], to)
21847
+ // posix version
21848
+ exports.resolve = function() {
21849
+ var resolvedPath = '',
21850
+ resolvedAbsolute = false;
21851
+
21852
+ for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
21853
+ var path = (i >= 0) ? arguments[i] : process.cwd();
21854
+
21855
+ // Skip empty and invalid entries
21856
+ if (typeof path !== 'string') {
21857
+ throw new TypeError('Arguments to path.resolve must be strings');
21858
+ } else if (!path) {
21859
+ continue;
21860
+ }
21861
+
21862
+ resolvedPath = path + '/' + resolvedPath;
21863
+ resolvedAbsolute = path.charAt(0) === '/';
21864
+ }
21865
+
21866
+ // At this point the path should be resolved to a full absolute path, but
21867
+ // handle relative paths to be safe (might happen when process.cwd() fails)
21868
+
21869
+ // Normalize the path
21870
+ resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
21871
+ return !!p;
21872
+ }), !resolvedAbsolute).join('/');
21873
+
21874
+ return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
21875
+ };
21876
+
21877
+ // path.normalize(path)
21878
+ // posix version
21879
+ exports.normalize = function(path) {
21880
+ var isAbsolute = exports.isAbsolute(path),
21881
+ trailingSlash = substr(path, -1) === '/';
21882
+
21883
+ // Normalize the path
21884
+ path = normalizeArray(filter(path.split('/'), function(p) {
21885
+ return !!p;
21886
+ }), !isAbsolute).join('/');
21887
+
21888
+ if (!path && !isAbsolute) {
21889
+ path = '.';
21890
+ }
21891
+ if (path && trailingSlash) {
21892
+ path += '/';
21893
+ }
21894
+
21895
+ return (isAbsolute ? '/' : '') + path;
21896
+ };
21897
+
21898
+ // posix version
21899
+ exports.isAbsolute = function(path) {
21900
+ return path.charAt(0) === '/';
21901
+ };
21902
+
21903
+ // posix version
21904
+ exports.join = function() {
21905
+ var paths = Array.prototype.slice.call(arguments, 0);
21906
+ return exports.normalize(filter(paths, function(p, index) {
21907
+ if (typeof p !== 'string') {
21908
+ throw new TypeError('Arguments to path.join must be strings');
21909
+ }
21910
+ return p;
21911
+ }).join('/'));
21912
+ };
21913
+
21914
+
21915
+ // path.relative(from, to)
21916
+ // posix version
21917
+ exports.relative = function(from, to) {
21918
+ from = exports.resolve(from).substr(1);
21919
+ to = exports.resolve(to).substr(1);
21920
+
21921
+ function trim(arr) {
21922
+ var start = 0;
21923
+ for (; start < arr.length; start++) {
21924
+ if (arr[start] !== '') break;
21925
+ }
21926
+
21927
+ var end = arr.length - 1;
21928
+ for (; end >= 0; end--) {
21929
+ if (arr[end] !== '') break;
21930
+ }
21931
+
21932
+ if (start > end) return [];
21933
+ return arr.slice(start, end - start + 1);
21934
+ }
21935
+
21936
+ var fromParts = trim(from.split('/'));
21937
+ var toParts = trim(to.split('/'));
21938
+
21939
+ var length = Math.min(fromParts.length, toParts.length);
21940
+ var samePartsLength = length;
21941
+ for (var i = 0; i < length; i++) {
21942
+ if (fromParts[i] !== toParts[i]) {
21943
+ samePartsLength = i;
21944
+ break;
21945
+ }
21946
+ }
21947
+
21948
+ var outputParts = [];
21949
+ for (var i = samePartsLength; i < fromParts.length; i++) {
21950
+ outputParts.push('..');
21951
+ }
21952
+
21953
+ outputParts = outputParts.concat(toParts.slice(samePartsLength));
21954
+
21955
+ return outputParts.join('/');
21956
+ };
21957
+
21958
+ exports.sep = '/';
21959
+ exports.delimiter = ':';
21960
+
21961
+ exports.dirname = function (path) {
21962
+ if (typeof path !== 'string') path = path + '';
21963
+ if (path.length === 0) return '.';
21964
+ var code = path.charCodeAt(0);
21965
+ var hasRoot = code === 47 /*/*/;
21966
+ var end = -1;
21967
+ var matchedSlash = true;
21968
+ for (var i = path.length - 1; i >= 1; --i) {
21969
+ code = path.charCodeAt(i);
21970
+ if (code === 47 /*/*/) {
21971
+ if (!matchedSlash) {
21972
+ end = i;
21973
+ break;
21974
+ }
21975
+ } else {
21976
+ // We saw the first non-path separator
21977
+ matchedSlash = false;
21978
+ }
21979
+ }
21980
+
21981
+ if (end === -1) return hasRoot ? '/' : '.';
21982
+ if (hasRoot && end === 1) {
21983
+ // return '//';
21984
+ // Backwards-compat fix:
21985
+ return '/';
21986
+ }
21987
+ return path.slice(0, end);
21988
+ };
21989
+
21990
+ function basename(path) {
21991
+ if (typeof path !== 'string') path = path + '';
21992
+
21993
+ var start = 0;
21994
+ var end = -1;
21995
+ var matchedSlash = true;
21996
+ var i;
21997
+
21998
+ for (i = path.length - 1; i >= 0; --i) {
21999
+ if (path.charCodeAt(i) === 47 /*/*/) {
22000
+ // If we reached a path separator that was not part of a set of path
22001
+ // separators at the end of the string, stop now
22002
+ if (!matchedSlash) {
22003
+ start = i + 1;
22004
+ break;
22005
+ }
22006
+ } else if (end === -1) {
22007
+ // We saw the first non-path separator, mark this as the end of our
22008
+ // path component
22009
+ matchedSlash = false;
22010
+ end = i + 1;
22011
+ }
22012
+ }
22013
+
22014
+ if (end === -1) return '';
22015
+ return path.slice(start, end);
22016
+ }
22017
+
22018
+ // Uses a mixed approach for backwards-compatibility, as ext behavior changed
22019
+ // in new Node.js versions, so only basename() above is backported here
22020
+ exports.basename = function (path, ext) {
22021
+ var f = basename(path);
22022
+ if (ext && f.substr(-1 * ext.length) === ext) {
22023
+ f = f.substr(0, f.length - ext.length);
22024
+ }
22025
+ return f;
22026
+ };
22027
+
22028
+ exports.extname = function (path) {
22029
+ if (typeof path !== 'string') path = path + '';
22030
+ var startDot = -1;
22031
+ var startPart = 0;
22032
+ var end = -1;
22033
+ var matchedSlash = true;
22034
+ // Track the state of characters (if any) we see before our first dot and
22035
+ // after any path separator we find
22036
+ var preDotState = 0;
22037
+ for (var i = path.length - 1; i >= 0; --i) {
22038
+ var code = path.charCodeAt(i);
22039
+ if (code === 47 /*/*/) {
22040
+ // If we reached a path separator that was not part of a set of path
22041
+ // separators at the end of the string, stop now
22042
+ if (!matchedSlash) {
22043
+ startPart = i + 1;
22044
+ break;
22045
+ }
22046
+ continue;
22047
+ }
22048
+ if (end === -1) {
22049
+ // We saw the first non-path separator, mark this as the end of our
22050
+ // extension
22051
+ matchedSlash = false;
22052
+ end = i + 1;
22053
+ }
22054
+ if (code === 46 /*.*/) {
22055
+ // If this is our first dot, mark it as the start of our extension
22056
+ if (startDot === -1)
22057
+ startDot = i;
22058
+ else if (preDotState !== 1)
22059
+ preDotState = 1;
22060
+ } else if (startDot !== -1) {
22061
+ // We saw a non-dot and non-path separator before our dot, so we should
22062
+ // have a good chance at having a non-empty extension
22063
+ preDotState = -1;
22064
+ }
22065
+ }
22066
+
22067
+ if (startDot === -1 || end === -1 ||
22068
+ // We saw a non-dot character immediately before the dot
22069
+ preDotState === 0 ||
22070
+ // The (right-most) trimmed path component is exactly '..'
22071
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
22072
+ return '';
22073
+ }
22074
+ return path.slice(startDot, end);
22075
+ };
22076
+
22077
+ function filter (xs, f) {
22078
+ if (xs.filter) return xs.filter(f);
22079
+ var res = [];
22080
+ for (var i = 0; i < xs.length; i++) {
22081
+ if (f(xs[i], i, xs)) res.push(xs[i]);
22082
+ }
22083
+ return res;
22084
+ }
22085
+
22086
+ // String.prototype.substr - negative index don't work in IE8
22087
+ var substr = 'ab'.substr(-1) === 'b'
22088
+ ? function (str, start, len) { return str.substr(start, len) }
22089
+ : function (str, start, len) {
22090
+ if (start < 0) start = str.length + start;
22091
+ return str.substr(start, len);
22092
+ }
22093
+ ;
22094
+
22095
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
22096
+
21732
22097
  /***/ }),
21733
22098
 
21734
22099
  /***/ "b727":
@@ -28637,10 +29002,10 @@ var SHARED = '__core-js_shared__';
28637
29002
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
28638
29003
 
28639
29004
  (store.versions || (store.versions = [])).push({
28640
- version: '3.36.0',
29005
+ version: '3.36.1',
28641
29006
  mode: IS_PURE ? 'pure' : 'global',
28642
29007
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
28643
- license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
29008
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
28644
29009
  source: 'https://github.com/zloirock/core-js'
28645
29010
  });
28646
29011
 
@@ -29654,9 +30019,7 @@ var gOPD = __webpack_require__("2aa9");
29654
30019
  var $TypeError = __webpack_require__("0d25");
29655
30020
  var $floor = GetIntrinsic('%Math.floor%');
29656
30021
 
29657
- /** @typedef {(...args: unknown[]) => unknown} Func */
29658
-
29659
- /** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
30022
+ /** @type {import('.')} */
29660
30023
  module.exports = function setFunctionLength(fn, length) {
29661
30024
  if (typeof fn !== 'function') {
29662
30025
  throw new $TypeError('`fn` is not a function');
@@ -30192,7 +30555,8 @@ defineWellKnownSymbol('iterator');
30192
30555
 
30193
30556
  /* eslint-disable no-proto -- safe */
30194
30557
  var uncurryThisAccessor = __webpack_require__("7282");
30195
- var anObject = __webpack_require__("825a");
30558
+ var isObject = __webpack_require__("861d");
30559
+ var requireObjectCoercible = __webpack_require__("1d80");
30196
30560
  var aPossiblePrototype = __webpack_require__("3bbe");
30197
30561
 
30198
30562
  // `Object.setPrototypeOf` method
@@ -30209,8 +30573,9 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
30209
30573
  CORRECT_SETTER = test instanceof Array;
30210
30574
  } catch (error) { /* empty */ }
30211
30575
  return function setPrototypeOf(O, proto) {
30212
- anObject(O);
30576
+ requireObjectCoercible(O);
30213
30577
  aPossiblePrototype(proto);
30578
+ if (!isObject(O)) return O;
30214
30579
  if (CORRECT_SETTER) setter(O, proto);
30215
30580
  else O.__proto__ = proto;
30216
30581
  return O;
@@ -31506,6 +31871,17 @@ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31506
31871
  };
31507
31872
 
31508
31873
 
31874
+ /***/ }),
31875
+
31876
+ /***/ "ddac":
31877
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
31878
+
31879
+ "use strict";
31880
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Antanklayout_vue_vue_type_style_index_0_id_3319f786_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("0597");
31881
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Antanklayout_vue_vue_type_style_index_0_id_3319f786_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Antanklayout_vue_vue_type_style_index_0_id_3319f786_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
31882
+ /* unused harmony reexport * */
31883
+
31884
+
31509
31885
  /***/ }),
31510
31886
 
31511
31887
  /***/ "ddb0":
@@ -31576,316 +31952,6 @@ module.exports = Object.keys || function keys(O) {
31576
31952
  };
31577
31953
 
31578
31954
 
31579
- /***/ }),
31580
-
31581
- /***/ "df7c":
31582
- /***/ (function(module, exports, __webpack_require__) {
31583
-
31584
- /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
31585
- // backported and transplited with Babel, with backwards-compat fixes
31586
-
31587
- // Copyright Joyent, Inc. and other Node contributors.
31588
- //
31589
- // Permission is hereby granted, free of charge, to any person obtaining a
31590
- // copy of this software and associated documentation files (the
31591
- // "Software"), to deal in the Software without restriction, including
31592
- // without limitation the rights to use, copy, modify, merge, publish,
31593
- // distribute, sublicense, and/or sell copies of the Software, and to permit
31594
- // persons to whom the Software is furnished to do so, subject to the
31595
- // following conditions:
31596
- //
31597
- // The above copyright notice and this permission notice shall be included
31598
- // in all copies or substantial portions of the Software.
31599
- //
31600
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
31601
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31602
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
31603
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31604
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
31605
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31606
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
31607
-
31608
- // resolves . and .. elements in a path array with directory names there
31609
- // must be no slashes, empty elements, or device names (c:\) in the array
31610
- // (so also no leading and trailing slashes - it does not distinguish
31611
- // relative and absolute paths)
31612
- function normalizeArray(parts, allowAboveRoot) {
31613
- // if the path tries to go above the root, `up` ends up > 0
31614
- var up = 0;
31615
- for (var i = parts.length - 1; i >= 0; i--) {
31616
- var last = parts[i];
31617
- if (last === '.') {
31618
- parts.splice(i, 1);
31619
- } else if (last === '..') {
31620
- parts.splice(i, 1);
31621
- up++;
31622
- } else if (up) {
31623
- parts.splice(i, 1);
31624
- up--;
31625
- }
31626
- }
31627
-
31628
- // if the path is allowed to go above the root, restore leading ..s
31629
- if (allowAboveRoot) {
31630
- for (; up--; up) {
31631
- parts.unshift('..');
31632
- }
31633
- }
31634
-
31635
- return parts;
31636
- }
31637
-
31638
- // path.resolve([from ...], to)
31639
- // posix version
31640
- exports.resolve = function() {
31641
- var resolvedPath = '',
31642
- resolvedAbsolute = false;
31643
-
31644
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
31645
- var path = (i >= 0) ? arguments[i] : process.cwd();
31646
-
31647
- // Skip empty and invalid entries
31648
- if (typeof path !== 'string') {
31649
- throw new TypeError('Arguments to path.resolve must be strings');
31650
- } else if (!path) {
31651
- continue;
31652
- }
31653
-
31654
- resolvedPath = path + '/' + resolvedPath;
31655
- resolvedAbsolute = path.charAt(0) === '/';
31656
- }
31657
-
31658
- // At this point the path should be resolved to a full absolute path, but
31659
- // handle relative paths to be safe (might happen when process.cwd() fails)
31660
-
31661
- // Normalize the path
31662
- resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
31663
- return !!p;
31664
- }), !resolvedAbsolute).join('/');
31665
-
31666
- return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
31667
- };
31668
-
31669
- // path.normalize(path)
31670
- // posix version
31671
- exports.normalize = function(path) {
31672
- var isAbsolute = exports.isAbsolute(path),
31673
- trailingSlash = substr(path, -1) === '/';
31674
-
31675
- // Normalize the path
31676
- path = normalizeArray(filter(path.split('/'), function(p) {
31677
- return !!p;
31678
- }), !isAbsolute).join('/');
31679
-
31680
- if (!path && !isAbsolute) {
31681
- path = '.';
31682
- }
31683
- if (path && trailingSlash) {
31684
- path += '/';
31685
- }
31686
-
31687
- return (isAbsolute ? '/' : '') + path;
31688
- };
31689
-
31690
- // posix version
31691
- exports.isAbsolute = function(path) {
31692
- return path.charAt(0) === '/';
31693
- };
31694
-
31695
- // posix version
31696
- exports.join = function() {
31697
- var paths = Array.prototype.slice.call(arguments, 0);
31698
- return exports.normalize(filter(paths, function(p, index) {
31699
- if (typeof p !== 'string') {
31700
- throw new TypeError('Arguments to path.join must be strings');
31701
- }
31702
- return p;
31703
- }).join('/'));
31704
- };
31705
-
31706
-
31707
- // path.relative(from, to)
31708
- // posix version
31709
- exports.relative = function(from, to) {
31710
- from = exports.resolve(from).substr(1);
31711
- to = exports.resolve(to).substr(1);
31712
-
31713
- function trim(arr) {
31714
- var start = 0;
31715
- for (; start < arr.length; start++) {
31716
- if (arr[start] !== '') break;
31717
- }
31718
-
31719
- var end = arr.length - 1;
31720
- for (; end >= 0; end--) {
31721
- if (arr[end] !== '') break;
31722
- }
31723
-
31724
- if (start > end) return [];
31725
- return arr.slice(start, end - start + 1);
31726
- }
31727
-
31728
- var fromParts = trim(from.split('/'));
31729
- var toParts = trim(to.split('/'));
31730
-
31731
- var length = Math.min(fromParts.length, toParts.length);
31732
- var samePartsLength = length;
31733
- for (var i = 0; i < length; i++) {
31734
- if (fromParts[i] !== toParts[i]) {
31735
- samePartsLength = i;
31736
- break;
31737
- }
31738
- }
31739
-
31740
- var outputParts = [];
31741
- for (var i = samePartsLength; i < fromParts.length; i++) {
31742
- outputParts.push('..');
31743
- }
31744
-
31745
- outputParts = outputParts.concat(toParts.slice(samePartsLength));
31746
-
31747
- return outputParts.join('/');
31748
- };
31749
-
31750
- exports.sep = '/';
31751
- exports.delimiter = ':';
31752
-
31753
- exports.dirname = function (path) {
31754
- if (typeof path !== 'string') path = path + '';
31755
- if (path.length === 0) return '.';
31756
- var code = path.charCodeAt(0);
31757
- var hasRoot = code === 47 /*/*/;
31758
- var end = -1;
31759
- var matchedSlash = true;
31760
- for (var i = path.length - 1; i >= 1; --i) {
31761
- code = path.charCodeAt(i);
31762
- if (code === 47 /*/*/) {
31763
- if (!matchedSlash) {
31764
- end = i;
31765
- break;
31766
- }
31767
- } else {
31768
- // We saw the first non-path separator
31769
- matchedSlash = false;
31770
- }
31771
- }
31772
-
31773
- if (end === -1) return hasRoot ? '/' : '.';
31774
- if (hasRoot && end === 1) {
31775
- // return '//';
31776
- // Backwards-compat fix:
31777
- return '/';
31778
- }
31779
- return path.slice(0, end);
31780
- };
31781
-
31782
- function basename(path) {
31783
- if (typeof path !== 'string') path = path + '';
31784
-
31785
- var start = 0;
31786
- var end = -1;
31787
- var matchedSlash = true;
31788
- var i;
31789
-
31790
- for (i = path.length - 1; i >= 0; --i) {
31791
- if (path.charCodeAt(i) === 47 /*/*/) {
31792
- // If we reached a path separator that was not part of a set of path
31793
- // separators at the end of the string, stop now
31794
- if (!matchedSlash) {
31795
- start = i + 1;
31796
- break;
31797
- }
31798
- } else if (end === -1) {
31799
- // We saw the first non-path separator, mark this as the end of our
31800
- // path component
31801
- matchedSlash = false;
31802
- end = i + 1;
31803
- }
31804
- }
31805
-
31806
- if (end === -1) return '';
31807
- return path.slice(start, end);
31808
- }
31809
-
31810
- // Uses a mixed approach for backwards-compatibility, as ext behavior changed
31811
- // in new Node.js versions, so only basename() above is backported here
31812
- exports.basename = function (path, ext) {
31813
- var f = basename(path);
31814
- if (ext && f.substr(-1 * ext.length) === ext) {
31815
- f = f.substr(0, f.length - ext.length);
31816
- }
31817
- return f;
31818
- };
31819
-
31820
- exports.extname = function (path) {
31821
- if (typeof path !== 'string') path = path + '';
31822
- var startDot = -1;
31823
- var startPart = 0;
31824
- var end = -1;
31825
- var matchedSlash = true;
31826
- // Track the state of characters (if any) we see before our first dot and
31827
- // after any path separator we find
31828
- var preDotState = 0;
31829
- for (var i = path.length - 1; i >= 0; --i) {
31830
- var code = path.charCodeAt(i);
31831
- if (code === 47 /*/*/) {
31832
- // If we reached a path separator that was not part of a set of path
31833
- // separators at the end of the string, stop now
31834
- if (!matchedSlash) {
31835
- startPart = i + 1;
31836
- break;
31837
- }
31838
- continue;
31839
- }
31840
- if (end === -1) {
31841
- // We saw the first non-path separator, mark this as the end of our
31842
- // extension
31843
- matchedSlash = false;
31844
- end = i + 1;
31845
- }
31846
- if (code === 46 /*.*/) {
31847
- // If this is our first dot, mark it as the start of our extension
31848
- if (startDot === -1)
31849
- startDot = i;
31850
- else if (preDotState !== 1)
31851
- preDotState = 1;
31852
- } else if (startDot !== -1) {
31853
- // We saw a non-dot and non-path separator before our dot, so we should
31854
- // have a good chance at having a non-empty extension
31855
- preDotState = -1;
31856
- }
31857
- }
31858
-
31859
- if (startDot === -1 || end === -1 ||
31860
- // We saw a non-dot character immediately before the dot
31861
- preDotState === 0 ||
31862
- // The (right-most) trimmed path component is exactly '..'
31863
- preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
31864
- return '';
31865
- }
31866
- return path.slice(startDot, end);
31867
- };
31868
-
31869
- function filter (xs, f) {
31870
- if (xs.filter) return xs.filter(f);
31871
- var res = [];
31872
- for (var i = 0; i < xs.length; i++) {
31873
- if (f(xs[i], i, xs)) res.push(xs[i]);
31874
- }
31875
- return res;
31876
- }
31877
-
31878
- // String.prototype.substr - negative index don't work in IE8
31879
- var substr = 'ab'.substr(-1) === 'b'
31880
- ? function (str, start, len) { return str.substr(start, len) }
31881
- : function (str, start, len) {
31882
- if (start < 0) start = str.length + start;
31883
- return str.substr(start, len);
31884
- }
31885
- ;
31886
-
31887
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
31888
-
31889
31955
  /***/ }),
31890
31956
 
31891
31957
  /***/ "e01a":
@@ -32784,17 +32850,6 @@ if ($stringify) {
32784
32850
  }
32785
32851
 
32786
32852
 
32787
- /***/ }),
32788
-
32789
- /***/ "eb15":
32790
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
32791
-
32792
- "use strict";
32793
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Antanklayout_vue_vue_type_style_index_0_id_defa864c_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("98df");
32794
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Antanklayout_vue_vue_type_style_index_0_id_defa864c_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Antanklayout_vue_vue_type_style_index_0_id_defa864c_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
32795
- /* unused harmony reexport * */
32796
-
32797
-
32798
32853
  /***/ }),
32799
32854
 
32800
32855
  /***/ "ebe4":
@@ -33917,12 +33972,12 @@ var web_dom_collections_for_each = __webpack_require__("159b");
33917
33972
  // EXTERNAL MODULE: ./package/antanklayout/src/index.scss
33918
33973
  var antanklayout_src = __webpack_require__("f925");
33919
33974
 
33920
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/Antanklayout.vue?vue&type=template&id=defa864c&scoped=true
33921
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-container',{class:_vm.theme?_vm.theme.class:'',staticStyle:{"min-width":"1200px"}},[_c('el-header',[_c('Left',{attrs:{"engine":_vm.engine,"user":_vm.user,"isCollapse":_vm.isCollapse},on:{"changeCollapse":_vm.changeCollapse}}),_c('Right',{attrs:{"engine":_vm.engine,"user":_vm.user}})],1),_c('el-container',{staticClass:"layout",staticStyle:{"padding-top":"8px"}},[_c('el-aside',[_c('div',{staticClass:"aside-box",style:({ width: _vm.isCollapse ? '65px' : '210px',position:'relative'})},[_c('el-scrollbar',{style:({height:("calc(100vh - " + _vm.footerHeight + "px)")})},[(_vm.menulist)?_c('el-menu',{style:({ padding: _vm.isCollapse ? '0px' : '6px 0'}),attrs:{"router":false,"default-active":_vm.activeMenu,"collapse":_vm.isCollapse,"unique-opened":true,"collapse-transition":false}},[_c('SubMenu',{attrs:{"menulist":_vm.menulist,"engine":_vm.engine,"isCollapse":_vm.isCollapse,"currentPath":_vm.activeMenu},on:{"change":_vm.menuChange}})],1):_vm._e()],1),(_vm.menulist.length > 0)?_c('FooterMenu',{attrs:{"isCollapse":!_vm.isCollapse,"projectCodeId":_vm.projectCodeId,"path":_vm.iframeUrl,"projectLinkCodeMap":_vm.projectLinkCodeMap,"version":_vm.version},on:{"callback":_vm.footerCallback}}):_vm._e()],1)]),_c('el-container',{staticClass:"antanklayout"},[_c('Skeleton',{attrs:{"loading":_vm.loading}}),_vm._t("default")],2)],1)],1)}
33975
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/Antanklayout.vue?vue&type=template&id=3319f786&scoped=true
33976
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-container',{class:_vm.theme?_vm.theme.class:'',staticStyle:{"min-width":"1200px"}},[_c('el-header',[_c('Left',{attrs:{"engine":_vm.engine,"user":_vm.user,"isCollapse":_vm.isCollapse},on:{"changeCollapse":_vm.changeCollapse}}),_c('Right',{attrs:{"engine":_vm.engine,"user":_vm.user}})],1),_c('el-container',{staticClass:"layout",staticStyle:{"padding-top":"8px"}},[_c('el-aside',[_c('div',{staticClass:"aside-box",style:({ width: _vm.isCollapse ? '65px' : '210px',position:'relative'})},[_c('el-scrollbar',{style:({height:("calc(100vh - " + _vm.footerHeight + "px)")})},[(_vm.menulist)?_c('el-menu',{style:({ padding: _vm.isCollapse ? '0px' : '6px 0'}),attrs:{"router":false,"default-active":_vm.activeMenu,"collapse":_vm.isCollapse,"unique-opened":true,"collapse-transition":false}},[_c('SubMenu',{attrs:{"menulist":_vm.menulist,"engine":_vm.engine,"isCollapse":_vm.isCollapse,"currentPath":_vm.activeMenu},on:{"change":_vm.menuChange}})],1):_vm._e()],1),(_vm.menulist.length > 0)?_c('FooterMenu',{attrs:{"isCollapse":!_vm.isCollapse,"projectCodeId":_vm.projectCodeId,"path":_vm.iframeUrl,"projectLinkCodeMap":_vm.projectLinkCodeMap,"version":_vm.version},on:{"callback":_vm.footerCallback}}):_vm._e()],1)]),_c('el-container',{staticClass:"antanklayout"},[_vm._t("default")],2)],1)],1)}
33922
33977
  var staticRenderFns = []
33923
33978
 
33924
33979
 
33925
- // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=template&id=defa864c&scoped=true
33980
+ // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=template&id=3319f786&scoped=true
33926
33981
 
33927
33982
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
33928
33983
  var es_array_concat = __webpack_require__("99af");
@@ -33957,7 +34012,7 @@ var web_url_search_params_has = __webpack_require__("271a");
33957
34012
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.size.js
33958
34013
  var web_url_search_params_size = __webpack_require__("5494");
33959
34014
 
33960
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/footerMenu/src/index.vue?vue&type=template&id=6670b85f&scoped=true
34015
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/footerMenu/src/index.vue?vue&type=template&id=6670b85f&scoped=true
33961
34016
  var srcvue_type_template_id_6670b85f_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.isCollapse)?_c('div',{staticClass:"menu_footer"},[(
33962
34017
  _vm.projectCodeName &&
33963
34018
  _vm.projectCodeName.includes('选座票务系统') &&
@@ -34109,14 +34164,14 @@ var component = normalizeComponent(
34109
34164
  // CONCATENATED MODULE: ./package/antanklayout/src/components/footerMenu/index.js
34110
34165
 
34111
34166
  /* harmony default export */ var footerMenu = (footerMenu_src);
34112
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/header/left/src/index.vue?vue&type=template&id=37de82e7&scoped=true
34167
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/header/left/src/index.vue?vue&type=template&id=37de82e7&scoped=true
34113
34168
  var srcvue_type_template_id_37de82e7_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"tool-bar-lf"},[_c('CollapseIcon',{attrs:{"isCollapse":_vm.isCollapse},on:{"changeCollapse":_vm.changeCollapse}}),(_vm.user.companyExtend && _vm.user.companyExtend.logo)?_c('div',{staticClass:"header_logo",style:(("background-image:url(" + (_vm.user.companyExtend.logo) + ");cursor: " + (_vm.user.userTag == 'admin'?'pointer':'none') + ";")),on:{"click":function($event){return _vm.openParent('triggerCommplay')}}}):_c('div',{staticClass:"header_logo",style:(("cursor: " + (_vm.user.userTag == 'admin'?'pointer':'default') + ";")),on:{"click":function($event){return _vm.openParent('triggerCommplay')}}}),_c('div',{staticClass:"_combar"},[_vm._v(" | "),_c('span',{staticStyle:{"cursor":"pointer"},on:{"click":function($event){return _vm.openParent('home')}}},[_vm._v(_vm._s(_vm.user.companyExtend && _vm.user.companyExtend.name?_vm.user.companyExtend.name:"卡里司马"))]),_c('el-popover',{staticStyle:{"padding":"0px"},attrs:{"placement":"bottom-end","trigger":"hover","width":460},on:{"before-enter":_vm.getProgects}},[(_vm.projects.length > 0)?_c('Project',{attrs:{"projects":_vm.projects,"engine":_vm.engine}}):_vm._e(),_c('template',{slot:"reference"},[_c('span',{staticStyle:{"margin-left":"0","font-weight":"300","cursor":"pointer"}},[_vm._v(_vm._s(_vm.user.companyExtend && _vm.user.companyExtend.slogan?_vm.user.companyExtend.slogan:'欢迎使用业务集中式运营系统'))])])],2),_c('el-popover',{attrs:{"placement":"bottom","trigger":"hover","width":_vm.qrcodes.length > 0?_vm.qrcodes.length * 150:150}},[_c('div',{staticClass:"qrcode_header"},[_vm._v(" 小程序二维码 ")]),_c('div',{staticClass:"qrcode_body"},[(_vm.qrcodes.length > 0)?_vm._l((_vm.qrcodes),function(item){return _c('div',{staticClass:"qrcode_option"},[_vm._v(" "+_vm._s(item.remark)+" "),_c('div',{staticClass:"qrcode_border"},[_c('img',{attrs:{"src":item.imagePath}})])])}):_c('img',{staticStyle:{"width":"120px"},attrs:{"src":__webpack_require__("9272")}})],2),_c('template',{slot:"reference"},[_c('i',{staticClass:"el-icon-menu",staticStyle:{"font-size":"16px","cursor":"pointer"}})])],2)],1)],1)}
34114
34169
  var srcvue_type_template_id_37de82e7_scoped_true_staticRenderFns = []
34115
34170
 
34116
34171
 
34117
34172
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/src/index.vue?vue&type=template&id=37de82e7&scoped=true
34118
34173
 
34119
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/project/src/index.vue?vue&type=template&id=31358bde&scoped=true
34174
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/project/src/index.vue?vue&type=template&id=31358bde&scoped=true
34120
34175
  var srcvue_type_template_id_31358bde_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"fixed-box"},[_vm._l((_vm.projects),function(item,index){return [(
34121
34176
  item.sysProjectLinks &&
34122
34177
  item.sysProjectLinks.length > 0 &&
@@ -34143,12 +34198,6 @@ function _classCallCheck(instance, Constructor) {
34143
34198
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
34144
34199
  var esm_typeof = __webpack_require__("53ca");
34145
34200
 
34146
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
34147
- var es_symbol = __webpack_require__("a4d3");
34148
-
34149
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
34150
- var es_symbol_description = __webpack_require__("e01a");
34151
-
34152
34201
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.to-primitive.js
34153
34202
  var es_symbol_to_primitive = __webpack_require__("8172");
34154
34203
 
@@ -34164,9 +34213,6 @@ var es_number_constructor = __webpack_require__("a9e3");
34164
34213
 
34165
34214
 
34166
34215
 
34167
-
34168
-
34169
-
34170
34216
  function toPrimitive(t, r) {
34171
34217
  if ("object" != Object(esm_typeof["a" /* default */])(t) || !t) return t;
34172
34218
  var e = t[Symbol.toPrimitive];
@@ -34182,7 +34228,7 @@ function toPrimitive(t, r) {
34182
34228
 
34183
34229
  function toPropertyKey(t) {
34184
34230
  var i = toPrimitive(t, "string");
34185
- return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : String(i);
34231
+ return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : i + "";
34186
34232
  }
34187
34233
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/createClass.js
34188
34234
 
@@ -34218,7 +34264,7 @@ var local_LocalCache = /*#__PURE__*/function () {
34218
34264
  function LocalCache() {
34219
34265
  _classCallCheck(this, LocalCache);
34220
34266
  }
34221
- _createClass(LocalCache, [{
34267
+ return _createClass(LocalCache, [{
34222
34268
  key: "setCache",
34223
34269
  value:
34224
34270
  // 添加
@@ -34248,7 +34294,6 @@ var local_LocalCache = /*#__PURE__*/function () {
34248
34294
  window.localStorage.clear();
34249
34295
  }
34250
34296
  }]);
34251
- return LocalCache;
34252
34297
  }();
34253
34298
  /* harmony default export */ var local = (new local_LocalCache());
34254
34299
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/project/src/index.vue?vue&type=script&lang=js
@@ -34364,7 +34409,7 @@ var src_component = normalizeComponent(
34364
34409
  // CONCATENATED MODULE: ./package/antanklayout/src/components/project/index.js
34365
34410
 
34366
34411
  /* harmony default export */ var project = (project_src);
34367
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/CollapseIcon/src/CollapseIcon.vue?vue&type=template&id=c8a88db2&scoped=true
34412
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/CollapseIcon/src/CollapseIcon.vue?vue&type=template&id=c8a88db2&scoped=true
34368
34413
  var CollapseIconvue_type_template_id_c8a88db2_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:"collapse-icon",staticStyle:{"margin-right":"12px"},on:{"click":_vm.changeCollapse}},[_c('i',{class:("el-icon-s-" + (_vm.isCollapse ? 'unfold' : 'fold'))})])}
34369
34414
  var CollapseIconvue_type_template_id_c8a88db2_scoped_true_staticRenderFns = []
34370
34415
 
@@ -34550,7 +34595,7 @@ var left_src_component = normalizeComponent(
34550
34595
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/index.js
34551
34596
 
34552
34597
  /* harmony default export */ var left = (left_src);
34553
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/header/right/src/index.vue?vue&type=template&id=e2225378&scoped=true
34598
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/header/right/src/index.vue?vue&type=template&id=e2225378&scoped=true
34554
34599
  var srcvue_type_template_id_e2225378_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"tool-bar-ri"},[_c('div',{staticClass:"header-icon"}),_c('div',{staticClass:"_user"},[_c('span',{staticClass:"timer"},[_vm._v(" "+_vm._s(_vm.sysTimer)+" ")]),_c('span',{staticClass:"theme",on:{"click":function($event){return _vm.openParent('triggerTheme')}}},[(_vm.engine.theme && _vm.engine.theme.id != 'default_0')?_c('span',{staticClass:"theme_check isTheme"}):_c('span',{staticClass:"theme_check"})]),_c('span',{staticClass:"woner_option_item",on:{"click":function($event){return _vm.openParent('triggerUser')}}},[(_vm.user.avatar)?_c('span',{staticClass:"_avatar",style:(("background-image:url(" + (_vm.user.avatar) + ")"))}):_c('span',{staticClass:"_avatar"},[_vm._v(_vm._s(_vm.avatarText))]),_c('span',[_vm._v(_vm._s(_vm.user.nickName))])]),_vm._v(" | "),_c('span',{on:{"click":function($event){return _vm.openParent('triggerLoginOut')}}},[_vm._v("退出")])])])}
34555
34600
  var srcvue_type_template_id_e2225378_scoped_true_staticRenderFns = []
34556
34601
 
@@ -34654,7 +34699,7 @@ var right_src_component = normalizeComponent(
34654
34699
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/right/index.js
34655
34700
 
34656
34701
  /* harmony default export */ var right = (right_src);
34657
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=template&id=66b6ee8d
34702
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=template&id=66b6ee8d
34658
34703
  var srcvue_type_template_id_66b6ee8d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._l((_vm.menulist),function(subItem){return [(subItem.children && subItem.children.length > 0)?_c('el-submenu',{attrs:{"title":subItem.meta.title,"index":subItem.path}},[_c('template',{slot:"title"},[_c('i',{staticClass:"el-icon"},[(subItem.meta.iconUrl && subItem.meta.selectIconUrl)?_c('img',{staticClass:"menu-icon",attrs:{"src":_vm.currentPath == subItem.path || _vm.currentPath == subItem.path && _vm.isCollapse || _vm.engine.theme && _vm.engine.theme.class ? subItem.meta.selectIconUrl : subItem.meta.iconUrl}}):_vm._e()]),_c('div',{staticClass:"_option"},[_vm._v(_vm._s(subItem.meta.title))])]),_c('SubMenu',{attrs:{"menulist":subItem.children,"engine":_vm.engine,"isCollapse":_vm.isCollapse,"currentPath":_vm.currentPath}})],2):_c('el-menu-item',{class:("" + (subItem.meta.iconUrl && subItem.meta.selectIconUrl?'':'el-menu-item-no-icon')),attrs:{"title":subItem.meta.title,"index":subItem.path},on:{"click":function($event){return _vm.handleClickMenu(subItem)}}},[(subItem.meta.iconUrl && subItem.meta.selectIconUrl)?_c('i',{staticClass:"el-icon"},[_c('img',{staticClass:"menu-icon",attrs:{"src":_vm.currentPath == subItem.path || _vm.currentPath == subItem.path && _vm.isCollapse || _vm.engine.theme && _vm.engine.theme.class ? subItem.meta.selectIconUrl : subItem.meta.iconUrl}})]):_vm._e(),_c('template',{slot:"title"},[_c('div',{staticClass:"_option"},[_vm._v(_vm._s(subItem.meta.title))]),(_vm.currentPath == subItem.path && !_vm.isCollapse && _vm.hasFavorit)?_c('el-dropdown',{attrs:{"trigger":"hover"},on:{"command":_vm.handleCommand,"visible-change":function($event){return _vm.triggerCallback(subItem.meta.menuId)}},scopedSlots:_vm._u([{key:"dropdown",fn:function(){return [_c('el-dropdown-menu',[_c('el-dropdown-item',{staticStyle:{"background":"#fff","color":"#333"},attrs:{"command":subItem.meta.menuId}},[(!_vm.hasStar)?[_c('i',{staticClass:"el-icon-star-off"})]:[_c('i',{staticClass:"el-icon-star-on",staticStyle:{"color":"rgba(230, 162, 60, 1)"}})],_vm._v(" "+_vm._s(_vm.hasStar?'已收藏':'收藏')+" ")],2)],1)]},proxy:true}],null,true)},[_c('span',{staticClass:"more"},[_c('span',{staticClass:"el-icon-more",staticStyle:{"color":"#fff","font-size":"14px"}})])]):_vm._e()],1)],2)]})],2)}
34659
34704
  var srcvue_type_template_id_66b6ee8d_staticRenderFns = []
34660
34705
 
@@ -34851,7 +34896,7 @@ var SubMenu_src_component = normalizeComponent(
34851
34896
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/index.js
34852
34897
 
34853
34898
  /* harmony default export */ var SubMenu = (SubMenu_src);
34854
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"da777d74-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/skeleton/src/index.vue?vue&type=template&id=e5fc6216&scoped=true
34899
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"549ca1c3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/skeleton/src/index.vue?vue&type=template&id=e5fc6216&scoped=true
34855
34900
  var srcvue_type_template_id_e5fc6216_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.loading)?_c('div',{staticClass:"iframe_skeleton",class:_vm.loading?'loading':'',style:(("" + (_vm.loading?'':'top:calc(-100vh);')))},[_vm._m(0)]):_vm._e()}
34856
34901
  var srcvue_type_template_id_e5fc6216_scoped_true_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"iframe_skeleton_body"},[_c('div',{staticClass:"iframe_skeleton_content"},[_c('div',{staticClass:"iframe_skeleton_header"},[_c('div',{staticClass:"iframe_skeleton_header_content"},[_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"160px","height":"32px","margin-right":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"160px","height":"32px","margin-right":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"160px","height":"32px","margin-right":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"62px","height":"32px","border-radius":"32px"}})])]),_c('div',{staticStyle:{"position":"absolute","bottom":"12px","right":"32px","width":"100%","height":"100%","display":"flex","flex-direction":"column","justify-content":"center","align-items":"center"}},[_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"72%","margin-bottom":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"72%","margin-bottom":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"72%","margin-bottom":"12px","border-radius":"32px"}})]),_c('div',{staticClass:"iframe_skeleton_header",staticStyle:{"position":"absolute","bottom":"12px","right":"32px"}},[_c('div',{staticClass:"iframe_skeleton_header_content"}),_c('div',{staticClass:"iframe_skeleton_header_content"},[_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"62px","height":"32px","margin-right":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"62px","height":"32px","margin-right":"12px","border-radius":"32px"}}),_c('div',{staticClass:"skeletonLine",staticStyle:{"width":"62px","height":"32px","border-radius":"32px"}})])])])])}]
34857
34902
 
@@ -34997,8 +35042,8 @@ var skeleton_src_component = normalizeComponent(
34997
35042
  FooterMenu: footerMenu,
34998
35043
  Left: left,
34999
35044
  Right: right,
35000
- SubMenu: SubMenu,
35001
- Skeleton: skeleton
35045
+ SubMenu: SubMenu
35046
+ // Skeleton
35002
35047
  },
35003
35048
  data: function data() {
35004
35049
  return {
@@ -35179,8 +35224,8 @@ document.documentElement.style.setProperty("--el-menu-level", '1px');
35179
35224
  document.documentElement.style.setProperty("--el-menu-icon-width", '24px');
35180
35225
  // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=script&lang=js
35181
35226
  /* harmony default export */ var src_Antanklayoutvue_type_script_lang_js = (Antanklayoutvue_type_script_lang_js);
35182
- // EXTERNAL MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=style&index=0&id=defa864c&prod&scoped=true&lang=scss
35183
- var Antanklayoutvue_type_style_index_0_id_defa864c_prod_scoped_true_lang_scss = __webpack_require__("eb15");
35227
+ // EXTERNAL MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=style&index=0&id=3319f786&prod&scoped=true&lang=scss
35228
+ var Antanklayoutvue_type_style_index_0_id_3319f786_prod_scoped_true_lang_scss = __webpack_require__("ddac");
35184
35229
 
35185
35230
  // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue
35186
35231
 
@@ -35197,7 +35242,7 @@ var Antanklayout_component = normalizeComponent(
35197
35242
  staticRenderFns,
35198
35243
  false,
35199
35244
  null,
35200
- "defa864c",
35245
+ "3319f786",
35201
35246
  null
35202
35247
 
35203
35248
  )