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.
@@ -1054,6 +1054,13 @@ module.exports.f = function getOwnPropertyNames(it) {
1054
1054
  };
1055
1055
 
1056
1056
 
1057
+ /***/ }),
1058
+
1059
+ /***/ "0597":
1060
+ /***/ (function(module, exports, __webpack_require__) {
1061
+
1062
+ // extracted by mini-css-extract-plugin
1063
+
1057
1064
  /***/ }),
1058
1065
 
1059
1066
  /***/ "06cf":
@@ -7902,10 +7909,13 @@ var defaultFormat = formats['default'];
7902
7909
  var defaults = {
7903
7910
  addQueryPrefix: false,
7904
7911
  allowDots: false,
7912
+ allowEmptyArrays: false,
7913
+ arrayFormat: 'indices',
7905
7914
  charset: 'utf-8',
7906
7915
  charsetSentinel: false,
7907
7916
  delimiter: '&',
7908
7917
  encode: true,
7918
+ encodeDotInKeys: false,
7909
7919
  encoder: utils.encode,
7910
7920
  encodeValuesOnly: false,
7911
7921
  format: defaultFormat,
@@ -7934,8 +7944,10 @@ var stringify = function stringify(
7934
7944
  prefix,
7935
7945
  generateArrayPrefix,
7936
7946
  commaRoundTrip,
7947
+ allowEmptyArrays,
7937
7948
  strictNullHandling,
7938
7949
  skipNulls,
7950
+ encodeDotInKeys,
7939
7951
  encoder,
7940
7952
  filter,
7941
7953
  sort,
@@ -8017,7 +8029,13 @@ var stringify = function stringify(
8017
8029
  objKeys = sort ? keys.sort(sort) : keys;
8018
8030
  }
8019
8031
 
8020
- var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;
8032
+ var encodedPrefix = encodeDotInKeys ? prefix.replace(/\./g, '%2E') : prefix;
8033
+
8034
+ var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? encodedPrefix + '[]' : encodedPrefix;
8035
+
8036
+ if (allowEmptyArrays && isArray(obj) && obj.length === 0) {
8037
+ return adjustedPrefix + '[]';
8038
+ }
8021
8039
 
8022
8040
  for (var j = 0; j < objKeys.length; ++j) {
8023
8041
  var key = objKeys[j];
@@ -8027,9 +8045,10 @@ var stringify = function stringify(
8027
8045
  continue;
8028
8046
  }
8029
8047
 
8048
+ var encodedKey = allowDots && encodeDotInKeys ? key.replace(/\./g, '%2E') : key;
8030
8049
  var keyPrefix = isArray(obj)
8031
- ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix
8032
- : adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');
8050
+ ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix
8051
+ : adjustedPrefix + (allowDots ? '.' + encodedKey : '[' + encodedKey + ']');
8033
8052
 
8034
8053
  sideChannel.set(object, step);
8035
8054
  var valueSideChannel = getSideChannel();
@@ -8039,8 +8058,10 @@ var stringify = function stringify(
8039
8058
  keyPrefix,
8040
8059
  generateArrayPrefix,
8041
8060
  commaRoundTrip,
8061
+ allowEmptyArrays,
8042
8062
  strictNullHandling,
8043
8063
  skipNulls,
8064
+ encodeDotInKeys,
8044
8065
  generateArrayPrefix === 'comma' && encodeValuesOnly && isArray(obj) ? null : encoder,
8045
8066
  filter,
8046
8067
  sort,
@@ -8062,6 +8083,14 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8062
8083
  return defaults;
8063
8084
  }
8064
8085
 
8086
+ if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
8087
+ throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
8088
+ }
8089
+
8090
+ if (typeof opts.encodeDotInKeys !== 'undefined' && typeof opts.encodeDotInKeys !== 'boolean') {
8091
+ throw new TypeError('`encodeDotInKeys` option can only be `true` or `false`, when provided');
8092
+ }
8093
+
8065
8094
  if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {
8066
8095
  throw new TypeError('Encoder has to be a function.');
8067
8096
  }
@@ -8085,13 +8114,32 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8085
8114
  filter = opts.filter;
8086
8115
  }
8087
8116
 
8117
+ var arrayFormat;
8118
+ if (opts.arrayFormat in arrayPrefixGenerators) {
8119
+ arrayFormat = opts.arrayFormat;
8120
+ } else if ('indices' in opts) {
8121
+ arrayFormat = opts.indices ? 'indices' : 'repeat';
8122
+ } else {
8123
+ arrayFormat = defaults.arrayFormat;
8124
+ }
8125
+
8126
+ if ('commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8127
+ throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8128
+ }
8129
+
8130
+ var allowDots = typeof opts.allowDots === 'undefined' ? opts.encodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
8131
+
8088
8132
  return {
8089
8133
  addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix,
8090
- allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
8134
+ allowDots: allowDots,
8135
+ allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
8136
+ arrayFormat: arrayFormat,
8091
8137
  charset: charset,
8092
8138
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
8139
+ commaRoundTrip: opts.commaRoundTrip,
8093
8140
  delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter,
8094
8141
  encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode,
8142
+ encodeDotInKeys: typeof opts.encodeDotInKeys === 'boolean' ? opts.encodeDotInKeys : defaults.encodeDotInKeys,
8095
8143
  encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,
8096
8144
  encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,
8097
8145
  filter: filter,
@@ -8125,20 +8173,8 @@ module.exports = function (object, opts) {
8125
8173
  return '';
8126
8174
  }
8127
8175
 
8128
- var arrayFormat;
8129
- if (opts && opts.arrayFormat in arrayPrefixGenerators) {
8130
- arrayFormat = opts.arrayFormat;
8131
- } else if (opts && 'indices' in opts) {
8132
- arrayFormat = opts.indices ? 'indices' : 'repeat';
8133
- } else {
8134
- arrayFormat = 'indices';
8135
- }
8136
-
8137
- var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
8138
- if (opts && 'commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8139
- throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8140
- }
8141
- var commaRoundTrip = generateArrayPrefix === 'comma' && opts && opts.commaRoundTrip;
8176
+ var generateArrayPrefix = arrayPrefixGenerators[options.arrayFormat];
8177
+ var commaRoundTrip = generateArrayPrefix === 'comma' && options.commaRoundTrip;
8142
8178
 
8143
8179
  if (!objKeys) {
8144
8180
  objKeys = Object.keys(obj);
@@ -8160,8 +8196,10 @@ module.exports = function (object, opts) {
8160
8196
  key,
8161
8197
  generateArrayPrefix,
8162
8198
  commaRoundTrip,
8199
+ options.allowEmptyArrays,
8163
8200
  options.strictNullHandling,
8164
8201
  options.skipNulls,
8202
+ options.encodeDotInKeys,
8165
8203
  options.encode ? options.encoder : null,
8166
8204
  options.filter,
8167
8205
  options.sort,
@@ -8335,7 +8373,7 @@ exports.binding = function (name) {
8335
8373
  var path;
8336
8374
  exports.cwd = function () { return cwd };
8337
8375
  exports.chdir = function (dir) {
8338
- if (!path) path = __webpack_require__("df7c");
8376
+ if (!path) path = __webpack_require__("b69a");
8339
8377
  cwd = path.resolve(dir, cwd);
8340
8378
  };
8341
8379
  })();
@@ -9689,9 +9727,9 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9689
9727
  var length, result, step, iterator, next, value;
9690
9728
  // if the target is not iterable or it's an array with the default iterator - use a simple case
9691
9729
  if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) {
9730
+ result = IS_CONSTRUCTOR ? new this() : [];
9692
9731
  iterator = getIterator(O, iteratorMethod);
9693
9732
  next = iterator.next;
9694
- result = IS_CONSTRUCTOR ? new this() : [];
9695
9733
  for (;!(step = call(next, iterator)).done; index++) {
9696
9734
  value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
9697
9735
  createProperty(result, index, value);
@@ -14870,7 +14908,7 @@ function _regeneratorRuntime() {
14870
14908
  function makeInvokeMethod(e, r, n) {
14871
14909
  var o = h;
14872
14910
  return function (i, a) {
14873
- if (o === f) throw new Error("Generator is already running");
14911
+ if (o === f) throw Error("Generator is already running");
14874
14912
  if (o === s) {
14875
14913
  if ("throw" === i) throw a;
14876
14914
  return {
@@ -15012,7 +15050,7 @@ function _regeneratorRuntime() {
15012
15050
  } else if (c) {
15013
15051
  if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
15014
15052
  } else {
15015
- if (!u) throw new Error("try statement without catch or finally");
15053
+ if (!u) throw Error("try statement without catch or finally");
15016
15054
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
15017
15055
  }
15018
15056
  }
@@ -15052,7 +15090,7 @@ function _regeneratorRuntime() {
15052
15090
  return o;
15053
15091
  }
15054
15092
  }
15055
- throw new Error("illegal catch attempt");
15093
+ throw Error("illegal catch attempt");
15056
15094
  },
15057
15095
  delegateYield: function delegateYield(e, r, n) {
15058
15096
  return this.delegate = {
@@ -18923,13 +18961,6 @@ __webpack_require__("5352");
18923
18961
  /* unused harmony reexport * */
18924
18962
 
18925
18963
 
18926
- /***/ }),
18927
-
18928
- /***/ "98df":
18929
- /***/ (function(module, exports, __webpack_require__) {
18930
-
18931
- // extracted by mini-css-extract-plugin
18932
-
18933
18964
  /***/ }),
18934
18965
 
18935
18966
  /***/ "99af":
@@ -19105,15 +19136,18 @@ var isArray = Array.isArray;
19105
19136
 
19106
19137
  var defaults = {
19107
19138
  allowDots: false,
19139
+ allowEmptyArrays: false,
19108
19140
  allowPrototypes: false,
19109
19141
  allowSparse: false,
19110
19142
  arrayLimit: 20,
19111
19143
  charset: 'utf-8',
19112
19144
  charsetSentinel: false,
19113
19145
  comma: false,
19146
+ decodeDotInKeys: true,
19114
19147
  decoder: utils.decode,
19115
19148
  delimiter: '&',
19116
19149
  depth: 5,
19150
+ duplicates: 'combine',
19117
19151
  ignoreQueryPrefix: false,
19118
19152
  interpretNumericEntities: false,
19119
19153
  parameterLimit: 1000,
@@ -19201,9 +19235,10 @@ var parseValues = function parseQueryStringValues(str, options) {
19201
19235
  val = isArray(val) ? [val] : val;
19202
19236
  }
19203
19237
 
19204
- if (has.call(obj, key)) {
19238
+ var existing = has.call(obj, key);
19239
+ if (existing && options.duplicates === 'combine') {
19205
19240
  obj[key] = utils.combine(obj[key], val);
19206
- } else {
19241
+ } else if (!existing || options.duplicates === 'last') {
19207
19242
  obj[key] = val;
19208
19243
  }
19209
19244
  }
@@ -19219,24 +19254,25 @@ var parseObject = function (chain, val, options, valuesParsed) {
19219
19254
  var root = chain[i];
19220
19255
 
19221
19256
  if (root === '[]' && options.parseArrays) {
19222
- obj = [].concat(leaf);
19257
+ obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
19223
19258
  } else {
19224
19259
  obj = options.plainObjects ? Object.create(null) : {};
19225
19260
  var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
19226
- var index = parseInt(cleanRoot, 10);
19227
- if (!options.parseArrays && cleanRoot === '') {
19261
+ var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, '.') : cleanRoot;
19262
+ var index = parseInt(decodedRoot, 10);
19263
+ if (!options.parseArrays && decodedRoot === '') {
19228
19264
  obj = { 0: leaf };
19229
19265
  } else if (
19230
19266
  !isNaN(index)
19231
- && root !== cleanRoot
19232
- && String(index) === cleanRoot
19267
+ && root !== decodedRoot
19268
+ && String(index) === decodedRoot
19233
19269
  && index >= 0
19234
19270
  && (options.parseArrays && index <= options.arrayLimit)
19235
19271
  ) {
19236
19272
  obj = [];
19237
19273
  obj[index] = leaf;
19238
- } else if (cleanRoot !== '__proto__') {
19239
- obj[cleanRoot] = leaf;
19274
+ } else if (decodedRoot !== '__proto__') {
19275
+ obj[decodedRoot] = leaf;
19240
19276
  }
19241
19277
  }
19242
19278
 
@@ -19305,7 +19341,15 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19305
19341
  return defaults;
19306
19342
  }
19307
19343
 
19308
- if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') {
19344
+ if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
19345
+ throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
19346
+ }
19347
+
19348
+ if (typeof opts.decodeDotInKeys !== 'undefined' && typeof opts.decodeDotInKeys !== 'boolean') {
19349
+ throw new TypeError('`decodeDotInKeys` option can only be `true` or `false`, when provided');
19350
+ }
19351
+
19352
+ if (opts.decoder !== null && typeof opts.decoder !== 'undefined' && typeof opts.decoder !== 'function') {
19309
19353
  throw new TypeError('Decoder has to be a function.');
19310
19354
  }
19311
19355
 
@@ -19314,18 +19358,29 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19314
19358
  }
19315
19359
  var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;
19316
19360
 
19361
+ var duplicates = typeof opts.duplicates === 'undefined' ? defaults.duplicates : opts.duplicates;
19362
+
19363
+ if (duplicates !== 'combine' && duplicates !== 'first' && duplicates !== 'last') {
19364
+ throw new TypeError('The duplicates option must be either combine, first, or last');
19365
+ }
19366
+
19367
+ var allowDots = typeof opts.allowDots === 'undefined' ? opts.decodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
19368
+
19317
19369
  return {
19318
- allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
19370
+ allowDots: allowDots,
19371
+ allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
19319
19372
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
19320
19373
  allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
19321
19374
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
19322
19375
  charset: charset,
19323
19376
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
19324
19377
  comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,
19378
+ decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
19325
19379
  decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,
19326
19380
  delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
19327
19381
  // eslint-disable-next-line no-implicit-coercion, no-extra-parens
19328
19382
  depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,
19383
+ duplicates: duplicates,
19329
19384
  ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
19330
19385
  interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
19331
19386
  parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,
@@ -19721,7 +19776,7 @@ module.exports = function (argument) {
19721
19776
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19722
19777
 
19723
19778
  "use strict";
19724
- /* harmony import */ var _Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b85c");
19779
+ /* 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");
19725
19780
  /* harmony import */ var _api_layoutApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("755b");
19726
19781
 
19727
19782
  //
@@ -19852,7 +19907,7 @@ module.exports = function (argument) {
19852
19907
  var _this2 = this;
19853
19908
  this.documentList = [];
19854
19909
  this.loadMenu(function () {
19855
- var _iterator = Object(_Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(_this2.menust),
19910
+ 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),
19856
19911
  _step;
19857
19912
  try {
19858
19913
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -21720,6 +21775,316 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
21720
21775
  });
21721
21776
 
21722
21777
 
21778
+ /***/ }),
21779
+
21780
+ /***/ "b69a":
21781
+ /***/ (function(module, exports, __webpack_require__) {
21782
+
21783
+ /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
21784
+ // backported and transplited with Babel, with backwards-compat fixes
21785
+
21786
+ // Copyright Joyent, Inc. and other Node contributors.
21787
+ //
21788
+ // Permission is hereby granted, free of charge, to any person obtaining a
21789
+ // copy of this software and associated documentation files (the
21790
+ // "Software"), to deal in the Software without restriction, including
21791
+ // without limitation the rights to use, copy, modify, merge, publish,
21792
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
21793
+ // persons to whom the Software is furnished to do so, subject to the
21794
+ // following conditions:
21795
+ //
21796
+ // The above copyright notice and this permission notice shall be included
21797
+ // in all copies or substantial portions of the Software.
21798
+ //
21799
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21800
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21801
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
21802
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21803
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21804
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21805
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
21806
+
21807
+ // resolves . and .. elements in a path array with directory names there
21808
+ // must be no slashes, empty elements, or device names (c:\) in the array
21809
+ // (so also no leading and trailing slashes - it does not distinguish
21810
+ // relative and absolute paths)
21811
+ function normalizeArray(parts, allowAboveRoot) {
21812
+ // if the path tries to go above the root, `up` ends up > 0
21813
+ var up = 0;
21814
+ for (var i = parts.length - 1; i >= 0; i--) {
21815
+ var last = parts[i];
21816
+ if (last === '.') {
21817
+ parts.splice(i, 1);
21818
+ } else if (last === '..') {
21819
+ parts.splice(i, 1);
21820
+ up++;
21821
+ } else if (up) {
21822
+ parts.splice(i, 1);
21823
+ up--;
21824
+ }
21825
+ }
21826
+
21827
+ // if the path is allowed to go above the root, restore leading ..s
21828
+ if (allowAboveRoot) {
21829
+ for (; up--; up) {
21830
+ parts.unshift('..');
21831
+ }
21832
+ }
21833
+
21834
+ return parts;
21835
+ }
21836
+
21837
+ // path.resolve([from ...], to)
21838
+ // posix version
21839
+ exports.resolve = function() {
21840
+ var resolvedPath = '',
21841
+ resolvedAbsolute = false;
21842
+
21843
+ for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
21844
+ var path = (i >= 0) ? arguments[i] : process.cwd();
21845
+
21846
+ // Skip empty and invalid entries
21847
+ if (typeof path !== 'string') {
21848
+ throw new TypeError('Arguments to path.resolve must be strings');
21849
+ } else if (!path) {
21850
+ continue;
21851
+ }
21852
+
21853
+ resolvedPath = path + '/' + resolvedPath;
21854
+ resolvedAbsolute = path.charAt(0) === '/';
21855
+ }
21856
+
21857
+ // At this point the path should be resolved to a full absolute path, but
21858
+ // handle relative paths to be safe (might happen when process.cwd() fails)
21859
+
21860
+ // Normalize the path
21861
+ resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
21862
+ return !!p;
21863
+ }), !resolvedAbsolute).join('/');
21864
+
21865
+ return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
21866
+ };
21867
+
21868
+ // path.normalize(path)
21869
+ // posix version
21870
+ exports.normalize = function(path) {
21871
+ var isAbsolute = exports.isAbsolute(path),
21872
+ trailingSlash = substr(path, -1) === '/';
21873
+
21874
+ // Normalize the path
21875
+ path = normalizeArray(filter(path.split('/'), function(p) {
21876
+ return !!p;
21877
+ }), !isAbsolute).join('/');
21878
+
21879
+ if (!path && !isAbsolute) {
21880
+ path = '.';
21881
+ }
21882
+ if (path && trailingSlash) {
21883
+ path += '/';
21884
+ }
21885
+
21886
+ return (isAbsolute ? '/' : '') + path;
21887
+ };
21888
+
21889
+ // posix version
21890
+ exports.isAbsolute = function(path) {
21891
+ return path.charAt(0) === '/';
21892
+ };
21893
+
21894
+ // posix version
21895
+ exports.join = function() {
21896
+ var paths = Array.prototype.slice.call(arguments, 0);
21897
+ return exports.normalize(filter(paths, function(p, index) {
21898
+ if (typeof p !== 'string') {
21899
+ throw new TypeError('Arguments to path.join must be strings');
21900
+ }
21901
+ return p;
21902
+ }).join('/'));
21903
+ };
21904
+
21905
+
21906
+ // path.relative(from, to)
21907
+ // posix version
21908
+ exports.relative = function(from, to) {
21909
+ from = exports.resolve(from).substr(1);
21910
+ to = exports.resolve(to).substr(1);
21911
+
21912
+ function trim(arr) {
21913
+ var start = 0;
21914
+ for (; start < arr.length; start++) {
21915
+ if (arr[start] !== '') break;
21916
+ }
21917
+
21918
+ var end = arr.length - 1;
21919
+ for (; end >= 0; end--) {
21920
+ if (arr[end] !== '') break;
21921
+ }
21922
+
21923
+ if (start > end) return [];
21924
+ return arr.slice(start, end - start + 1);
21925
+ }
21926
+
21927
+ var fromParts = trim(from.split('/'));
21928
+ var toParts = trim(to.split('/'));
21929
+
21930
+ var length = Math.min(fromParts.length, toParts.length);
21931
+ var samePartsLength = length;
21932
+ for (var i = 0; i < length; i++) {
21933
+ if (fromParts[i] !== toParts[i]) {
21934
+ samePartsLength = i;
21935
+ break;
21936
+ }
21937
+ }
21938
+
21939
+ var outputParts = [];
21940
+ for (var i = samePartsLength; i < fromParts.length; i++) {
21941
+ outputParts.push('..');
21942
+ }
21943
+
21944
+ outputParts = outputParts.concat(toParts.slice(samePartsLength));
21945
+
21946
+ return outputParts.join('/');
21947
+ };
21948
+
21949
+ exports.sep = '/';
21950
+ exports.delimiter = ':';
21951
+
21952
+ exports.dirname = function (path) {
21953
+ if (typeof path !== 'string') path = path + '';
21954
+ if (path.length === 0) return '.';
21955
+ var code = path.charCodeAt(0);
21956
+ var hasRoot = code === 47 /*/*/;
21957
+ var end = -1;
21958
+ var matchedSlash = true;
21959
+ for (var i = path.length - 1; i >= 1; --i) {
21960
+ code = path.charCodeAt(i);
21961
+ if (code === 47 /*/*/) {
21962
+ if (!matchedSlash) {
21963
+ end = i;
21964
+ break;
21965
+ }
21966
+ } else {
21967
+ // We saw the first non-path separator
21968
+ matchedSlash = false;
21969
+ }
21970
+ }
21971
+
21972
+ if (end === -1) return hasRoot ? '/' : '.';
21973
+ if (hasRoot && end === 1) {
21974
+ // return '//';
21975
+ // Backwards-compat fix:
21976
+ return '/';
21977
+ }
21978
+ return path.slice(0, end);
21979
+ };
21980
+
21981
+ function basename(path) {
21982
+ if (typeof path !== 'string') path = path + '';
21983
+
21984
+ var start = 0;
21985
+ var end = -1;
21986
+ var matchedSlash = true;
21987
+ var i;
21988
+
21989
+ for (i = path.length - 1; i >= 0; --i) {
21990
+ if (path.charCodeAt(i) === 47 /*/*/) {
21991
+ // If we reached a path separator that was not part of a set of path
21992
+ // separators at the end of the string, stop now
21993
+ if (!matchedSlash) {
21994
+ start = i + 1;
21995
+ break;
21996
+ }
21997
+ } else if (end === -1) {
21998
+ // We saw the first non-path separator, mark this as the end of our
21999
+ // path component
22000
+ matchedSlash = false;
22001
+ end = i + 1;
22002
+ }
22003
+ }
22004
+
22005
+ if (end === -1) return '';
22006
+ return path.slice(start, end);
22007
+ }
22008
+
22009
+ // Uses a mixed approach for backwards-compatibility, as ext behavior changed
22010
+ // in new Node.js versions, so only basename() above is backported here
22011
+ exports.basename = function (path, ext) {
22012
+ var f = basename(path);
22013
+ if (ext && f.substr(-1 * ext.length) === ext) {
22014
+ f = f.substr(0, f.length - ext.length);
22015
+ }
22016
+ return f;
22017
+ };
22018
+
22019
+ exports.extname = function (path) {
22020
+ if (typeof path !== 'string') path = path + '';
22021
+ var startDot = -1;
22022
+ var startPart = 0;
22023
+ var end = -1;
22024
+ var matchedSlash = true;
22025
+ // Track the state of characters (if any) we see before our first dot and
22026
+ // after any path separator we find
22027
+ var preDotState = 0;
22028
+ for (var i = path.length - 1; i >= 0; --i) {
22029
+ var code = path.charCodeAt(i);
22030
+ if (code === 47 /*/*/) {
22031
+ // If we reached a path separator that was not part of a set of path
22032
+ // separators at the end of the string, stop now
22033
+ if (!matchedSlash) {
22034
+ startPart = i + 1;
22035
+ break;
22036
+ }
22037
+ continue;
22038
+ }
22039
+ if (end === -1) {
22040
+ // We saw the first non-path separator, mark this as the end of our
22041
+ // extension
22042
+ matchedSlash = false;
22043
+ end = i + 1;
22044
+ }
22045
+ if (code === 46 /*.*/) {
22046
+ // If this is our first dot, mark it as the start of our extension
22047
+ if (startDot === -1)
22048
+ startDot = i;
22049
+ else if (preDotState !== 1)
22050
+ preDotState = 1;
22051
+ } else if (startDot !== -1) {
22052
+ // We saw a non-dot and non-path separator before our dot, so we should
22053
+ // have a good chance at having a non-empty extension
22054
+ preDotState = -1;
22055
+ }
22056
+ }
22057
+
22058
+ if (startDot === -1 || end === -1 ||
22059
+ // We saw a non-dot character immediately before the dot
22060
+ preDotState === 0 ||
22061
+ // The (right-most) trimmed path component is exactly '..'
22062
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
22063
+ return '';
22064
+ }
22065
+ return path.slice(startDot, end);
22066
+ };
22067
+
22068
+ function filter (xs, f) {
22069
+ if (xs.filter) return xs.filter(f);
22070
+ var res = [];
22071
+ for (var i = 0; i < xs.length; i++) {
22072
+ if (f(xs[i], i, xs)) res.push(xs[i]);
22073
+ }
22074
+ return res;
22075
+ }
22076
+
22077
+ // String.prototype.substr - negative index don't work in IE8
22078
+ var substr = 'ab'.substr(-1) === 'b'
22079
+ ? function (str, start, len) { return str.substr(start, len) }
22080
+ : function (str, start, len) {
22081
+ if (start < 0) start = str.length + start;
22082
+ return str.substr(start, len);
22083
+ }
22084
+ ;
22085
+
22086
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
22087
+
21723
22088
  /***/ }),
21724
22089
 
21725
22090
  /***/ "b727":
@@ -28628,10 +28993,10 @@ var SHARED = '__core-js_shared__';
28628
28993
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
28629
28994
 
28630
28995
  (store.versions || (store.versions = [])).push({
28631
- version: '3.36.0',
28996
+ version: '3.36.1',
28632
28997
  mode: IS_PURE ? 'pure' : 'global',
28633
28998
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
28634
- license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
28999
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
28635
29000
  source: 'https://github.com/zloirock/core-js'
28636
29001
  });
28637
29002
 
@@ -29645,9 +30010,7 @@ var gOPD = __webpack_require__("2aa9");
29645
30010
  var $TypeError = __webpack_require__("0d25");
29646
30011
  var $floor = GetIntrinsic('%Math.floor%');
29647
30012
 
29648
- /** @typedef {(...args: unknown[]) => unknown} Func */
29649
-
29650
- /** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
30013
+ /** @type {import('.')} */
29651
30014
  module.exports = function setFunctionLength(fn, length) {
29652
30015
  if (typeof fn !== 'function') {
29653
30016
  throw new $TypeError('`fn` is not a function');
@@ -30183,7 +30546,8 @@ defineWellKnownSymbol('iterator');
30183
30546
 
30184
30547
  /* eslint-disable no-proto -- safe */
30185
30548
  var uncurryThisAccessor = __webpack_require__("7282");
30186
- var anObject = __webpack_require__("825a");
30549
+ var isObject = __webpack_require__("861d");
30550
+ var requireObjectCoercible = __webpack_require__("1d80");
30187
30551
  var aPossiblePrototype = __webpack_require__("3bbe");
30188
30552
 
30189
30553
  // `Object.setPrototypeOf` method
@@ -30200,8 +30564,9 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
30200
30564
  CORRECT_SETTER = test instanceof Array;
30201
30565
  } catch (error) { /* empty */ }
30202
30566
  return function setPrototypeOf(O, proto) {
30203
- anObject(O);
30567
+ requireObjectCoercible(O);
30204
30568
  aPossiblePrototype(proto);
30569
+ if (!isObject(O)) return O;
30205
30570
  if (CORRECT_SETTER) setter(O, proto);
30206
30571
  else O.__proto__ = proto;
30207
30572
  return O;
@@ -31497,6 +31862,17 @@ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31497
31862
  };
31498
31863
 
31499
31864
 
31865
+ /***/ }),
31866
+
31867
+ /***/ "ddac":
31868
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
31869
+
31870
+ "use strict";
31871
+ /* 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");
31872
+ /* 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__);
31873
+ /* unused harmony reexport * */
31874
+
31875
+
31500
31876
  /***/ }),
