antanklayout_vue2 1.1.3 → 1.1.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.
@@ -7902,13 +7902,10 @@ var defaultFormat = formats['default'];
7902
7902
  var defaults = {
7903
7903
  addQueryPrefix: false,
7904
7904
  allowDots: false,
7905
- allowEmptyArrays: false,
7906
- arrayFormat: 'indices',
7907
7905
  charset: 'utf-8',
7908
7906
  charsetSentinel: false,
7909
7907
  delimiter: '&',
7910
7908
  encode: true,
7911
- encodeDotInKeys: false,
7912
7909
  encoder: utils.encode,
7913
7910
  encodeValuesOnly: false,
7914
7911
  format: defaultFormat,
@@ -7937,10 +7934,8 @@ var stringify = function stringify(
7937
7934
  prefix,
7938
7935
  generateArrayPrefix,
7939
7936
  commaRoundTrip,
7940
- allowEmptyArrays,
7941
7937
  strictNullHandling,
7942
7938
  skipNulls,
7943
- encodeDotInKeys,
7944
7939
  encoder,
7945
7940
  filter,
7946
7941
  sort,
@@ -8022,13 +8017,7 @@ var stringify = function stringify(
8022
8017
  objKeys = sort ? keys.sort(sort) : keys;
8023
8018
  }
8024
8019
 
8025
- var encodedPrefix = encodeDotInKeys ? prefix.replace(/\./g, '%2E') : prefix;
8026
-
8027
- var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? encodedPrefix + '[]' : encodedPrefix;
8028
-
8029
- if (allowEmptyArrays && isArray(obj) && obj.length === 0) {
8030
- return adjustedPrefix + '[]';
8031
- }
8020
+ var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;
8032
8021
 
8033
8022
  for (var j = 0; j < objKeys.length; ++j) {
8034
8023
  var key = objKeys[j];
@@ -8038,10 +8027,9 @@ var stringify = function stringify(
8038
8027
  continue;
8039
8028
  }
8040
8029
 
8041
- var encodedKey = allowDots && encodeDotInKeys ? key.replace(/\./g, '%2E') : key;
8042
8030
  var keyPrefix = isArray(obj)
8043
- ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix
8044
- : adjustedPrefix + (allowDots ? '.' + encodedKey : '[' + encodedKey + ']');
8031
+ ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix
8032
+ : adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');
8045
8033
 
8046
8034
  sideChannel.set(object, step);
8047
8035
  var valueSideChannel = getSideChannel();
@@ -8051,10 +8039,8 @@ var stringify = function stringify(
8051
8039
  keyPrefix,
8052
8040
  generateArrayPrefix,
8053
8041
  commaRoundTrip,
8054
- allowEmptyArrays,
8055
8042
  strictNullHandling,
8056
8043
  skipNulls,
8057
- encodeDotInKeys,
8058
8044
  generateArrayPrefix === 'comma' && encodeValuesOnly && isArray(obj) ? null : encoder,
8059
8045
  filter,
8060
8046
  sort,
@@ -8076,14 +8062,6 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8076
8062
  return defaults;
8077
8063
  }
8078
8064
 
8079
- if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
8080
- throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
8081
- }
8082
-
8083
- if (typeof opts.encodeDotInKeys !== 'undefined' && typeof opts.encodeDotInKeys !== 'boolean') {
8084
- throw new TypeError('`encodeDotInKeys` option can only be `true` or `false`, when provided');
8085
- }
8086
-
8087
8065
  if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {
8088
8066
  throw new TypeError('Encoder has to be a function.');
8089
8067
  }
@@ -8107,32 +8085,13 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8107
8085
  filter = opts.filter;
8108
8086
  }
8109
8087
 
8110
- var arrayFormat;
8111
- if (opts.arrayFormat in arrayPrefixGenerators) {
8112
- arrayFormat = opts.arrayFormat;
8113
- } else if ('indices' in opts) {
8114
- arrayFormat = opts.indices ? 'indices' : 'repeat';
8115
- } else {
8116
- arrayFormat = defaults.arrayFormat;
8117
- }
8118
-
8119
- if ('commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8120
- throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8121
- }
8122
-
8123
- var allowDots = typeof opts.allowDots === 'undefined' ? opts.encodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
8124
-
8125
8088
  return {
8126
8089
  addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix,
8127
- allowDots: allowDots,
8128
- allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
8129
- arrayFormat: arrayFormat,
8090
+ allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
8130
8091
  charset: charset,
8131
8092
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
8132
- commaRoundTrip: opts.commaRoundTrip,
8133
8093
  delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter,
8134
8094
  encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode,
8135
- encodeDotInKeys: typeof opts.encodeDotInKeys === 'boolean' ? opts.encodeDotInKeys : defaults.encodeDotInKeys,
8136
8095
  encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,
8137
8096
  encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,
8138
8097
  filter: filter,
@@ -8166,8 +8125,20 @@ module.exports = function (object, opts) {
8166
8125
  return '';
8167
8126
  }
8168
8127
 
8169
- var generateArrayPrefix = arrayPrefixGenerators[options.arrayFormat];
8170
- var commaRoundTrip = generateArrayPrefix === 'comma' && options.commaRoundTrip;
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;
8171
8142
 
8172
8143
  if (!objKeys) {
8173
8144
  objKeys = Object.keys(obj);
@@ -8189,10 +8160,8 @@ module.exports = function (object, opts) {
8189
8160
  key,
8190
8161
  generateArrayPrefix,
8191
8162
  commaRoundTrip,
8192
- options.allowEmptyArrays,
8193
8163
  options.strictNullHandling,
8194
8164
  options.skipNulls,
8195
- options.encodeDotInKeys,
8196
8165
  options.encode ? options.encoder : null,
8197
8166
  options.filter,
8198
8167
  options.sort,
@@ -8366,7 +8335,7 @@ exports.binding = function (name) {
8366
8335
  var path;
8367
8336
  exports.cwd = function () { return cwd };
8368
8337
  exports.chdir = function (dir) {
8369
- if (!path) path = __webpack_require__("b69a");
8338
+ if (!path) path = __webpack_require__("df7c");
8370
8339
  cwd = path.resolve(dir, cwd);
8371
8340
  };
8372
8341
  })();
@@ -9702,9 +9671,9 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9702
9671
  var length, result, step, iterator, next, value;
9703
9672
  // if the target is not iterable or it's an array with the default iterator - use a simple case
9704
9673
  if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) {
9705
- result = IS_CONSTRUCTOR ? new this() : [];
9706
9674
  iterator = getIterator(O, iteratorMethod);
9707
9675
  next = iterator.next;
9676
+ result = IS_CONSTRUCTOR ? new this() : [];
9708
9677
  for (;!(step = call(next, iterator)).done; index++) {
9709
9678
  value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
9710
9679
  createProperty(result, index, value);
@@ -9814,17 +9783,6 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9814
9783
  })));
9815
9784
 
9816
9785
 
9817
- /***/ }),
9818
-
9819
- /***/ "507f":
9820
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9821
-
9822
- "use strict";
9823
- /* 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_index_vue_vue_type_style_index_0_id_6a811086_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7596");
9824
- /* 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_index_vue_vue_type_style_index_0_id_6a811086_prod_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_index_vue_vue_type_style_index_0_id_6a811086_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
9825
- /* unused harmony reexport * */
9826
-
9827
-
9828
9786
  /***/ }),
9829
9787
 
9830
9788
  /***/ "5087":
@@ -14188,6 +14146,13 @@ module.exports = function (error, C, stack, dropEntries) {
14188
14146
  })));
14189
14147
 
14190
14148
 
14149
+ /***/ }),
14150
+
14151
+ /***/ "7037":
14152
+ /***/ (function(module, exports, __webpack_require__) {
14153
+
14154
+ // extracted by mini-css-extract-plugin
14155
+
14191
14156
  /***/ }),
14192
14157
 
14193
14158
  /***/ "7118":
