antanklayout_vue2 1.0.1 → 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);
@@ -14164,13 +14202,6 @@ module.exports = function (error, C, stack, dropEntries) {
14164
14202
  })));
14165
14203
 
14166
14204
 
14167
- /***/ }),
14168
-
14169
- /***/ "6f64":
14170
- /***/ (function(module, exports, __webpack_require__) {
14171
-
14172
- // extracted by mini-css-extract-plugin
14173
-
14174
14205
  /***/ }),
14175
14206
 
14176
14207
  /***/ "7118":
@@ -14877,7 +14908,7 @@ function _regeneratorRuntime() {
14877
14908
  function makeInvokeMethod(e, r, n) {
14878
14909
  var o = h;
14879
14910
  return function (i, a) {
14880
- if (o === f) throw new Error("Generator is already running");
14911
+ if (o === f) throw Error("Generator is already running");
14881
14912
  if (o === s) {
14882
14913
  if ("throw" === i) throw a;
14883
14914
  return {
@@ -15019,7 +15050,7 @@ function _regeneratorRuntime() {
15019
15050
  } else if (c) {
15020
15051
  if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
15021
15052
  } else {
15022
- if (!u) throw new Error("try statement without catch or finally");
15053
+ if (!u) throw Error("try statement without catch or finally");
15023
15054
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
15024
15055
  }
15025
15056
  }
@@ -15059,7 +15090,7 @@ function _regeneratorRuntime() {
15059
15090
  return o;
15060
15091
  }
15061
15092
  }
15062
- throw new Error("illegal catch attempt");
15093
+ throw Error("illegal catch attempt");
15063
15094
  },
15064
15095
  delegateYield: function delegateYield(e, r, n) {
15065
15096
  return this.delegate = {
@@ -18541,17 +18572,6 @@ module.exports = isForced;
18541
18572
  })));
18542
18573
 
18543
18574
 
18544
- /***/ }),
18545
-
18546
- /***/ "961b":
18547
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
18548
-
18549
- "use strict";
18550
- /* 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_d525da0a_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("6f64");
18551
- /* 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_d525da0a_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_d525da0a_prod_scoped_true_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
18552
- /* unused harmony reexport * */
18553
-
18554
-
18555
18575
  /***/ }),
18556
18576
 
18557
18577
  /***/ "9671":
@@ -19116,15 +19136,18 @@ var isArray = Array.isArray;
19116
19136
 
19117
19137
  var defaults = {
19118
19138
  allowDots: false,
19139
+ allowEmptyArrays: false,
19119
19140
  allowPrototypes: false,
19120
19141
  allowSparse: false,
19121
19142
  arrayLimit: 20,
19122
19143
  charset: 'utf-8',
19123
19144
  charsetSentinel: false,
19124
19145
  comma: false,
19146
+ decodeDotInKeys: true,
19125
19147
  decoder: utils.decode,
19126
19148
  delimiter: '&',
19127
19149
  depth: 5,
19150
+ duplicates: 'combine',
19128
19151
  ignoreQueryPrefix: false,
19129
19152
  interpretNumericEntities: false,
19130
19153
  parameterLimit: 1000,
@@ -19212,9 +19235,10 @@ var parseValues = function parseQueryStringValues(str, options) {
19212
19235
  val = isArray(val) ? [val] : val;
19213
19236
  }
19214
19237
 
19215
- if (has.call(obj, key)) {
19238
+ var existing = has.call(obj, key);
19239
+ if (existing && options.duplicates === 'combine') {
19216
19240
  obj[key] = utils.combine(obj[key], val);
19217
- } else {
19241
+ } else if (!existing || options.duplicates === 'last') {
19218
19242
  obj[key] = val;
19219
19243
  }
19220
19244
  }
@@ -19230,24 +19254,25 @@ var parseObject = function (chain, val, options, valuesParsed) {
19230
19254
  var root = chain[i];
19231
19255
 
19232
19256
  if (root === '[]' && options.parseArrays) {
19233
- obj = [].concat(leaf);
19257
+ obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
19234
19258
  } else {
19235
19259
  obj = options.plainObjects ? Object.create(null) : {};
19236
19260
  var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
19237
- var index = parseInt(cleanRoot, 10);
19238
- 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 === '') {
19239
19264
  obj = { 0: leaf };
19240
19265
  } else if (
19241
19266
  !isNaN(index)
19242
- && root !== cleanRoot
19243
- && String(index) === cleanRoot
19267
+ && root !== decodedRoot
19268
+ && String(index) === decodedRoot
19244
19269
  && index >= 0
19245
19270
  && (options.parseArrays && index <= options.arrayLimit)
19246
19271
  ) {
19247
19272
  obj = [];
19248
19273
  obj[index] = leaf;
19249
- } else if (cleanRoot !== '__proto__') {
19250
- obj[cleanRoot] = leaf;
19274
+ } else if (decodedRoot !== '__proto__') {
19275
+ obj[decodedRoot] = leaf;
19251
19276
  }
19252
19277
  }
19253
19278
 
@@ -19316,7 +19341,15 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19316
19341
  return defaults;
19317
19342
  }