31501
31877
 
31502
31878
  /***/ "ddb0":
@@ -31567,316 +31943,6 @@ module.exports = Object.keys || function keys(O) {
31567
31943
  };
31568
31944
 
31569
31945
 
31570
- /***/ }),
31571
-
31572
- /***/ "df7c":
31573
- /***/ (function(module, exports, __webpack_require__) {
31574
-
31575
- /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
31576
- // backported and transplited with Babel, with backwards-compat fixes
31577
-
31578
- // Copyright Joyent, Inc. and other Node contributors.
31579
- //
31580
- // Permission is hereby granted, free of charge, to any person obtaining a
31581
- // copy of this software and associated documentation files (the
31582
- // "Software"), to deal in the Software without restriction, including
31583
- // without limitation the rights to use, copy, modify, merge, publish,
31584
- // distribute, sublicense, and/or sell copies of the Software, and to permit
31585
- // persons to whom the Software is furnished to do so, subject to the
31586
- // following conditions:
31587
- //
31588
- // The above copyright notice and this permission notice shall be included
31589
- // in all copies or substantial portions of the Software.
31590
- //
31591
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
31592
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31593
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
31594
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31595
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
31596
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31597
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
31598
-
31599
- // resolves . and .. elements in a path array with directory names there
31600
- // must be no slashes, empty elements, or device names (c:\) in the array
31601
- // (so also no leading and trailing slashes - it does not distinguish
31602
- // relative and absolute paths)
31603
- function normalizeArray(parts, allowAboveRoot) {
31604
- // if the path tries to go above the root, `up` ends up > 0
31605
- var up = 0;
31606
- for (var i = parts.length - 1; i >= 0; i--) {
31607
- var last = parts[i];
31608
- if (last === '.') {
31609
- parts.splice(i, 1);
31610
- } else if (last === '..') {
31611
- parts.splice(i, 1);
31612
- up++;
31613
- } else if (up) {
31614
- parts.splice(i, 1);
31615
- up--;
31616
- }
31617
- }
31618
-
31619
- // if the path is allowed to go above the root, restore leading ..s
31620
- if (allowAboveRoot) {
31621
- for (; up--; up) {
31622
- parts.unshift('..');
31623
- }
31624
- }
31625
-
31626
- return parts;
31627
- }
31628
-
31629
- // path.resolve([from ...], to)
31630
- // posix version
31631
- exports.resolve = function() {
31632
- var resolvedPath = '',
31633
- resolvedAbsolute = false;
31634
-
31635
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
31636
- var path = (i >= 0) ? arguments[i] : process.cwd();
31637
-
31638
- // Skip empty and invalid entries
31639
- if (typeof path !== 'string') {
31640
- throw new TypeError('Arguments to path.resolve must be strings');
31641
- } else if (!path) {
31642
- continue;
31643
- }
31644
-
31645
- resolvedPath = path + '/' + resolvedPath;
31646
- resolvedAbsolute = path.charAt(0) === '/';
31647
- }
31648
-
31649
- // At this point the path should be resolved to a full absolute path, but
31650
- // handle relative paths to be safe (might happen when process.cwd() fails)
31651
-
31652
- // Normalize the path
31653
- resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
31654
- return !!p;
31655
- }), !resolvedAbsolute).join('/');
31656
-
31657
- return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
31658
- };
31659
-
31660
- // path.normalize(path)
31661
- // posix version
31662
- exports.normalize = function(path) {
31663
- var isAbsolute = exports.isAbsolute(path),
31664
- trailingSlash = substr(path, -1) === '/';
31665
-
31666
- // Normalize the path
31667
- path = normalizeArray(filter(path.split('/'), function(p) {
31668
- return !!p;
31669
- }), !isAbsolute).join('/');
31670
-
31671
- if (!path && !isAbsolute) {
31672
- path = '.';
31673
- }
31674
- if (path && trailingSlash) {
31675
- path += '/';
31676
- }
31677
-
31678
- return (isAbsolute ? '/' : '') + path;
31679
- };
31680
-
31681
- // posix version
31682
- exports.isAbsolute = function(path) {
31683
- return path.charAt(0) === '/';
31684
- };
31685
-
31686
- // posix version
31687
- exports.join = function() {
31688
- var paths = Array.prototype.slice.call(arguments, 0);
31689
- return exports.normalize(filter(paths, function(p, index) {
31690
- if (typeof p !== 'string') {
31691
- throw new TypeError('Arguments to path.join must be strings');
31692
- }
31693
- return p;
31694
- }).join('/'));
31695
- };
31696
-
31697
-
31698
- // path.relative(from, to)
31699
- // posix version
31700
- exports.relative = function(from, to) {
31701
- from = exports.resolve(from).substr(1);
31702
- to = exports.resolve(to).substr(1);
31703
-
31704
- function trim(arr) {
31705
- var start = 0;
31706
- for (; start < arr.length; start++) {
31707
- if (arr[start] !== '') break;
31708
- }
31709
-
31710
- var end = arr.length - 1;
31711
- for (; end >= 0; end--) {
31712
- if (arr[end] !== '') break;
31713
- }
31714
-
31715
- if (start > end) return [];
31716
- return arr.slice(start, end - start + 1);
31717
- }
31718
-
31719
- var fromParts = trim(from.split('/'));
31720
- var toParts = trim(to.split('/'));
31721
-
31722
- var length = Math.min(fromParts.length, toParts.length);
31723
- var samePartsLength = length;
31724
- for (var i = 0; i < length; i++) {
31725
- if (fromParts[i] !== toParts[i]) {
31726
- samePartsLength = i;
31727
- break;
31728
- }
31729
- }
31730
-
31731
- var outputParts = [];
31732
- for (var i = samePartsLength; i < fromParts.length; i++) {
31733
- outputParts.push('..');
31734
- }
31735
-
31736
- outputParts = outputParts.concat(toParts.slice(samePartsLength));
31737
-
31738
- return outputParts.join('/');
31739
- };
31740
-
31741
- exports.sep = '/';
31742
- exports.delimiter = ':';
31743
-
31744
- exports.dirname = function (path) {
31745
- if (typeof path !== 'string') path = path + '';
31746
- if (path.length === 0) return '.';
31747
- var code = path.charCodeAt(0);
31748
- var hasRoot = code === 47 /*/*/;
31749
- var end = -1;
31750
- var matchedSlash = true;
31751
- for (var i = path.length - 1; i >= 1; --i) {
31752
- code = path.charCodeAt(i);
31753
- if (code === 47 /*/*/) {
31754
- if (!matchedSlash) {
31755
- end = i;
31756
- break;
31757
- }
31758
- } else {
31759
- // We saw the first non-path separator
31760
- matchedSlash = false;
31761
- }
31762
- }
31763
-
31764
- if (end === -1) return hasRoot ? '/' : '.';
31765
- if (hasRoot && end === 1) {
31766
- // return '//';
31767
- // Backwards-compat fix:
31768
- return '/';
31769
- }
31770
- return path.slice(0, end);
31771
- };
31772
-
31773
- function basename(path) {
31774
- if (typeof path !== 'string') path = path + '';
31775
-
31776
- var start = 0;
31777
- var end = -1;
31778
- var matchedSlash = true;
31779
- var i;
31780
-
31781
- for (i = path.length - 1; i >= 0; --i) {
31782
- if (path.charCodeAt(i) === 47 /*/*/) {
31783
- // If we reached a path separator that was not part of a set of path
31784
- // separators at the end of the string, stop now
31785
- if (!matchedSlash) {
31786
- start = i + 1;
31787
- break;
31788
- }
31789
- } else if (end === -1) {
31790
- // We saw the first non-path separator, mark this as the end of our
31791
- // path component
31792
- matchedSlash = false;
31793
- end = i + 1;
31794
- }
31795
- }
31796
-
31797
- if (end === -1) return '';
31798
- return path.slice(start, end);
31799
- }
31800
-
31801
- // Uses a mixed approach for backwards-compatibility, as ext behavior changed
31802
- // in new Node.js versions, so only basename() above is backported here
31803
- exports.basename = function (path, ext) {
31804
- var f = basename(path);
31805
- if (ext && f.substr(-1 * ext.length) === ext) {
31806
- f = f.substr(0, f.length - ext.length);
31807
- }
31808
- return f;
31809
- };
31810
-
31811
- exports.extname = function (path) {
31812
- if (typeof path !== 'string') path = path + '';
31813
- var startDot = -1;
31814
- var startPart = 0;
31815
- var end = -1;
31816
- var matchedSlash = true;
31817
- // Track the state of characters (if any) we see before our first dot and
31818
- // after any path separator we find
31819
- var preDotState = 0;
31820
- for (var i = path.length - 1; i >= 0; --i) {
31821
- var code = path.charCodeAt(i);
31822
- if (code === 47 /*/*/) {
31823
- // If we reached a path separator that was not part of a set of path
31824
- // separators at the end of the string, stop now
31825
- if (!matchedSlash) {
31826
- startPart = i + 1;
31827
- break;
31828
- }
31829
- continue;
31830
- }
31831
- if (end === -1) {
31832
- // We saw the first non-path separator, mark this as the end of our
31833
- // extension
31834
- matchedSlash = false;
31835
- end = i + 1;
31836
- }
31837
- if (code === 46 /*.*/) {
31838
- // If this is our first dot, mark it as the start of our extension
31839
- if (startDot === -1)
31840
- startDot = i;
31841
- else if (preDotState !== 1)
31842
- preDotState = 1;
31843
- } else if (startDot !== -1) {
31844
- // We saw a non-dot and non-path separator before our dot, so we should
31845
- // have a good chance at having a non-empty extension
31846
- preDotState = -1;
31847
- }
31848
- }
31849
-
31850
- if (startDot === -1 || end === -1 ||
31851
- // We saw a non-dot character immediately before the dot
31852
- preDotState === 0 ||
31853
- // The (right-most) trimmed path component is exactly '..'
31854
- preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
31855
- return '';
31856
- }
31857
- return path.slice(startDot, end);
31858
- };
31859
-
31860
- function filter (xs, f) {
31861
- if (xs.filter) return xs.filter(f);
31862
- var res = [];
31863
- for (var i = 0; i < xs.length; i++) {
31864
- if (f(xs[i], i, xs)) res.push(xs[i]);
31865
- }
31866
- return res;
31867
- }
31868
-
31869
- // String.prototype.substr - negative index don't work in IE8
31870
- var substr = 'ab'.substr(-1) === 'b'
31871
- ? function (str, start, len) { return str.substr(start, len) }
31872
- : function (str, start, len) {
31873
- if (start < 0) start = str.length + start;
31874
- return str.substr(start, len);
31875
- }
31876
- ;
31877
-
31878
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
31879
-
31880
31946
  /***/ }),