@@ -14894,7 +14859,7 @@ function _regeneratorRuntime() {
14894
14859
  function makeInvokeMethod(e, r, n) {
14895
14860
  var o = h;
14896
14861
  return function (i, a) {
14897
- if (o === f) throw Error("Generator is already running");
14862
+ if (o === f) throw new Error("Generator is already running");
14898
14863
  if (o === s) {
14899
14864
  if ("throw" === i) throw a;
14900
14865
  return {
@@ -15036,7 +15001,7 @@ function _regeneratorRuntime() {
15036
15001
  } else if (c) {
15037
15002
  if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
15038
15003
  } else {
15039
- if (!u) throw Error("try statement without catch or finally");
15004
+ if (!u) throw new Error("try statement without catch or finally");
15040
15005
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
15041
15006
  }
15042
15007
  }
@@ -15076,7 +15041,7 @@ function _regeneratorRuntime() {
15076
15041
  return o;
15077
15042
  }
15078
15043
  }
15079
- throw Error("illegal catch attempt");
15044
+ throw new Error("illegal catch attempt");
15080
15045
  },
15081
15046
  delegateYield: function delegateYield(e, r, n) {
15082
15047
  return this.delegate = {
@@ -15288,13 +15253,6 @@ function getMallMenus(params) {
15288
15253
 
15289
15254
  /***/ }),
15290
15255
 
15291
- /***/ "7596":
15292
- /***/ (function(module, exports, __webpack_require__) {
15293
-
15294
- // extracted by mini-css-extract-plugin
15295
-
15296
- /***/ }),
15297
-
15298
15256
  /***/ "7839":
15299
15257
  /***/ (function(module, exports, __webpack_require__) {
15300
15258
 
@@ -19122,18 +19080,15 @@ var isArray = Array.isArray;
19122
19080
 
19123
19081
  var defaults = {
19124
19082
  allowDots: false,
19125
- allowEmptyArrays: false,
19126
19083
  allowPrototypes: false,
19127
19084
  allowSparse: false,
19128
19085
  arrayLimit: 20,
19129
19086
  charset: 'utf-8',
19130
19087
  charsetSentinel: false,
19131
19088
  comma: false,
19132
- decodeDotInKeys: true,
19133
19089
  decoder: utils.decode,
19134
19090
  delimiter: '&',
19135
19091
  depth: 5,
19136
- duplicates: 'combine',
19137
19092
  ignoreQueryPrefix: false,
19138
19093
  interpretNumericEntities: false,
19139
19094
  parameterLimit: 1000,
@@ -19221,10 +19176,9 @@ var parseValues = function parseQueryStringValues(str, options) {
19221
19176
  val = isArray(val) ? [val] : val;
19222
19177
  }
19223
19178
 
19224
- var existing = has.call(obj, key);
19225
- if (existing && options.duplicates === 'combine') {
19179
+ if (has.call(obj, key)) {
19226
19180
  obj[key] = utils.combine(obj[key], val);
19227
- } else if (!existing || options.duplicates === 'last') {
19181
+ } else {
19228
19182
  obj[key] = val;
19229
19183
  }
19230
19184
  }
@@ -19240,25 +19194,24 @@ var parseObject = function (chain, val, options, valuesParsed) {
19240
19194
  var root = chain[i];
19241
19195
 
19242
19196
  if (root === '[]' && options.parseArrays) {
19243
- obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
19197
+ obj = [].concat(leaf);
19244
19198
  } else {
19245
19199
  obj = options.plainObjects ? Object.create(null) : {};
19246
19200
  var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
19247
- var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, '.') : cleanRoot;
19248
- var index = parseInt(decodedRoot, 10);
19249
- if (!options.parseArrays && decodedRoot === '') {
19201
+ var index = parseInt(cleanRoot, 10);
19202
+ if (!options.parseArrays && cleanRoot === '') {
19250
19203
  obj = { 0: leaf };
19251
19204
  } else if (
19252
19205
  !isNaN(index)
19253
- && root !== decodedRoot
19254
- && String(index) === decodedRoot
19206
+ && root !== cleanRoot
19207
+ && String(index) === cleanRoot
19255
19208
  && index >= 0
19256
19209
  && (options.parseArrays && index <= options.arrayLimit)
19257
19210
  ) {
19258
19211
  obj = [];
19259
19212
  obj[index] = leaf;
19260
- } else if (decodedRoot !== '__proto__') {
19261
- obj[decodedRoot] = leaf;
19213
+ } else if (cleanRoot !== '__proto__') {
19214
+ obj[cleanRoot] = leaf;
19262
19215
  }
19263
19216
  }
19264
19217
 
@@ -19327,15 +19280,7 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19327
19280
  return defaults;
19328
19281
  }
19329
19282
 
19330
- if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
19331
- throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
19332
- }
19333
-
19334
- if (typeof opts.decodeDotInKeys !== 'undefined' && typeof opts.decodeDotInKeys !== 'boolean') {
19335
- throw new TypeError('`decodeDotInKeys` option can only be `true` or `false`, when provided');
19336
- }
19337
-
19338
- if (opts.decoder !== null && typeof opts.decoder !== 'undefined' && typeof opts.decoder !== 'function') {
19283
+ if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') {
19339
19284
  throw new TypeError('Decoder has to be a function.');
19340
19285
  }
19341
19286
 
@@ -19344,29 +19289,18 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19344
19289
  }
19345
19290
  var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;
19346
19291
 
19347
- var duplicates = typeof opts.duplicates === 'undefined' ? defaults.duplicates : opts.duplicates;
19348
-
19349
- if (duplicates !== 'combine' && duplicates !== 'first' && duplicates !== 'last') {
19350
- throw new TypeError('The duplicates option must be either combine, first, or last');
19351
- }
19352
-
19353
- var allowDots = typeof opts.allowDots === 'undefined' ? opts.decodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
19354
-
19355
19292
  return {
19356
- allowDots: allowDots,
19357
- allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
19293
+ allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
19358
19294
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
19359
19295
  allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
19360
19296
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
19361
19297
  charset: charset,
19362
19298
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
19363
19299
  comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,
19364
- decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
19365
19300
  decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,
19366
19301
  delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
19367
19302
  // eslint-disable-next-line no-implicit-coercion, no-extra-parens
19368
19303
  depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,
19369
- duplicates: duplicates,
19370
19304
  ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
19371
19305
  interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
19372
19306
  parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,
@@ -19584,6 +19518,17 @@ module.exports = function (argument) {
19584
19518
  };
19585
19519
 
19586
19520
 
19521
+ /***/ }),
19522
+
19523
+ /***/ "a320":
19524
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
19525
+
19526
+ "use strict";
19527
+ /* 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_index_vue_vue_type_style_index_0_id_18fc4f56_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7037");
19528
+ /* 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_index_vue_vue_type_style_index_0_id_18fc4f56_prod_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_index_vue_vue_type_style_index_0_id_18fc4f56_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
19529
+ /* unused harmony reexport * */
19530
+
19531
+
19587
19532
  /***/ }),
19588
19533
 
19589
19534
  /***/ "a356":
@@ -19762,7 +19707,7 @@ module.exports = function (argument) {
19762
19707
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19763
19708
 
19764
19709
  "use strict";
19765
- /* 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");
19710
+ /* harmony import */ var _Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b85c");
19766
19711
  /* harmony import */ var _api_layoutApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("755b");
19767
19712
 
19768
19713
  //
@@ -19893,7 +19838,7 @@ module.exports = function (argument) {
19893
19838
  var _this2 = this;
19894
19839
  this.documentList = [];
19895
19840
  this.loadMenu(function () {
19896
- 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),
19841
+ var _iterator = Object(_Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(_this2.menust),
19897
19842
  _step;
19898
19843
  try {
19899
19844
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -21774,411 +21719,101 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
21774
21719
 
21775
21720
  /***/ }),
21776
21721
 
21777
- /***/ "b69a":
21722
+ /***/ "b727":
21778
21723
  /***/ (function(module, exports, __webpack_require__) {
21779
21724
 
21780
- /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
21781
- // backported and transplited with Babel, with backwards-compat fixes
21782
-
21783
- // Copyright Joyent, Inc. and other Node contributors.
21784
- //
21785
- // Permission is hereby granted, free of charge, to any person obtaining a
21786
- // copy of this software and associated documentation files (the
21787
- // "Software"), to deal in the Software without restriction, including
21788
- // without limitation the rights to use, copy, modify, merge, publish,
21789
- // distribute, sublicense, and/or sell copies of the Software, and to permit
21790
- // persons to whom the Software is furnished to do so, subject to the
21791
- // following conditions:
21792
- //
21793
- // The above copyright notice and this permission notice shall be included
21794
- // in all copies or substantial portions of the Software.
21795
- //
21796
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21797
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21798
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
21799
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21800
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21801
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21802
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
21803
-
21804
- // resolves . and .. elements in a path array with directory names there
21805
- // must be no slashes, empty elements, or device names (c:\) in the array
21806
- // (so also no leading and trailing slashes - it does not distinguish
21807
- // relative and absolute paths)
21808
- function normalizeArray(parts, allowAboveRoot) {
21809
- // if the path tries to go above the root, `up` ends up > 0
21810
- var up = 0;
21811
- for (var i = parts.length - 1; i >= 0; i--) {
21812
- var last = parts[i];
21813
- if (last === '.') {
21814
- parts.splice(i, 1);
21815
- } else if (last === '..') {
21816
- parts.splice(i, 1);
21817
- up++;
21818
- } else if (up) {
21819
- parts.splice(i, 1);
21820
- up--;
21821
- }
21822
- }
21823
-
21824
- // if the path is allowed to go above the root, restore leading ..s
21825
- if (allowAboveRoot) {
21826
- for (; up--; up) {
21827
- parts.unshift('..');
21828
- }
21829
- }
21830
-
21831
- return parts;
21832
- }
21725
+ "use strict";
21833
21726
 
21834
- // path.resolve([from ...], to)
21835
- // posix version
21836
- exports.resolve = function() {
21837
- var resolvedPath = '',
21838
- resolvedAbsolute = false;
21727
+ var bind = __webpack_require__("0366");
21728
+ var uncurryThis = __webpack_require__("e330");
21729
+ var IndexedObject = __webpack_require__("44ad");
21730
+ var toObject = __webpack_require__("7b0b");
21731
+ var lengthOfArrayLike = __webpack_require__("07fa");
21732
+ var arraySpeciesCreate = __webpack_require__("65f0");
21839
21733
 
21840
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
21841
- var path = (i >= 0) ? arguments[i] : process.cwd();
21734
+ var push = uncurryThis([].push);
21842
21735
 
21843
- // Skip empty and invalid entries
21844
- if (typeof path !== 'string') {
21845
- throw new TypeError('Arguments to path.resolve must be strings');
21846
- } else if (!path) {
21847
- continue;
21736
+ // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
21737
+ var createMethod = function (TYPE) {
21738
+ var IS_MAP = TYPE === 1;
21739
+ var IS_FILTER = TYPE === 2;
21740
+ var IS_SOME = TYPE === 3;
21741
+ var IS_EVERY = TYPE === 4;
21742
+ var IS_FIND_INDEX = TYPE === 6;
21743
+ var IS_FILTER_REJECT = TYPE === 7;
21744
+ var NO_HOLES = TYPE === 5 || IS_FIND_INDEX;
21745
+ return function ($this, callbackfn, that, specificCreate) {
21746
+ var O = toObject($this);
21747
+ var self = IndexedObject(O);
21748
+ var length = lengthOfArrayLike(self);
21749
+ var boundFunction = bind(callbackfn, that);
21750
+ var index = 0;
21751
+ var create = specificCreate || arraySpeciesCreate;
21752
+ var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
21753
+ var value, result;
21754
+ for (;length > index; index++) if (NO_HOLES || index in self) {
21755
+ value = self[index];
21756
+ result = boundFunction(value, index, O);
21757
+ if (TYPE) {
21758
+ if (IS_MAP) target[index] = result; // map
21759
+ else if (result) switch (TYPE) {
21760
+ case 3: return true; // some
21761
+ case 5: return value; // find
21762
+ case 6: return index; // findIndex
21763
+ case 2: push(target, value); // filter
21764
+ } else switch (TYPE) {
21765
+ case 4: return false; // every
21766
+ case 7: push(target, value); // filterReject
21767
+ }
21768
+ }
21848
21769
  }
21849
-
21850
- resolvedPath = path + '/' + resolvedPath;
21851
- resolvedAbsolute = path.charAt(0) === '/';
21852
- }
21853
-
21854
- // At this point the path should be resolved to a full absolute path, but
21855
- // handle relative paths to be safe (might happen when process.cwd() fails)
21856
-
21857
- // Normalize the path
21858
- resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
21859
- return !!p;
21860
- }), !resolvedAbsolute).join('/');
21861
-
21862
- return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
21770
+ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
21771
+ };
21863
21772
  };
21864
21773
 
21865
- // path.normalize(path)
21866
- // posix version
21867
- exports.normalize = function(path) {
21868
- var isAbsolute = exports.isAbsolute(path),
21869
- trailingSlash = substr(path, -1) === '/';
21774
+ module.exports = {
21775
+ // `Array.prototype.forEach` method
21776
+ // https://tc39.es/ecma262/#sec-array.prototype.foreach
21777
+ forEach: createMethod(0),
21778
+ // `Array.prototype.map` method
21779
+ // https://tc39.es/ecma262/#sec-array.prototype.map
21780
+ map: createMethod(1),
21781
+ // `Array.prototype.filter` method
21782
+ // https://tc39.es/ecma262/#sec-array.prototype.filter
21783
+ filter: createMethod(2),
21784
+ // `Array.prototype.some` method
21785
+ // https://tc39.es/ecma262/#sec-array.prototype.some
21786
+ some: createMethod(3),
21787
+ // `Array.prototype.every` method
21788
+ // https://tc39.es/ecma262/#sec-array.prototype.every
21789
+ every: createMethod(4),
21790
+ // `Array.prototype.find` method
21791
+ // https://tc39.es/ecma262/#sec-array.prototype.find
21792
+ find: createMethod(5),
21793
+ // `Array.prototype.findIndex` method
21794
+ // https://tc39.es/ecma262/#sec-array.prototype.findIndex
21795
+ findIndex: createMethod(6),
21796
+ // `Array.prototype.filterReject` method
21797
+ // https://github.com/tc39/proposal-array-filtering
21798
+ filterReject: createMethod(7)
21799
+ };
21870
21800
 
21871
- // Normalize the path
21872
- path = normalizeArray(filter(path.split('/'), function(p) {
21873
- return !!p;
21874
- }), !isAbsolute).join('/');
21875
21801
 
21876
- if (!path && !isAbsolute) {
21877
- path = '.';
21878
- }
21879
- if (path && trailingSlash) {
21880
- path += '/';
21881
- }
21802
+ /***/ }),
21882
21803
 
21883
- return (isAbsolute ? '/' : '') + path;
21884
- };
21804
+ /***/ "b7e9":
21805
+ /***/ (function(module, exports, __webpack_require__) {
21885
21806
 
21886
- // posix version
21887
- exports.isAbsolute = function(path) {
21888
- return path.charAt(0) === '/';
21889
- };
21807
+ //! moment.js locale configuration
21808
+ //! locale : English (Singapore) [en-sg]
21809
+ //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
21890
21810
 
21891
- // posix version
21892
- exports.join = function() {
21893
- var paths = Array.prototype.slice.call(arguments, 0);
21894
- return exports.normalize(filter(paths, function(p, index) {
21895
- if (typeof p !== 'string') {
21896
- throw new TypeError('Arguments to path.join must be strings');
21897
- }
21898
- return p;
21899
- }).join('/'));
21900
- };
21811
+ ;(function (global, factory) {
21812
+ true ? factory(__webpack_require__("c1df")) :
21813
+ undefined
21814
+ }(this, (function (moment) { 'use strict';
21901
21815
 
21902
-
21903
- // path.relative(from, to)
21904
- // posix version
21905
- exports.relative = function(from, to) {
21906
- from = exports.resolve(from).substr(1);
21907
- to = exports.resolve(to).substr(1);
21908
-
21909
- function trim(arr) {
21910
- var start = 0;
21911
- for (; start < arr.length; start++) {
21912
- if (arr[start] !== '') break;
21913
- }
21914
-
21915
- var end = arr.length - 1;
21916
- for (; end >= 0; end--) {
21917
- if (arr[end] !== '') break;
21918
- }
21919
-
21920
- if (start > end) return [];
21921
- return arr.slice(start, end - start + 1);
21922
- }
21923
-
21924
- var fromParts = trim(from.split('/'));
21925
- var toParts = trim(to.split('/'));
21926
-
21927
- var length = Math.min(fromParts.length, toParts.length);
21928
- var samePartsLength = length;
21929
- for (var i = 0; i < length; i++) {
21930
- if (fromParts[i] !== toParts[i]) {
21931
- samePartsLength = i;
21932
- break;
21933
- }
21934
- }
21935
-
21936
- var outputParts = [];
21937
- for (var i = samePartsLength; i < fromParts.length; i++) {
21938
- outputParts.push('..');
21939
- }
21940
-
21941
- outputParts = outputParts.concat(toParts.slice(samePartsLength));
21942
-
21943
- return outputParts.join('/');
21944
- };
21945
-
21946
- exports.sep = '/';
21947
- exports.delimiter = ':';
21948
-
21949
- exports.dirname = function (path) {
21950
- if (typeof path !== 'string') path = path + '';
21951
- if (path.length === 0) return '.';
21952
- var code = path.charCodeAt(0);
21953
- var hasRoot = code === 47 /*/*/;
21954
- var end = -1;
21955
- var matchedSlash = true;
21956
- for (var i = path.length - 1; i >= 1; --i) {
21957
- code = path.charCodeAt(i);
21958
- if (code === 47 /*/*/) {
21959
- if (!matchedSlash) {
21960
- end = i;
21961
- break;
21962
- }
21963
- } else {
21964
- // We saw the first non-path separator
21965
- matchedSlash = false;
21966
- }
21967
- }
21968
-
21969
- if (end === -1) return hasRoot ? '/' : '.';
21970
- if (hasRoot && end === 1) {
21971
- // return '//';
21972
- // Backwards-compat fix:
21973
- return '/';
21974
- }
21975
- return path.slice(0, end);
21976
- };
21977
-
21978
- function basename(path) {
21979
- if (typeof path !== 'string') path = path + '';
21980
-
21981
- var start = 0;
21982
- var end = -1;
21983
- var matchedSlash = true;
21984
- var i;
21985
-
21986
- for (i = path.length - 1; i >= 0; --i) {
21987
- if (path.charCodeAt(i) === 47 /*/*/) {
21988
- // If we reached a path separator that was not part of a set of path
21989
- // separators at the end of the string, stop now
21990
- if (!matchedSlash) {
21991
- start = i + 1;
21992
- break;
21993
- }
21994
- } else if (end === -1) {
21995
- // We saw the first non-path separator, mark this as the end of our
21996
- // path component
21997
- matchedSlash = false;
21998
- end = i + 1;
21999
- }
22000
- }
22001
-
22002
- if (end === -1) return '';
22003
- return path.slice(start, end);
22004
- }
22005
-
22006
- // Uses a mixed approach for backwards-compatibility, as ext behavior changed
22007
- // in new Node.js versions, so only basename() above is backported here
22008
- exports.basename = function (path, ext) {
22009
- var f = basename(path);
22010
- if (ext && f.substr(-1 * ext.length) === ext) {
22011
- f = f.substr(0, f.length - ext.length);
22012
- }
22013
- return f;
22014
- };
22015
-
22016
- exports.extname = function (path) {
22017
- if (typeof path !== 'string') path = path + '';
22018
- var startDot = -1;
22019
- var startPart = 0;
22020
- var end = -1;
22021
- var matchedSlash = true;
22022
- // Track the state of characters (if any) we see before our first dot and
22023
- // after any path separator we find
22024
- var preDotState = 0;
22025
- for (var i = path.length - 1; i >= 0; --i) {
22026
- var code = path.charCodeAt(i);
22027
- if (code === 47 /*/*/) {
22028
- // If we reached a path separator that was not part of a set of path
22029
- // separators at the end of the string, stop now
22030
- if (!matchedSlash) {
22031
- startPart = i + 1;
22032
- break;
22033
- }
22034
- continue;
22035
- }
22036
- if (end === -1) {
22037
- // We saw the first non-path separator, mark this as the end of our
22038
- // extension
22039
- matchedSlash = false;
22040
- end = i + 1;
22041
- }
22042
- if (code === 46 /*.*/) {
22043
- // If this is our first dot, mark it as the start of our extension
22044
- if (startDot === -1)
22045
- startDot = i;
22046
- else if (preDotState !== 1)
22047
- preDotState = 1;
22048
- } else if (startDot !== -1) {
22049
- // We saw a non-dot and non-path separator before our dot, so we should
22050
- // have a good chance at having a non-empty extension
22051
- preDotState = -1;
22052
- }
22053
- }
22054
-
22055
- if (startDot === -1 || end === -1 ||
22056
- // We saw a non-dot character immediately before the dot
22057
- preDotState === 0 ||
22058
- // The (right-most) trimmed path component is exactly '..'
22059
- preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
22060
- return '';
22061
- }
22062
- return path.slice(startDot, end);
22063
- };
22064
-
22065
- function filter (xs, f) {
22066
- if (xs.filter) return xs.filter(f);
22067
- var res = [];
22068
- for (var i = 0; i < xs.length; i++) {
22069
- if (f(xs[i], i, xs)) res.push(xs[i]);
22070
- }
22071
- return res;
22072
- }
22073
-
22074
- // String.prototype.substr - negative index don't work in IE8
22075
- var substr = 'ab'.substr(-1) === 'b'
22076
- ? function (str, start, len) { return str.substr(start, len) }
22077
- : function (str, start, len) {
22078
- if (start < 0) start = str.length + start;
22079
- return str.substr(start, len);
22080
- }
22081
- ;
22082
-
22083
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
22084
-
22085
- /***/ }),
22086
-
22087
- /***/ "b727":
22088
- /***/ (function(module, exports, __webpack_require__) {
22089
-
22090
- "use strict";
22091
-
22092
- var bind = __webpack_require__("0366");
22093
- var uncurryThis = __webpack_require__("e330");
22094
- var IndexedObject = __webpack_require__("44ad");
22095
- var toObject = __webpack_require__("7b0b");
22096
- var lengthOfArrayLike = __webpack_require__("07fa");
22097
- var arraySpeciesCreate = __webpack_require__("65f0");
22098
-
22099
- var push = uncurryThis([].push);
22100
-
22101
- // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
22102
- var createMethod = function (TYPE) {
22103
- var IS_MAP = TYPE === 1;
22104
- var IS_FILTER = TYPE === 2;
22105
- var IS_SOME = TYPE === 3;
22106
- var IS_EVERY = TYPE === 4;
22107
- var IS_FIND_INDEX = TYPE === 6;
22108
- var IS_FILTER_REJECT = TYPE === 7;
22109
- var NO_HOLES = TYPE === 5 || IS_FIND_INDEX;
22110
- return function ($this, callbackfn, that, specificCreate) {
22111
- var O = toObject($this);
22112
- var self = IndexedObject(O);
22113
- var length = lengthOfArrayLike(self);
22114
- var boundFunction = bind(callbackfn, that);
22115
- var index = 0;
22116
- var create = specificCreate || arraySpeciesCreate;
22117
- var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
22118
- var value, result;
22119
- for (;length > index; index++) if (NO_HOLES || index in self) {
22120
- value = self[index];
22121
- result = boundFunction(value, index, O);
22122
- if (TYPE) {
22123
- if (IS_MAP) target[index] = result; // map
22124
- else if (result) switch (TYPE) {
22125
- case 3: return true; // some
22126
- case 5: return value; // find
22127
- case 6: return index; // findIndex
22128
- case 2: push(target, value); // filter
22129
- } else switch (TYPE) {
22130
- case 4: return false; // every
22131
- case 7: push(target, value); // filterReject
22132
- }
22133
- }
22134
- }
22135
- return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
22136
- };
22137
- };
22138
-
22139
- module.exports = {
22140
- // `Array.prototype.forEach` method
22141
- // https://tc39.es/ecma262/#sec-array.prototype.foreach
22142
- forEach: createMethod(0),
22143
- // `Array.prototype.map` method
22144
- // https://tc39.es/ecma262/#sec-array.prototype.map
22145
- map: createMethod(1),
22146
- // `Array.prototype.filter` method
22147
- // https://tc39.es/ecma262/#sec-array.prototype.filter
22148
- filter: createMethod(2),
22149
- // `Array.prototype.some` method
22150
- // https://tc39.es/ecma262/#sec-array.prototype.some
22151
- some: createMethod(3),
22152
- // `Array.prototype.every` method
22153
- // https://tc39.es/ecma262/#sec-array.prototype.every
22154
- every: createMethod(4),
22155
- // `Array.prototype.find` method
22156
- // https://tc39.es/ecma262/#sec-array.prototype.find
22157
- find: createMethod(5),
22158
- // `Array.prototype.findIndex` method
22159
- // https://tc39.es/ecma262/#sec-array.prototype.findIndex
22160
- findIndex: createMethod(6),
22161
- // `Array.prototype.filterReject` method
22162
- // https://github.com/tc39/proposal-array-filtering
22163
- filterReject: createMethod(7)
22164
- };
22165
-
22166
-
22167
- /***/ }),
22168
-
22169
- /***/ "b7e9":
22170
- /***/ (function(module, exports, __webpack_require__) {
22171
-
22172
- //! moment.js locale configuration
22173
- //! locale : English (Singapore) [en-sg]
22174
- //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
22175
-
22176
- ;(function (global, factory) {
22177
- true ? factory(__webpack_require__("c1df")) :
22178
- undefined
22179
- }(this, (function (moment) { 'use strict';
22180
-
22181
- //! moment.js locale configuration
21816
+ //! moment.js locale configuration
22182
21817
 
22183
21818
  var enSg = moment.defineLocale('en-sg', {
22184
21819
  months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
@@ -28983,10 +28618,10 @@ var SHARED = '__core-js_shared__';
28983
28618
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
28984
28619
 
28985
28620
  (store.versions || (store.versions = [])).push({
28986
- version: '3.36.1',
28621
+ version: '3.36.0',
28987
28622
  mode: IS_PURE ? 'pure' : 'global',
28988
28623
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
28989
- license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
28624
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
28990
28625
  source: 'https://github.com/zloirock/core-js'
28991
28626
  });
28992
28627
 
@@ -30007,7 +29642,9 @@ var gOPD = __webpack_require__("2aa9");
30007
29642
  var $TypeError = __webpack_require__("0d25");
30008
29643
  var $floor = GetIntrinsic('%Math.floor%');
30009
29644
 
30010
- /** @type {import('.')} */
29645
+ /** @typedef {(...args: unknown[]) => unknown} Func */
29646
+
29647
+ /** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
30011
29648
  module.exports = function setFunctionLength(fn, length) {
30012
29649
  if (typeof fn !== 'function') {
30013
29650
  throw new $TypeError('`fn` is not a function');
@@ -30543,8 +30180,7 @@ defineWellKnownSymbol('iterator');
30543
30180
 
30544
30181
  /* eslint-disable no-proto -- safe */
30545
30182
  var uncurryThisAccessor = __webpack_require__("7282");
30546
- var isObject = __webpack_require__("861d");
30547
- var requireObjectCoercible = __webpack_require__("1d80");
30183
+ var anObject = __webpack_require__("825a");
30548
30184
  var aPossiblePrototype = __webpack_require__("3bbe");
30549
30185
 
30550
30186
  // `Object.setPrototypeOf` method
@@ -30561,9 +30197,8 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
30561
30197
  CORRECT_SETTER = test instanceof Array;
30562
30198
  } catch (error) { /* empty */ }
30563
30199
  return function setPrototypeOf(O, proto) {
30564
- requireObjectCoercible(O);
30200
+ anObject(O);
30565
30201
  aPossiblePrototype(proto);
30566
- if (!isObject(O)) return O;
30567
30202
  if (CORRECT_SETTER) setter(O, proto);
30568
30203
  else O.__proto__ = proto;
30569
30204
  return O;
@@ -31837,104 +31472,414 @@ module.exports = RangeError;
31837
31472
 
31838
31473
  /***/ }),
31839
31474
 
31840
- /***/ "dcc3":
31841
- /***/ (function(module, exports, __webpack_require__) {
31475
+ /***/ "dcc3":
31476
+ /***/ (function(module, exports, __webpack_require__) {
31477
+
31478
+ "use strict";
31479
+
31480
+ var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
31481
+ var create = __webpack_require__("7c73");
31482
+ var createPropertyDescriptor = __webpack_require__("5c6c");
31483
+ var setToStringTag = __webpack_require__("d44e");
31484
+ var Iterators = __webpack_require__("3f8c");
31485
+
31486
+ var returnThis = function () { return this; };
31487
+
31488
+ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31489
+ var TO_STRING_TAG = NAME + ' Iterator';
31490
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
31491
+ setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
31492
+ Iterators[TO_STRING_TAG] = returnThis;
31493
+ return IteratorConstructor;
31494
+ };
31495
+
31496
+
31497
+ /***/ }),
31498
+
31499
+ /***/ "dd0e":
31500
+ /***/ (function(module, exports, __webpack_require__) {
31501
+
31502
+ // extracted by mini-css-extract-plugin
31503
+
31504
+ /***/ }),
31505
+
31506
+ /***/ "ddb0":
31507
+ /***/ (function(module, exports, __webpack_require__) {
31508
+
31509
+ "use strict";
31510
+
31511
+ var global = __webpack_require__("da84");
31512
+ var DOMIterables = __webpack_require__("fdbc");
31513
+ var DOMTokenListPrototype = __webpack_require__("785a");
31514
+ var ArrayIteratorMethods = __webpack_require__("e260");
31515
+ var createNonEnumerableProperty = __webpack_require__("9112");
31516
+ var setToStringTag = __webpack_require__("d44e");
31517
+ var wellKnownSymbol = __webpack_require__("b622");
31518
+
31519
+ var ITERATOR = wellKnownSymbol('iterator');
31520
+ var ArrayValues = ArrayIteratorMethods.values;
31521
+
31522
+ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
31523
+ if (CollectionPrototype) {
31524
+ // some Chrome versions have non-configurable methods on DOMTokenList
31525
+ if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
31526
+ createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
31527
+ } catch (error) {
31528
+ CollectionPrototype[ITERATOR] = ArrayValues;
31529
+ }
31530
+ setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
31531
+ if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
31532
+ // some Chrome versions have non-configurable methods on DOMTokenList
31533
+ if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
31534
+ createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
31535
+ } catch (error) {
31536
+ CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
31537
+ }
31538
+ }
31539
+ }
31540
+ };
31541
+
31542
+ for (var COLLECTION_NAME in DOMIterables) {
31543
+ handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
31544
+ }
31545
+
31546
+ handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
31547
+
31548
+
31549
+ /***/ }),
31550
+
31551
+ /***/ "df51":
31552
+ /***/ (function(module, exports, __webpack_require__) {
31553
+
31554
+ // extracted by mini-css-extract-plugin
31555
+
31556
+ /***/ }),
31557
+
31558
+ /***/ "df75":
31559
+ /***/ (function(module, exports, __webpack_require__) {
31560
+
31561
+ "use strict";
31562
+
31563
+ var internalObjectKeys = __webpack_require__("ca84");
31564
+ var enumBugKeys = __webpack_require__("7839");
31565
+
31566
+ // `Object.keys` method
31567
+ // https://tc39.es/ecma262/#sec-object.keys
31568
+ // eslint-disable-next-line es/no-object-keys -- safe
31569
+ module.exports = Object.keys || function keys(O) {
31570
+ return internalObjectKeys(O, enumBugKeys);
31571
+ };
31572
+
31573
+
31574
+ /***/ }),
31575
+
31576
+ /***/ "df7c":
31577
+ /***/ (function(module, exports, __webpack_require__) {
31578
+
31579
+ /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
31580
+ // backported and transplited with Babel, with backwards-compat fixes
31581
+
31582
+ // Copyright Joyent, Inc. and other Node contributors.
31583
+ //
31584
+ // Permission is hereby granted, free of charge, to any person obtaining a
31585
+ // copy of this software and associated documentation files (the
31586
+ // "Software"), to deal in the Software without restriction, including
31587
+ // without limitation the rights to use, copy, modify, merge, publish,
31588
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
31589
+ // persons to whom the Software is furnished to do so, subject to the
31590
+ // following conditions:
31591
+ //
31592
+ // The above copyright notice and this permission notice shall be included
31593
+ // in all copies or substantial portions of the Software.
31594
+ //
31595
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
31596
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31597
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
31598
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31599
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
31600
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31601
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
31602
+
31603
+ // resolves . and .. elements in a path array with directory names there
31604
+ // must be no slashes, empty elements, or device names (c:\) in the array
31605
+ // (so also no leading and trailing slashes - it does not distinguish
31606
+ // relative and absolute paths)
31607
+ function normalizeArray(parts, allowAboveRoot) {
31608
+ // if the path tries to go above the root, `up` ends up > 0
31609
+ var up = 0;
31610
+ for (var i = parts.length - 1; i >= 0; i--) {
31611
+ var last = parts[i];
31612
+ if (last === '.') {
31613
+ parts.splice(i, 1);
31614
+ } else if (last === '..') {
31615
+ parts.splice(i, 1);
31616
+ up++;
31617
+ } else if (up) {
31618
+ parts.splice(i, 1);
31619
+ up--;
31620
+ }
31621
+ }
31622
+
31623
+ // if the path is allowed to go above the root, restore leading ..s
31624
+ if (allowAboveRoot) {
31625
+ for (; up--; up) {
31626
+ parts.unshift('..');
31627
+ }
31628
+ }
31629
+
31630
+ return parts;
31631
+ }
31632
+
31633
+ // path.resolve([from ...], to)
31634
+ // posix version
31635
+ exports.resolve = function() {
31636
+ var resolvedPath = '',
31637
+ resolvedAbsolute = false;
31638
+
31639
+ for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
31640
+ var path = (i >= 0) ? arguments[i] : process.cwd();
31641
+
31642
+ // Skip empty and invalid entries
31643
+ if (typeof path !== 'string') {
31644
+ throw new TypeError('Arguments to path.resolve must be strings');
31645
+ } else if (!path) {
31646
+ continue;
31647
+ }
31648
+
31649
+ resolvedPath = path + '/' + resolvedPath;
31650
+ resolvedAbsolute = path.charAt(0) === '/';
31651
+ }
31652
+
31653
+ // At this point the path should be resolved to a full absolute path, but
31654
+ // handle relative paths to be safe (might happen when process.cwd() fails)
31655
+
31656
+ // Normalize the path
31657
+ resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
31658
+ return !!p;
31659
+ }), !resolvedAbsolute).join('/');
31660
+
31661
+ return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
31662
+ };
31663
+
31664
+ // path.normalize(path)
31665
+ // posix version
31666
+ exports.normalize = function(path) {
31667
+ var isAbsolute = exports.isAbsolute(path),
31668
+ trailingSlash = substr(path, -1) === '/';
31669
+
31670
+ // Normalize the path
31671
+ path = normalizeArray(filter(path.split('/'), function(p) {
31672
+ return !!p;
31673
+ }), !isAbsolute).join('/');
31674
+
31675
+ if (!path && !isAbsolute) {
31676
+ path = '.';
31677
+ }
31678
+ if (path && trailingSlash) {
31679
+ path += '/';
31680
+ }
31681
+
31682
+ return (isAbsolute ? '/' : '') + path;
31683
+ };
31842
31684
 
31843
- "use strict";
31685
+ // posix version
31686
+ exports.isAbsolute = function(path) {
31687
+ return path.charAt(0) === '/';
31688
+ };
31844
31689
 
31845
- var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
31846
- var create = __webpack_require__("7c73");
31847
- var createPropertyDescriptor = __webpack_require__("5c6c");
31848
- var setToStringTag = __webpack_require__("d44e");
31849
- var Iterators = __webpack_require__("3f8c");
31690
+ // posix version
31691
+ exports.join = function() {
31692
+ var paths = Array.prototype.slice.call(arguments, 0);
31693
+ return exports.normalize(filter(paths, function(p, index) {
31694
+ if (typeof p !== 'string') {
31695
+ throw new TypeError('Arguments to path.join must be strings');
31696
+ }
31697
+ return p;
31698
+ }).join('/'));
31699
+ };
31850
31700
 
31851
- var returnThis = function () { return this; };
31852
31701
 
31853
- module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31854
- var TO_STRING_TAG = NAME + ' Iterator';
31855
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
31856
- setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
31857
- Iterators[TO_STRING_TAG] = returnThis;
31858
- return IteratorConstructor;
31859
- };
31702
+ // path.relative(from, to)
31703
+ // posix version
31704
+ exports.relative = function(from, to) {
31705
+ from = exports.resolve(from).substr(1);
31706
+ to = exports.resolve(to).substr(1);
31860
31707
 
31708
+ function trim(arr) {
31709
+ var start = 0;
31710
+ for (; start < arr.length; start++) {
31711
+ if (arr[start] !== '') break;
31712
+ }
31861
31713
 
31862
- /***/ }),
31714
+ var end = arr.length - 1;
31715
+ for (; end >= 0; end--) {
31716
+ if (arr[end] !== '') break;
31717
+ }
31863
31718
 
31864
- /***/ "dd0e":
31865
- /***/ (function(module, exports, __webpack_require__) {
31719
+ if (start > end) return [];
31720
+ return arr.slice(start, end - start + 1);
31721
+ }
31866
31722
 
31867
- // extracted by mini-css-extract-plugin
31723
+ var fromParts = trim(from.split('/'));
31724
+ var toParts = trim(to.split('/'));
31868
31725
 
31869
- /***/ }),
31726
+ var length = Math.min(fromParts.length, toParts.length);
31727
+ var samePartsLength = length;
31728
+ for (var i = 0; i < length; i++) {
31729
+ if (fromParts[i] !== toParts[i]) {
31730
+ samePartsLength = i;
31731
+ break;
31732
+ }
31733
+ }
31870
31734
 
31871
- /***/ "ddb0":
31872
- /***/ (function(module, exports, __webpack_require__) {
31735
+ var outputParts = [];
31736
+ for (var i = samePartsLength; i < fromParts.length; i++) {
31737
+ outputParts.push('..');
31738
+ }
31873
31739
 
31874
- "use strict";
31740
+ outputParts = outputParts.concat(toParts.slice(samePartsLength));
31875
31741
 
31876
- var global = __webpack_require__("da84");
31877
- var DOMIterables = __webpack_require__("fdbc");
31878
- var DOMTokenListPrototype = __webpack_require__("785a");
31879
- var ArrayIteratorMethods = __webpack_require__("e260");
31880
- var createNonEnumerableProperty = __webpack_require__("9112");
31881
- var setToStringTag = __webpack_require__("d44e");
31882
- var wellKnownSymbol = __webpack_require__("b622");
31742
+ return outputParts.join('/');
31743
+ };
31883
31744
 
31884
- var ITERATOR = wellKnownSymbol('iterator');
31885
- var ArrayValues = ArrayIteratorMethods.values;
31745
+ exports.sep = '/';
31746
+ exports.delimiter = ':';
31886
31747
 
31887
- var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
31888
- if (CollectionPrototype) {
31889
- // some Chrome versions have non-configurable methods on DOMTokenList
31890
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
31891
- createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
31892
- } catch (error) {
31893
- CollectionPrototype[ITERATOR] = ArrayValues;
31894
- }
31895
- setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
31896
- if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
31897
- // some Chrome versions have non-configurable methods on DOMTokenList
31898
- if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
31899
- createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
31900
- } catch (error) {
31901
- CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
31902
- }
31748
+ exports.dirname = function (path) {
31749
+ if (typeof path !== 'string') path = path + '';
31750
+ if (path.length === 0) return '.';
31751
+ var code = path.charCodeAt(0);
31752
+ var hasRoot = code === 47 /*/*/;
31753
+ var end = -1;
31754
+ var matchedSlash = true;
31755
+ for (var i = path.length - 1; i >= 1; --i) {
31756
+ code = path.charCodeAt(i);
31757
+ if (code === 47 /*/*/) {
31758
+ if (!matchedSlash) {
31759
+ end = i;
31760
+ break;
31761
+ }
31762
+ } else {
31763
+ // We saw the first non-path separator
31764
+ matchedSlash = false;
31903
31765
  }
31904
31766
  }
31905
- };
31906
-
31907
- for (var COLLECTION_NAME in DOMIterables) {
31908
- handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
31909
- }
31910
31767
 
31911
- handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
31768
+ if (end === -1) return hasRoot ? '/' : '.';
31769
+ if (hasRoot && end === 1) {
31770
+ // return '//';
31771
+ // Backwards-compat fix:
31772
+ return '/';
31773
+ }
31774
+ return path.slice(0, end);
31775
+ };
31912
31776
 
31777
+ function basename(path) {
31778
+ if (typeof path !== 'string') path = path + '';
31913
31779
 
31914
- /***/ }),
31780
+ var start = 0;
31781
+ var end = -1;
31782
+ var matchedSlash = true;
31783
+ var i;
31915
31784
 
31916
- /***/ "df51":
31917
- /***/ (function(module, exports, __webpack_require__) {
31785
+ for (i = path.length - 1; i >= 0; --i) {
31786
+ if (path.charCodeAt(i) === 47 /*/*/) {
31787
+ // If we reached a path separator that was not part of a set of path
31788
+ // separators at the end of the string, stop now
31789
+ if (!matchedSlash) {
31790
+ start = i + 1;
31791
+ break;
31792
+ }
31793
+ } else if (end === -1) {
31794
+ // We saw the first non-path separator, mark this as the end of our
31795
+ // path component
31796
+ matchedSlash = false;
31797
+ end = i + 1;
31798
+ }
31799
+ }
31918
31800
 
31919
- // extracted by mini-css-extract-plugin
31801
+ if (end === -1) return '';
31802
+ return path.slice(start, end);
31803
+ }
31920
31804
 
31921
- /***/ }),
31805
+ // Uses a mixed approach for backwards-compatibility, as ext behavior changed
31806
+ // in new Node.js versions, so only basename() above is backported here
31807
+ exports.basename = function (path, ext) {
31808
+ var f = basename(path);
31809
+ if (ext && f.substr(-1 * ext.length) === ext) {
31810
+ f = f.substr(0, f.length - ext.length);
31811
+ }
31812
+ return f;
31813
+ };
31922
31814
 
31923
- /***/ "df75":
31924
- /***/ (function(module, exports, __webpack_require__) {
31815
+ exports.extname = function (path) {
31816
+ if (typeof path !== 'string') path = path + '';
31817
+ var startDot = -1;
31818
+ var startPart = 0;
31819
+ var end = -1;
31820
+ var matchedSlash = true;
31821
+ // Track the state of characters (if any) we see before our first dot and
31822
+ // after any path separator we find
31823
+ var preDotState = 0;
31824
+ for (var i = path.length - 1; i >= 0; --i) {
31825
+ var code = path.charCodeAt(i);
31826
+ if (code === 47 /*/*/) {
31827
+ // If we reached a path separator that was not part of a set of path
31828
+ // separators at the end of the string, stop now
31829
+ if (!matchedSlash) {
31830
+ startPart = i + 1;
31831
+ break;
31832
+ }
31833
+ continue;
31834
+ }
31835
+ if (end === -1) {
31836
+ // We saw the first non-path separator, mark this as the end of our
31837
+ // extension
31838
+ matchedSlash = false;
31839
+ end = i + 1;
31840
+ }
31841
+ if (code === 46 /*.*/) {
31842
+ // If this is our first dot, mark it as the start of our extension
31843
+ if (startDot === -1)
31844
+ startDot = i;
31845
+ else if (preDotState !== 1)
31846
+ preDotState = 1;
31847
+ } else if (startDot !== -1) {
31848
+ // We saw a non-dot and non-path separator before our dot, so we should
31849
+ // have a good chance at having a non-empty extension
31850
+ preDotState = -1;
31851
+ }
31852
+ }
31925
31853
 
31926
- "use strict";
31854
+ if (startDot === -1 || end === -1 ||
31855
+ // We saw a non-dot character immediately before the dot
31856
+ preDotState === 0 ||
31857
+ // The (right-most) trimmed path component is exactly '..'
31858
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
31859
+ return '';
31860
+ }
31861
+ return path.slice(startDot, end);
31862
+ };
31927
31863
 
31928
- var internalObjectKeys = __webpack_require__("ca84");
31929
- var enumBugKeys = __webpack_require__("7839");
31864
+ function filter (xs, f) {
31865
+ if (xs.filter) return xs.filter(f);
31866
+ var res = [];
31867
+ for (var i = 0; i < xs.length; i++) {
31868
+ if (f(xs[i], i, xs)) res.push(xs[i]);
31869
+ }
31870
+ return res;
31871
+ }
31930
31872
 
31931
- // `Object.keys` method
31932
- // https://tc39.es/ecma262/#sec-object.keys
31933
- // eslint-disable-next-line es/no-object-keys -- safe
31934
- module.exports = Object.keys || function keys(O) {
31935
- return internalObjectKeys(O, enumBugKeys);
31936
- };
31873
+ // String.prototype.substr - negative index don't work in IE8
31874
+ var substr = 'ab'.substr(-1) === 'b'
31875
+ ? function (str, start, len) { return str.substr(start, len) }
31876
+ : function (str, start, len) {
31877
+ if (start < 0) start = str.length + start;
31878
+ return str.substr(start, len);
31879
+ }
31880
+ ;
31937
31881
 
31882
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
31938
31883
 
31939
31884
  /***/ }),
31940
31885
 
@@ -33963,7 +33908,7 @@ var web_dom_collections_for_each = __webpack_require__("159b");
33963
33908
  // EXTERNAL MODULE: ./package/antanklayout/src/index.scss
33964
33909
  var antanklayout_src = __webpack_require__("f925");
33965
33910
 
33966
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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=efb6dc02&scoped=true
33911
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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=efb6dc02&scoped=true
33967
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"},[_vm._t("default")],2)],1)],1)}
33968
33913
  var staticRenderFns = []
33969
33914
 
@@ -34003,7 +33948,7 @@ var web_url_search_params_has = __webpack_require__("271a");
34003
33948
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.size.js
34004
33949
  var web_url_search_params_size = __webpack_require__("5494");
34005
33950
 
34006
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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
33951
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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
34007
33952
  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"},[(
34008
33953
  _vm.projectCodeName &&
34009
33954
  _vm.projectCodeName.includes('选座票务系统') &&
@@ -34155,14 +34100,14 @@ var component = normalizeComponent(
34155
34100
  // CONCATENATED MODULE: ./package/antanklayout/src/components/footerMenu/index.js
34156
34101
 
34157
34102
  /* harmony default export */ var footerMenu = (footerMenu_src);
34158
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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=e5aef3ea&scoped=true
34103
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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=e5aef3ea&scoped=true
34159
34104
  var srcvue_type_template_id_e5aef3ea_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)}
34160
34105
  var srcvue_type_template_id_e5aef3ea_scoped_true_staticRenderFns = []
34161
34106
 
34162
34107
 
34163
34108
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/src/index.vue?vue&type=template&id=e5aef3ea&scoped=true
34164
34109
 
34165
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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=bcdcecf2&scoped=true
34110
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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=bcdcecf2&scoped=true
34166
34111
  var srcvue_type_template_id_bcdcecf2_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 [(
34167
34112
  item.sysProjectLinks &&
34168
34113
  item.sysProjectLinks.length > 0 &&
@@ -34189,6 +34134,12 @@ function _classCallCheck(instance, Constructor) {
34189
34134
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
34190
34135
  var esm_typeof = __webpack_require__("53ca");
34191
34136
 
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
+
34192
34143
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.to-primitive.js
34193
34144
  var es_symbol_to_primitive = __webpack_require__("8172");
34194
34145
 
@@ -34204,6 +34155,9 @@ var es_number_constructor = __webpack_require__("a9e3");
34204
34155
 
34205
34156
 
34206
34157
 
34158
+
34159
+
34160
+
34207
34161
  function toPrimitive(t, r) {
34208
34162
  if ("object" != Object(esm_typeof["a" /* default */])(t) || !t) return t;
34209
34163
  var e = t[Symbol.toPrimitive];
@@ -34219,7 +34173,7 @@ function toPrimitive(t, r) {
34219
34173
 
34220
34174
  function toPropertyKey(t) {
34221
34175
  var i = toPrimitive(t, "string");
34222
- return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : i + "";
34176
+ return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : String(i);
34223
34177
  }
34224
34178
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/createClass.js
34225
34179
 
@@ -34255,7 +34209,7 @@ var local_LocalCache = /*#__PURE__*/function () {
34255
34209
  function LocalCache() {
34256
34210
  _classCallCheck(this, LocalCache);
34257
34211
  }
34258
- return _createClass(LocalCache, [{
34212
+ _createClass(LocalCache, [{
34259
34213
  key: "setCache",
34260
34214
  value:
34261
34215
  // 添加
@@ -34285,6 +34239,7 @@ var local_LocalCache = /*#__PURE__*/function () {
34285
34239
  window.localStorage.clear();
34286
34240
  }
34287
34241
  }]);
34242
+ return LocalCache;
34288
34243
  }();
34289
34244
  /* harmony default export */ var local = (new local_LocalCache());
34290
34245
  // 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
@@ -34400,7 +34355,7 @@ var src_component = normalizeComponent(
34400
34355
  // CONCATENATED MODULE: ./package/antanklayout/src/components/project/index.js
34401
34356
 
34402
34357
  /* harmony default export */ var project = (project_src);
34403
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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
34358
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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
34404
34359
  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'))})])}
34405
34360
  var CollapseIconvue_type_template_id_c8a88db2_scoped_true_staticRenderFns = []
34406
34361
 
@@ -34586,7 +34541,7 @@ var left_src_component = normalizeComponent(
34586
34541
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/index.js
34587
34542
 
34588
34543
  /* harmony default export */ var left = (left_src);
34589
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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
34544
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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
34590
34545
  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("退出")])])])}
34591
34546
  var srcvue_type_template_id_e2225378_scoped_true_staticRenderFns = []
34592
34547
 
@@ -34690,12 +34645,12 @@ var right_src_component = normalizeComponent(
34690
34645
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/right/index.js
34691
34646
 
34692
34647
  /* harmony default export */ var right = (right_src);
34693
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-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=6a811086
34694
- var srcvue_type_template_id_6a811086_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)}
34695
- var srcvue_type_template_id_6a811086_staticRenderFns = []
34648
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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=18fc4f56
34649
+ var srcvue_type_template_id_18fc4f56_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
+ var srcvue_type_template_id_18fc4f56_staticRenderFns = []
34696
34651
 
34697
34652
 
34698
- // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=template&id=6a811086
34653
+ // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=template&id=18fc4f56
34699
34654
 
34700
34655
  // 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/SubMenu/src/index.vue?vue&type=script&lang=js
34701
34656
 
@@ -34849,9 +34804,19 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34849
34804
  var pageUrl = "#/mainrouter?projectLinkCode=".concat(code, "&theme=").concat(this.engine.theme.class, "&projectCodeId=").concat(code, "&pageUrl=").concat(encodeURIComponent(subItem.path));
34850
34805
  if (subItem.targetBlank === 'Y') window.open("".concat(plocation.origin).concat(plocation.pathname).concat(pageUrl), '_blank');else top.location.href = "".concat(plocation.origin).concat(plocation.pathname).concat(pageUrl);
34851
34806
  } else {
34807
+ var _top2, _top3;
34852
34808
  //走本地路由
34853
34809
  this.$router.push(subItem.path.split('#')[1]);
34854
34810
 
34811
+ //本地路由变更后,浏览器地址也要同步变更
34812
+ var _plocation = (_top2 = top) !== null && _top2 !== void 0 && _top2.location ? top.location : location;
34813
+ var _pageUrl = "#/mainrouter?projectLinkCode=".concat(code, "&theme=").concat(this.engine.theme.class, "&projectCodeId=").concat(code, "&pageUrl=").concat(encodeURIComponent(subItem.path));
34814
+ if (subItem.targetUrl) {
34815
+ _pageUrl = "".concat(_pageUrl, "&otherTargetUrl=").concat(subItem.targetUrl);
34816
+ }
34817
+ var his = (_top3 = top) !== null && _top3 !== void 0 && _top3.history ? top.history : history;
34818
+ his.replaceState({}, "", "".concat(_plocation.origin).concat(_plocation.pathname).concat(_pageUrl));
34819
+
34855
34820
  //通知菜单调度层,路由已经变更
34856
34821
  this.$emit('change', subItem, true);
34857
34822
  }
@@ -34860,8 +34825,8 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34860
34825
  });