19318
19343
 
19319
- 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') {
19320
19353
  throw new TypeError('Decoder has to be a function.');
19321
19354
  }
19322
19355
 
@@ -19325,18 +19358,29 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19325
19358
  }
19326
19359
  var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;
19327
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
+
19328
19369
  return {
19329
- allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
19370
+ allowDots: allowDots,
19371
+ allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
19330
19372
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
19331
19373
  allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
19332
19374
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
19333
19375
  charset: charset,
19334
19376
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
19335
19377
  comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,
19378
+ decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
19336
19379
  decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,
19337
19380
  delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
19338
19381
  // eslint-disable-next-line no-implicit-coercion, no-extra-parens
19339
19382
  depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,
19383
+ duplicates: duplicates,
19340
19384
  ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
19341
19385
  interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
19342
19386
  parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,
@@ -19732,7 +19776,7 @@ module.exports = function (argument) {
19732
19776
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19733
19777
 
19734
19778
  "use strict";
19735
- /* 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");
19736
19780
  /* harmony import */ var _api_layoutApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("755b");
19737
19781
 
19738
19782
  //
@@ -19863,7 +19907,7 @@ module.exports = function (argument) {
19863
19907
  var _this2 = this;
19864
19908
  this.documentList = [];
19865
19909
  this.loadMenu(function () {
19866
- 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),
19867
19911
  _step;
19868
19912
  try {
19869
19913
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -21731,6 +21775,316 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
21731
21775
  });
21732
21776
 
21733
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
+
21734
22088
  /***/ }),
21735
22089
 
21736
22090
  /***/ "b727":
@@ -28639,10 +28993,10 @@ var SHARED = '__core-js_shared__';
28639
28993
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
28640
28994
 
28641
28995
  (store.versions || (store.versions = [])).push({
28642
- version: '3.36.0',
28996
+ version: '3.36.1',
28643
28997
  mode: IS_PURE ? 'pure' : 'global',
28644
28998
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
28645
- 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',
28646
29000
  source: 'https://github.com/zloirock/core-js'
28647
29001
  });
28648
29002
 
@@ -29656,9 +30010,7 @@ var gOPD = __webpack_require__("2aa9");
29656
30010
  var $TypeError = __webpack_require__("0d25");
29657
30011
  var $floor = GetIntrinsic('%Math.floor%');
29658
30012
 
29659
- /** @typedef {(...args: unknown[]) => unknown} Func */
29660
-
29661
- /** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
30013
+ /** @type {import('.')} */
29662
30014
  module.exports = function setFunctionLength(fn, length) {
29663
30015
  if (typeof fn !== 'function') {
29664
30016
  throw new $TypeError('`fn` is not a function');
@@ -30194,7 +30546,8 @@ defineWellKnownSymbol('iterator');
30194
30546
 
30195
30547
  /* eslint-disable no-proto -- safe */
30196
30548
  var uncurryThisAccessor = __webpack_require__("7282");
30197
- var anObject = __webpack_require__("825a");
30549
+ var isObject = __webpack_require__("861d");
30550
+ var requireObjectCoercible = __webpack_require__("1d80");
30198
30551
  var aPossiblePrototype = __webpack_require__("3bbe");
30199
30552
 
30200
30553
  // `Object.setPrototypeOf` method
@@ -30211,8 +30564,9 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
30211
30564
  CORRECT_SETTER = test instanceof Array;
30212
30565
  } catch (error) { /* empty */ }
30213
30566
  return function setPrototypeOf(O, proto) {
30214
- anObject(O);
30567
+ requireObjectCoercible(O);
30215
30568
  aPossiblePrototype(proto);
30569
+ if (!isObject(O)) return O;
30216
30570
  if (CORRECT_SETTER) setter(O, proto);
30217
30571
  else O.__proto__ = proto;
30218
30572
  return O;
@@ -31508,6 +31862,17 @@ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31508
31862
  };
31509
31863
 
31510
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
+
31511
31876
  /***/ }),