31881
31947
 
31882
31948
  /***/ "e01a":
@@ -32775,17 +32841,6 @@ if ($stringify) {
32775
32841
  }
32776
32842
 
32777
32843
 
32778
- /***/ }),
32779
-
32780
- /***/ "eb15":
32781
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
32782
-
32783
- "use strict";
32784
- /* 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");
32785
- /* 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__);
32786
- /* unused harmony reexport * */
32787
-
32788
-
32789
32844
  /***/ }),
32790
32845
 
32791
32846
  /***/ "ebe4":
@@ -33908,12 +33963,12 @@ var web_dom_collections_for_each = __webpack_require__("159b");
33908
33963
  // EXTERNAL MODULE: ./package/antanklayout/src/index.scss
33909
33964
  var antanklayout_src = __webpack_require__("f925");
33910
33965
 
33911
- // 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
33912
- 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)}
33966
+ // 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
33967
+ 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)}
33913
33968
  var staticRenderFns = []
33914
33969
 
33915
33970
 
33916
- // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=template&id=defa864c&scoped=true
33971
+ // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=template&id=3319f786&scoped=true
33917
33972
 
33918
33973
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
33919
33974
  var es_array_concat = __webpack_require__("99af");
@@ -33948,7 +34003,7 @@ var web_url_search_params_has = __webpack_require__("271a");
33948
34003
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.size.js
33949
34004
  var web_url_search_params_size = __webpack_require__("5494");