34861
34826
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=script&lang=js
34862
34827
  /* harmony default export */ var components_SubMenu_srcvue_type_script_lang_js = (SubMenu_srcvue_type_script_lang_js);
34863
- // EXTERNAL MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=style&index=0&id=6a811086&prod&lang=scss
34864
- var srcvue_type_style_index_0_id_6a811086_prod_lang_scss = __webpack_require__("507f");
34828
+ // EXTERNAL MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=style&index=0&id=18fc4f56&prod&lang=scss
34829
+ var srcvue_type_style_index_0_id_18fc4f56_prod_lang_scss = __webpack_require__("a320");
34865
34830
 
34866
34831
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue
34867
34832
 
@@ -34874,8 +34839,8 @@ var srcvue_type_style_index_0_id_6a811086_prod_lang_scss = __webpack_require__("
34874
34839
 
34875
34840
  var SubMenu_src_component = normalizeComponent(
34876
34841
  components_SubMenu_srcvue_type_script_lang_js,
34877
- srcvue_type_template_id_6a811086_render,
34878
- srcvue_type_template_id_6a811086_staticRenderFns,
34842
+ srcvue_type_template_id_18fc4f56_render,
34843
+ srcvue_type_template_id_18fc4f56_staticRenderFns,
34879
34844
  false,
34880
34845
  null,
34881
34846
  null,
@@ -34887,7 +34852,7 @@ var SubMenu_src_component = normalizeComponent(
34887
34852
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/index.js
34888
34853
 
34889
34854
  /* harmony default export */ var SubMenu = (SubMenu_src);
34890
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e156734a-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./package/antanklayout/src/components/skeleton/src/index.vue?vue&type=template&id=e5fc6216&scoped=true
34855
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"2957a947-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
34891
34856
  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()}
34892
34857
  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"}})])])])])}]
34893
34858