31512
31877
 
31513
31878
  /***/ "ddb0":
@@ -31578,316 +31943,6 @@ module.exports = Object.keys || function keys(O) {
31578
31943
  };
31579
31944
 
31580
31945
 
31581
- /***/ }),
31582
-
31583
- /***/ "df7c":
31584
- /***/ (function(module, exports, __webpack_require__) {
31585
-
31586
- /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
31587
- // backported and transplited with Babel, with backwards-compat fixes
31588
-
31589
- // Copyright Joyent, Inc. and other Node contributors.
31590
- //
31591
- // Permission is hereby granted, free of charge, to any person obtaining a
31592
- // copy of this software and associated documentation files (the
31593
- // "Software"), to deal in the Software without restriction, including
31594
- // without limitation the rights to use, copy, modify, merge, publish,
31595
- // distribute, sublicense, and/or sell copies of the Software, and to permit
31596
- // persons to whom the Software is furnished to do so, subject to the
31597
- // following conditions:
31598
- //
31599
- // The above copyright notice and this permission notice shall be included
31600
- // in all copies or substantial portions of the Software.
31601
- //
31602
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
31603
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31604
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
31605
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31606
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
31607
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31608
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
31609
-
31610
- // resolves . and .. elements in a path array with directory names there
31611
- // must be no slashes, empty elements, or device names (c:\) in the array
31612
- // (so also no leading and trailing slashes - it does not distinguish
31613
- // relative and absolute paths)
31614
- function normalizeArray(parts, allowAboveRoot) {
31615
- // if the path tries to go above the root, `up` ends up > 0
31616
- var up = 0;
31617
- for (var i = parts.length - 1; i >= 0; i--) {
31618
- var last = parts[i];
31619
- if (last === '.') {
31620
- parts.splice(i, 1);
31621
- } else if (last === '..') {
31622
- parts.splice(i, 1);
31623
- up++;
31624
- } else if (up) {
31625
- parts.splice(i, 1);
31626
- up--;
31627
- }
31628
- }
31629
-
31630
- // if the path is allowed to go above the root, restore leading ..s
31631
- if (allowAboveRoot) {
31632
- for (; up--; up) {
31633
- parts.unshift('..');
31634
- }
31635
- }
31636
-
31637
- return parts;
31638
- }
31639
-
31640
- // path.resolve([from ...], to)
31641
- // posix version
31642
- exports.resolve = function() {
31643
- var resolvedPath = '',
31644
- resolvedAbsolute = false;
31645
-
31646
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
31647
- var path = (i >= 0) ? arguments[i] : process.cwd();
31648
-
31649
- // Skip empty and invalid entries
31650
- if (typeof path !== 'string') {
31651
- throw new TypeError('Arguments to path.resolve must be strings');
31652
- } else if (!path) {
31653
- continue;
31654
- }
31655
-
31656
- resolvedPath = path + '/' + resolvedPath;
31657
- resolvedAbsolute = path.charAt(0) === '/';
31658
- }
31659
-
31660
- // At this point the path should be resolved to a full absolute path, but
31661
- // handle relative paths to be safe (might happen when process.cwd() fails)
31662
-
31663
- // Normalize the path
31664
- resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
31665
- return !!p;
31666
- }), !resolvedAbsolute).join('/');
31667
-
31668
- return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
31669
- };
31670
-
31671
- // path.normalize(path)
31672
- // posix version
31673
- exports.normalize = function(path) {
31674
- var isAbsolute = exports.isAbsolute(path),
31675
- trailingSlash = substr(path, -1) === '/';
31676
-
31677
- // Normalize the path
31678
- path = normalizeArray(filter(path.split('/'), function(p) {
31679
- return !!p;
31680
- }), !isAbsolute).join('/');
31681
-
31682
- if (!path && !isAbsolute) {
31683
- path = '.';
31684
- }
31685
- if (path && trailingSlash) {
31686
- path += '/';
31687
- }
31688
-
31689
- return (isAbsolute ? '/' : '') + path;
31690
- };
31691
-
31692
- // posix version
31693
- exports.isAbsolute = function(path) {
31694
- return path.charAt(0) === '/';
31695
- };
31696
-
31697
- // posix version
31698
- exports.join = function() {
31699
- var paths = Array.prototype.slice.call(arguments, 0);
31700
- return exports.normalize(filter(paths, function(p, index) {
31701
- if (typeof p !== 'string') {
31702
- throw new TypeError('Arguments to path.join must be strings');
31703
- }
31704
- return p;
31705
- }).join('/'));
31706
- };
31707
-
31708
-
31709
- // path.relative(from, to)
31710
- // posix version
31711
- exports.relative = function(from, to) {
31712
- from = exports.resolve(from).substr(1);
31713
- to = exports.resolve(to).substr(1);
31714
-
31715
- function trim(arr) {
31716
- var start = 0;
31717
- for (; start < arr.length; start++) {
31718
- if (arr[start] !== '') break;
31719
- }
31720
-
31721
- var end = arr.length - 1;
31722
- for (; end >= 0; end--) {
31723
- if (arr[end] !== '') break;
31724
- }
31725
-
31726
- if (start > end) return [];
31727
- return arr.slice(start, end - start + 1);
31728
- }
31729
-
31730
- var fromParts = trim(from.split('/'));
31731
- var toParts = trim(to.split('/'));
31732
-
31733
- var length = Math.min(fromParts.length, toParts.length);
31734
- var samePartsLength = length;
31735
- for (var i = 0; i < length; i++) {
31736
- if (fromParts[i] !== toParts[i]) {
31737
- samePartsLength = i;
31738
- break;
31739
- }
31740
- }
31741
-
31742
- var outputParts = [];
31743
- for (var i = samePartsLength; i < fromParts.length; i++) {
31744
- outputParts.push('..');
31745
- }
31746
-
31747
- outputParts = outputParts.concat(toParts.slice(samePartsLength));
31748
-
31749
- return outputParts.join('/');
31750
- };
31751
-
31752
- exports.sep = '/';
31753
- exports.delimiter = ':';
31754
-
31755
- exports.dirname = function (path) {
31756
- if (typeof path !== 'string') path = path + '';
31757
- if (path.length === 0) return '.';
31758
- var code = path.charCodeAt(0);
31759
- var hasRoot = code === 47 /*/*/;
31760
- var end = -1;
31761
- var matchedSlash = true;
31762
- for (var i = path.length - 1; i >= 1; --i) {
31763
- code = path.charCodeAt(i);
31764
- if (code === 47 /*/*/) {
31765
- if (!matchedSlash) {
31766
- end = i;
31767
- break;
31768
- }
31769
- } else {
31770
- // We saw the first non-path separator
31771
- matchedSlash = false;
31772
- }
31773
- }
31774
-
31775
- if (end === -1) return hasRoot ? '/' : '.';
31776
- if (hasRoot && end === 1) {
31777
- // return '//';
31778
- // Backwards-compat fix:
31779
- return '/';
31780
- }
31781
- return path.slice(0, end);
31782
- };
31783
-
31784
- function basename(path) {
31785
- if (typeof path !== 'string') path = path + '';
31786
-
31787
- var start = 0;
31788
- var end = -1;
31789
- var matchedSlash = true;
31790
- var i;
31791
-
31792
- for (i = path.length - 1; i >= 0; --i) {
31793
- if (path.charCodeAt(i) === 47 /*/*/) {
31794
- // If we reached a path separator that was not part of a set of path
31795
- // separators at the end of the string, stop now
31796
- if (!matchedSlash) {
31797
- start = i + 1;
31798
- break;
31799
- }
31800
- } else if (end === -1) {
31801
- // We saw the first non-path separator, mark this as the end of our
31802
- // path component
31803
- matchedSlash = false;
31804
- end = i + 1;
31805
- }
31806
- }
31807
-
31808
- if (end === -1) return '';
31809
- return path.slice(start, end);
31810
- }
31811
-
31812
- // Uses a mixed approach for backwards-compatibility, as ext behavior changed
31813
- // in new Node.js versions, so only basename() above is backported here
31814
- exports.basename = function (path, ext) {
31815
- var f = basename(path);
31816
- if (ext && f.substr(-1 * ext.length) === ext) {
31817
- f = f.substr(0, f.length - ext.length);
31818
- }
31819
- return f;
31820
- };
31821
-
31822
- exports.extname = function (path) {
31823
- if (typeof path !== 'string') path = path + '';
31824
- var startDot = -1;
31825
- var startPart = 0;
31826
- var end = -1;
31827
- var matchedSlash = true;
31828
- // Track the state of characters (if any) we see before our first dot and
31829
- // after any path separator we find
31830
- var preDotState = 0;
31831
- for (var i = path.length - 1; i >= 0; --i) {
31832
- var code = path.charCodeAt(i);
31833
- if (code === 47 /*/*/) {
31834
- // If we reached a path separator that was not part of a set of path
31835
- // separators at the end of the string, stop now
31836
- if (!matchedSlash) {
31837
- startPart = i + 1;
31838
- break;
31839
- }
31840
- continue;
31841
- }
31842
- if (end === -1) {
31843
- // We saw the first non-path separator, mark this as the end of our
31844
- // extension
31845
- matchedSlash = false;
31846
- end = i + 1;
31847
- }
31848
- if (code === 46 /*.*/) {
31849
- // If this is our first dot, mark it as the start of our extension
31850
- if (startDot === -1)
31851
- startDot = i;
31852
- else if (preDotState !== 1)
31853
- preDotState = 1;
31854
- } else if (startDot !== -1) {
31855
- // We saw a non-dot and non-path separator before our dot, so we should
31856
- // have a good chance at having a non-empty extension
31857
- preDotState = -1;
31858
- }
31859
- }
31860
-
31861
- if (startDot === -1 || end === -1 ||
31862
- // We saw a non-dot character immediately before the dot
31863
- preDotState === 0 ||
31864
- // The (right-most) trimmed path component is exactly '..'
31865
- preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
31866
- return '';
31867
- }
31868
- return path.slice(startDot, end);
31869
- };
31870
-
31871
- function filter (xs, f) {
31872
- if (xs.filter) return xs.filter(f);
31873
- var res = [];
31874
- for (var i = 0; i < xs.length; i++) {
31875
- if (f(xs[i], i, xs)) res.push(xs[i]);
31876
- }
31877
- return res;
31878
- }
31879
-
31880
- // String.prototype.substr - negative index don't work in IE8
31881
- var substr = 'ab'.substr(-1) === 'b'
31882
- ? function (str, start, len) { return str.substr(start, len) }
31883
- : function (str, start, len) {
31884
- if (start < 0) start = str.length + start;
31885
- return str.substr(start, len);
31886
- }
31887
- ;
31888
-
31889
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
31890
-
31891
31946
  /***/ }),