33950
34005
 
33951
- // 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
34006
+ // 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
33952
34007
  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"},[(
33953
34008
  _vm.projectCodeName &&
33954
34009
  _vm.projectCodeName.includes('选座票务系统') &&
@@ -34100,14 +34155,14 @@ var component = normalizeComponent(
34100
34155
  // CONCATENATED MODULE: ./package/antanklayout/src/components/footerMenu/index.js
34101
34156
 
34102
34157
  /* harmony default export */ var footerMenu = (footerMenu_src);
34103
- // 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
34158
+ // 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
34104
34159
  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)}
34105
34160
  var srcvue_type_template_id_37de82e7_scoped_true_staticRenderFns = []
34106
34161
 
34107
34162
 
34108
34163
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/src/index.vue?vue&type=template&id=37de82e7&scoped=true
34109
34164
 
34110
- // 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
34165
+ // 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
34111
34166
  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 [(
34112
34167
  item.sysProjectLinks &&
34113
34168
  item.sysProjectLinks.length > 0 &&
@@ -34134,12 +34189,6 @@ function _classCallCheck(instance, Constructor) {
34134
34189
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
34135
34190
  var esm_typeof = __webpack_require__("53ca");
34136
34191
 
34137
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
34138
- var es_symbol = __webpack_require__("a4d3");
34139
-
34140
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
34141
- var es_symbol_description = __webpack_require__("e01a");
34142
-
34143
34192
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.to-primitive.js
34144
34193
  var es_symbol_to_primitive = __webpack_require__("8172");
34145
34194
 
@@ -34155,9 +34204,6 @@ var es_number_constructor = __webpack_require__("a9e3");
34155
34204
 
34156
34205
 
34157
34206
 
34158
-
34159
-
34160
-
34161
34207
  function toPrimitive(t, r) {
34162
34208
  if ("object" != Object(esm_typeof["a" /* default */])(t) || !t) return t;
34163
34209
  var e = t[Symbol.toPrimitive];
@@ -34173,7 +34219,7 @@ function toPrimitive(t, r) {
34173
34219
 
34174
34220
  function toPropertyKey(t) {
34175
34221
  var i = toPrimitive(t, "string");
34176
- return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : String(i);
34222
+ return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : i + "";
34177
34223
  }
34178
34224
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/createClass.js
34179
34225
 
@@ -34209,7 +34255,7 @@ var local_LocalCache = /*#__PURE__*/function () {
34209
34255
  function LocalCache() {
34210
34256
  _classCallCheck(this, LocalCache);
34211
34257
  }
34212
- _createClass(LocalCache, [{
34258
+ return _createClass(LocalCache, [{
34213
34259
  key: "setCache",
34214
34260
  value:
34215
34261
  // 添加
@@ -34239,7 +34285,6 @@ var local_LocalCache = /*#__PURE__*/function () {
34239
34285
  window.localStorage.clear();
34240
34286
  }
34241
34287
  }]);
34242
- return LocalCache;
34243
34288
  }();
34244
34289
  /* harmony default export */ var local = (new local_LocalCache());
34245
34290
  // 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
@@ -34355,7 +34400,7 @@ var src_component = normalizeComponent(
34355
34400
  // CONCATENATED MODULE: ./package/antanklayout/src/components/project/index.js
34356
34401
 
34357
34402
  /* harmony default export */ var project = (project_src);
34358
- // 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
34403
+ // 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
34359
34404
  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'))})])}
34360
34405
  var CollapseIconvue_type_template_id_c8a88db2_scoped_true_staticRenderFns = []
34361
34406
 
@@ -34541,7 +34586,7 @@ var left_src_component = normalizeComponent(
34541
34586
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/index.js
34542
34587
 
34543
34588
  /* harmony default export */ var left = (left_src);
34544
- // 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
34589
+ // 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
34545
34590
  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("退出")])])])}
34546
34591
  var srcvue_type_template_id_e2225378_scoped_true_staticRenderFns = []
34547
34592
 
@@ -34645,7 +34690,7 @@ var right_src_component = normalizeComponent(
34645
34690
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/right/index.js
34646
34691
 
34647
34692
  /* harmony default export */ var right = (right_src);
34648
- // 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
34693
+ // 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
34649
34694
  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)}
34650
34695
  var srcvue_type_template_id_66b6ee8d_staticRenderFns = []
34651
34696
 
@@ -34842,7 +34887,7 @@ var SubMenu_src_component = normalizeComponent(
34842
34887
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/index.js
34843
34888
 
34844
34889
  /* harmony default export */ var SubMenu = (SubMenu_src);
34845
- // 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
34890
+ // 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
34846
34891
  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()}
34847
34892
  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"}})])])])])}]
34848
34893
 
@@ -34988,8 +35033,8 @@ var skeleton_src_component = normalizeComponent(
34988
35033
  FooterMenu: footerMenu,
34989
35034
  Left: left,
34990
35035
  Right: right,
34991
- SubMenu: SubMenu,
34992
- Skeleton: skeleton
35036
+ SubMenu: SubMenu
35037
+ // Skeleton
34993
35038
  },
34994
35039
  data: function data() {
34995
35040
  return {
@@ -35170,8 +35215,8 @@ document.documentElement.style.setProperty("--el-menu-level", '1px');
35170
35215
  document.documentElement.style.setProperty("--el-menu-icon-width", '24px');
35171
35216
  // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=script&lang=js
35172
35217
  /* harmony default export */ var src_Antanklayoutvue_type_script_lang_js = (Antanklayoutvue_type_script_lang_js);
35173
- // EXTERNAL MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=style&index=0&id=defa864c&prod&scoped=true&lang=scss
35174
- var Antanklayoutvue_type_style_index_0_id_defa864c_prod_scoped_true_lang_scss = __webpack_require__("eb15");
35218
+ // EXTERNAL MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=style&index=0&id=3319f786&prod&scoped=true&lang=scss
35219
+ var Antanklayoutvue_type_style_index_0_id_3319f786_prod_scoped_true_lang_scss = __webpack_require__("ddac");
35175
35220
 
35176
35221
  // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue
35177
35222
 
@@ -35188,7 +35233,7 @@ var Antanklayout_component = normalizeComponent(
35188
35233
  staticRenderFns,
35189
35234
  false,
35190
35235
  null,
35191
- "defa864c",
35236
+ "3319f786",
35192
35237
  null
35193
35238
 
35194
35239
  )