31892
31947
 
31893
31948
  /***/ "e01a":
@@ -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=d525da0a&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=d525da0a&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 {
@@ -35061,7 +35106,7 @@ var skeleton_src_component = normalizeComponent(
35061
35106
  //告诉系统当前浏览器地址的全路径(地址会触发historyreplace进行变更)
35062
35107
  this.iframeUrl = this.getCurrentPath();
35063
35108
  },
35064
- menuChange: function menuChange(path, val) {
35109
+ menuChange: function menuChange(subItem, val) {
35065
35110
  var _this = this,
35066
35111
  _top,
35067
35112
  _top2;
@@ -35073,7 +35118,10 @@ var skeleton_src_component = normalizeComponent(
35073
35118
  }
35074
35119
  //本地路由变更后,浏览器地址也要同步变更
35075
35120
  var plocation = (_top = top) !== null && _top !== void 0 && _top.location ? top.location : location;
35076
- var pageUrl = "#/mainrouter?projectLinkCode=".concat(this.getUrlParam('projectLinkCode'), "&theme=").concat(this.theme.class, "&projectCodeId=").concat(this.getUrlParam('projectCodeId'), "&pageUrl=").concat(encodeURIComponent(path));
35121
+ var pageUrl = "#/mainrouter?projectLinkCode=".concat(this.getUrlParam('projectLinkCode'), "&theme=").concat(this.theme.class, "&projectCodeId=").concat(this.getUrlParam('projectCodeId'), "&pageUrl=").concat(encodeURIComponent(subItem.path ? subItem.path : subItem));
35122
+ if (subItem.targetUrl) {
35123
+ pageUrl = "".concat(pageUrl, "&otherTargetUrl=").concat(subItem.targetUrl);
35124
+ }
35077
35125
  var his = (_top2 = top) !== null && _top2 !== void 0 && _top2.history ? top.history : history;
35078
35126
  his.replaceState({}, "", "".concat(plocation.origin).concat(plocation.pathname).concat(pageUrl));
35079
35127
 
@@ -35167,8 +35215,8 @@ document.documentElement.style.setProperty("--el-menu-level", '1px');
35167
35215
  document.documentElement.style.setProperty("--el-menu-icon-width", '24px');
35168
35216
  // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=script&lang=js
35169
35217
  /* harmony default export */ var src_Antanklayoutvue_type_script_lang_js = (Antanklayoutvue_type_script_lang_js);
35170
- // EXTERNAL MODULE: ./package/antanklayout/src/Antanklayout.vue?vue&type=style&index=0&id=d525da0a&prod&scoped=true&lang=scss
35171
- var Antanklayoutvue_type_style_index_0_id_d525da0a_prod_scoped_true_lang_scss = __webpack_require__("961b");
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");
35172
35220
 
35173
35221
  // CONCATENATED MODULE: ./package/antanklayout/src/Antanklayout.vue
35174
35222
 
@@ -35185,7 +35233,7 @@ var Antanklayout_component = normalizeComponent(
35185
35233
  staticRenderFns,
35186
35234
  false,
35187
35235
  null,
35188
- "d525da0a",
35236
+ "3319f786",
35189
35237
  null
35190
35238
 
35191
35239
  )