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.
@@ -7911,13 +7911,10 @@ var defaultFormat = formats['default'];
7911
7911
  var defaults = {
7912
7912
  addQueryPrefix: false,
7913
7913
  allowDots: false,
7914
- allowEmptyArrays: false,
7915
- arrayFormat: 'indices',
7916
7914
  charset: 'utf-8',
7917
7915
  charsetSentinel: false,
7918
7916
  delimiter: '&',
7919
7917
  encode: true,
7920
- encodeDotInKeys: false,
7921
7918
  encoder: utils.encode,
7922
7919
  encodeValuesOnly: false,
7923
7920
  format: defaultFormat,
@@ -7946,10 +7943,8 @@ var stringify = function stringify(
7946
7943
  prefix,
7947
7944
  generateArrayPrefix,
7948
7945
  commaRoundTrip,
7949
- allowEmptyArrays,
7950
7946
  strictNullHandling,
7951
7947
  skipNulls,
7952
- encodeDotInKeys,
7953
7948
  encoder,
7954
7949
  filter,
7955
7950
  sort,
@@ -8031,13 +8026,7 @@ var stringify = function stringify(
8031
8026
  objKeys = sort ? keys.sort(sort) : keys;
8032
8027
  }
8033
8028
 
8034
- var encodedPrefix = encodeDotInKeys ? prefix.replace(/\./g, '%2E') : prefix;
8035
-
8036
- var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? encodedPrefix + '[]' : encodedPrefix;
8037
-
8038
- if (allowEmptyArrays && isArray(obj) && obj.length === 0) {
8039
- return adjustedPrefix + '[]';
8040
- }
8029
+ var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;
8041
8030
 
8042
8031
  for (var j = 0; j < objKeys.length; ++j) {
8043
8032
  var key = objKeys[j];
@@ -8047,10 +8036,9 @@ var stringify = function stringify(
8047
8036
  continue;
8048
8037
  }
8049
8038
 
8050
- var encodedKey = allowDots && encodeDotInKeys ? key.replace(/\./g, '%2E') : key;
8051
8039
  var keyPrefix = isArray(obj)
8052
- ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix
8053
- : adjustedPrefix + (allowDots ? '.' + encodedKey : '[' + encodedKey + ']');
8040
+ ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix, key) : adjustedPrefix
8041
+ : adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');
8054
8042
 
8055
8043
  sideChannel.set(object, step);
8056
8044
  var valueSideChannel = getSideChannel();
@@ -8060,10 +8048,8 @@ var stringify = function stringify(
8060
8048
  keyPrefix,
8061
8049
  generateArrayPrefix,
8062
8050
  commaRoundTrip,
8063
- allowEmptyArrays,
8064
8051
  strictNullHandling,
8065
8052
  skipNulls,
8066
- encodeDotInKeys,
8067
8053
  generateArrayPrefix === 'comma' && encodeValuesOnly && isArray(obj) ? null : encoder,
8068
8054
  filter,
8069
8055
  sort,
@@ -8085,14 +8071,6 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8085
8071
  return defaults;
8086
8072
  }
8087
8073
 
8088
- if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
8089
- throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
8090
- }
8091
-
8092
- if (typeof opts.encodeDotInKeys !== 'undefined' && typeof opts.encodeDotInKeys !== 'boolean') {
8093
- throw new TypeError('`encodeDotInKeys` option can only be `true` or `false`, when provided');
8094
- }
8095
-
8096
8074
  if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') {
8097
8075
  throw new TypeError('Encoder has to be a function.');
8098
8076
  }
@@ -8116,32 +8094,13 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
8116
8094
  filter = opts.filter;
8117
8095
  }
8118
8096
 
8119
- var arrayFormat;
8120
- if (opts.arrayFormat in arrayPrefixGenerators) {
8121
- arrayFormat = opts.arrayFormat;
8122
- } else if ('indices' in opts) {
8123
- arrayFormat = opts.indices ? 'indices' : 'repeat';
8124
- } else {
8125
- arrayFormat = defaults.arrayFormat;
8126
- }
8127
-
8128
- if ('commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8129
- throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8130
- }
8131
-
8132
- var allowDots = typeof opts.allowDots === 'undefined' ? opts.encodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
8133
-
8134
8097
  return {
8135
8098
  addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix,
8136
- allowDots: allowDots,
8137
- allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
8138
- arrayFormat: arrayFormat,
8099
+ allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
8139
8100
  charset: charset,
8140
8101
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
8141
- commaRoundTrip: opts.commaRoundTrip,
8142
8102
  delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter,
8143
8103
  encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode,
8144
- encodeDotInKeys: typeof opts.encodeDotInKeys === 'boolean' ? opts.encodeDotInKeys : defaults.encodeDotInKeys,
8145
8104
  encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,
8146
8105
  encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,
8147
8106
  filter: filter,
@@ -8175,8 +8134,20 @@ module.exports = function (object, opts) {
8175
8134
  return '';
8176
8135
  }
8177
8136
 
8178
- var generateArrayPrefix = arrayPrefixGenerators[options.arrayFormat];
8179
- var commaRoundTrip = generateArrayPrefix === 'comma' && options.commaRoundTrip;
8137
+ var arrayFormat;
8138
+ if (opts && opts.arrayFormat in arrayPrefixGenerators) {
8139
+ arrayFormat = opts.arrayFormat;
8140
+ } else if (opts && 'indices' in opts) {
8141
+ arrayFormat = opts.indices ? 'indices' : 'repeat';
8142
+ } else {
8143
+ arrayFormat = 'indices';
8144
+ }
8145
+
8146
+ var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
8147
+ if (opts && 'commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
8148
+ throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
8149
+ }
8150
+ var commaRoundTrip = generateArrayPrefix === 'comma' && opts && opts.commaRoundTrip;
8180
8151
 
8181
8152
  if (!objKeys) {
8182
8153
  objKeys = Object.keys(obj);
@@ -8198,10 +8169,8 @@ module.exports = function (object, opts) {
8198
8169
  key,
8199
8170
  generateArrayPrefix,
8200
8171
  commaRoundTrip,
8201
- options.allowEmptyArrays,
8202
8172
  options.strictNullHandling,
8203
8173
  options.skipNulls,
8204
- options.encodeDotInKeys,
8205
8174
  options.encode ? options.encoder : null,
8206
8175
  options.filter,
8207
8176
  options.sort,
@@ -8375,7 +8344,7 @@ exports.binding = function (name) {
8375
8344
  var path;
8376
8345
  exports.cwd = function () { return cwd };
8377
8346
  exports.chdir = function (dir) {
8378
- if (!path) path = __webpack_require__("b69a");
8347
+ if (!path) path = __webpack_require__("df7c");
8379
8348
  cwd = path.resolve(dir, cwd);
8380
8349
  };
8381
8350
  })();
@@ -9711,9 +9680,9 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9711
9680
  var length, result, step, iterator, next, value;
9712
9681
  // if the target is not iterable or it's an array with the default iterator - use a simple case
9713
9682
  if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) {
9714
- result = IS_CONSTRUCTOR ? new this() : [];
9715
9683
  iterator = getIterator(O, iteratorMethod);
9716
9684
  next = iterator.next;
9685
+ result = IS_CONSTRUCTOR ? new this() : [];
9717
9686
  for (;!(step = call(next, iterator)).done; index++) {
9718
9687
  value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
9719
9688
  createProperty(result, index, value);
@@ -9823,17 +9792,6 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9823
9792
  })));
9824
9793
 
9825
9794
 
9826
- /***/ }),
9827
-
9828
- /***/ "507f":
9829
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
9830
-
9831
- "use strict";
9832
- /* 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");
9833
- /* 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__);
9834
- /* unused harmony reexport * */
9835
-
9836
-
9837
9795
  /***/ }),
9838
9796
 
9839
9797
  /***/ "5087":
@@ -14197,6 +14155,13 @@ module.exports = function (error, C, stack, dropEntries) {
14197
14155
  })));
14198
14156
 
14199
14157
 
14158
+ /***/ }),
14159
+
14160
+ /***/ "7037":
14161
+ /***/ (function(module, exports, __webpack_require__) {
14162
+
14163
+ // extracted by mini-css-extract-plugin
14164
+
14200
14165
  /***/ }),
14201
14166
 
14202
14167
  /***/ "7118":
@@ -14903,7 +14868,7 @@ function _regeneratorRuntime() {
14903
14868
  function makeInvokeMethod(e, r, n) {
14904
14869
  var o = h;
14905
14870
  return function (i, a) {
14906
- if (o === f) throw Error("Generator is already running");
14871
+ if (o === f) throw new Error("Generator is already running");
14907
14872
  if (o === s) {
14908
14873
  if ("throw" === i) throw a;
14909
14874
  return {
@@ -15045,7 +15010,7 @@ function _regeneratorRuntime() {
15045
15010
  } else if (c) {
15046
15011
  if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
15047
15012
  } else {
15048
- if (!u) throw Error("try statement without catch or finally");
15013
+ if (!u) throw new Error("try statement without catch or finally");
15049
15014
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
15050
15015
  }
15051
15016
  }
@@ -15085,7 +15050,7 @@ function _regeneratorRuntime() {
15085
15050
  return o;
15086
15051
  }
15087
15052
  }
15088
- throw Error("illegal catch attempt");
15053
+ throw new Error("illegal catch attempt");
15089
15054
  },
15090
15055
  delegateYield: function delegateYield(e, r, n) {
15091
15056
  return this.delegate = {
@@ -15297,13 +15262,6 @@ function getMallMenus(params) {
15297
15262
 
15298
15263
  /***/ }),
15299
15264
 
15300
- /***/ "7596":
15301
- /***/ (function(module, exports, __webpack_require__) {
15302
-
15303
- // extracted by mini-css-extract-plugin
15304
-
15305
- /***/ }),
15306
-
15307
15265
  /***/ "7839":
15308
15266
  /***/ (function(module, exports, __webpack_require__) {
15309
15267
 
@@ -19131,18 +19089,15 @@ var isArray = Array.isArray;
19131
19089
 
19132
19090
  var defaults = {
19133
19091
  allowDots: false,
19134
- allowEmptyArrays: false,
19135
19092
  allowPrototypes: false,
19136
19093
  allowSparse: false,
19137
19094
  arrayLimit: 20,
19138
19095
  charset: 'utf-8',
19139
19096
  charsetSentinel: false,
19140
19097
  comma: false,
19141
- decodeDotInKeys: true,
19142
19098
  decoder: utils.decode,
19143
19099
  delimiter: '&',
19144
19100
  depth: 5,
19145
- duplicates: 'combine',
19146
19101
  ignoreQueryPrefix: false,
19147
19102
  interpretNumericEntities: false,
19148
19103
  parameterLimit: 1000,
@@ -19230,10 +19185,9 @@ var parseValues = function parseQueryStringValues(str, options) {
19230
19185
  val = isArray(val) ? [val] : val;
19231
19186
  }
19232
19187
 
19233
- var existing = has.call(obj, key);
19234
- if (existing && options.duplicates === 'combine') {
19188
+ if (has.call(obj, key)) {
19235
19189
  obj[key] = utils.combine(obj[key], val);
19236
- } else if (!existing || options.duplicates === 'last') {
19190
+ } else {
19237
19191
  obj[key] = val;
19238
19192
  }
19239
19193
  }
@@ -19249,25 +19203,24 @@ var parseObject = function (chain, val, options, valuesParsed) {
19249
19203
  var root = chain[i];
19250
19204
 
19251
19205
  if (root === '[]' && options.parseArrays) {
19252
- obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
19206
+ obj = [].concat(leaf);
19253
19207
  } else {
19254
19208
  obj = options.plainObjects ? Object.create(null) : {};
19255
19209
  var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
19256
- var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, '.') : cleanRoot;
19257
- var index = parseInt(decodedRoot, 10);
19258
- if (!options.parseArrays && decodedRoot === '') {
19210
+ var index = parseInt(cleanRoot, 10);
19211
+ if (!options.parseArrays && cleanRoot === '') {
19259
19212
  obj = { 0: leaf };
19260
19213
  } else if (
19261
19214
  !isNaN(index)
19262
- && root !== decodedRoot
19263
- && String(index) === decodedRoot
19215
+ && root !== cleanRoot
19216
+ && String(index) === cleanRoot
19264
19217
  && index >= 0
19265
19218
  && (options.parseArrays && index <= options.arrayLimit)
19266
19219
  ) {
19267
19220
  obj = [];
19268
19221
  obj[index] = leaf;
19269
- } else if (decodedRoot !== '__proto__') {
19270
- obj[decodedRoot] = leaf;
19222
+ } else if (cleanRoot !== '__proto__') {
19223
+ obj[cleanRoot] = leaf;
19271
19224
  }
19272
19225
  }
19273
19226
 
@@ -19336,15 +19289,7 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19336
19289
  return defaults;
19337
19290
  }
19338
19291
 
19339
- if (typeof opts.allowEmptyArrays !== 'undefined' && typeof opts.allowEmptyArrays !== 'boolean') {
19340
- throw new TypeError('`allowEmptyArrays` option can only be `true` or `false`, when provided');
19341
- }
19342
-
19343
- if (typeof opts.decodeDotInKeys !== 'undefined' && typeof opts.decodeDotInKeys !== 'boolean') {
19344
- throw new TypeError('`decodeDotInKeys` option can only be `true` or `false`, when provided');
19345
- }
19346
-
19347
- if (opts.decoder !== null && typeof opts.decoder !== 'undefined' && typeof opts.decoder !== 'function') {
19292
+ if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') {
19348
19293
  throw new TypeError('Decoder has to be a function.');
19349
19294
  }
19350
19295
 
@@ -19353,29 +19298,18 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19353
19298
  }
19354
19299
  var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;
19355
19300
 
19356
- var duplicates = typeof opts.duplicates === 'undefined' ? defaults.duplicates : opts.duplicates;
19357
-
19358
- if (duplicates !== 'combine' && duplicates !== 'first' && duplicates !== 'last') {
19359
- throw new TypeError('The duplicates option must be either combine, first, or last');
19360
- }
19361
-
19362
- var allowDots = typeof opts.allowDots === 'undefined' ? opts.decodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
19363
-
19364
19301
  return {
19365
- allowDots: allowDots,
19366
- allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
19302
+ allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
19367
19303
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
19368
19304
  allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
19369
19305
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
19370
19306
  charset: charset,
19371
19307
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
19372
19308
  comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,
19373
- decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
19374
19309
  decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,
19375
19310
  delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
19376
19311
  // eslint-disable-next-line no-implicit-coercion, no-extra-parens
19377
19312
  depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,
19378
- duplicates: duplicates,
19379
19313
  ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
19380
19314
  interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
19381
19315
  parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,
@@ -19593,6 +19527,17 @@ module.exports = function (argument) {
19593
19527
  };
19594
19528
 
19595
19529
 
19530
+ /***/ }),
19531
+
19532
+ /***/ "a320":
19533
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
19534
+
19535
+ "use strict";
19536
+ /* 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");
19537
+ /* 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__);
19538
+ /* unused harmony reexport * */
19539
+
19540
+
19596
19541
  /***/ }),
19597
19542
 
19598
19543
  /***/ "a356":
@@ -19771,7 +19716,7 @@ module.exports = function (argument) {
19771
19716
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19772
19717
 
19773
19718
  "use strict";
19774
- /* 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");
19719
+ /* harmony import */ var _Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b85c");
19775
19720
  /* harmony import */ var _api_layoutApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("755b");
19776
19721
 
19777
19722
  //
@@ -19902,7 +19847,7 @@ module.exports = function (argument) {
19902
19847
  var _this2 = this;
19903
19848
  this.documentList = [];
19904
19849
  this.loadMenu(function () {
19905
- 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),
19850
+ var _iterator = Object(_Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"])(_this2.menust),
19906
19851
  _step;
19907
19852
  try {
19908
19853
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -21783,411 +21728,101 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
21783
21728
 
21784
21729
  /***/ }),
21785
21730
 
21786
- /***/ "b69a":
21731
+ /***/ "b727":
21787
21732
  /***/ (function(module, exports, __webpack_require__) {
21788
21733
 
21789
- /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
21790
- // backported and transplited with Babel, with backwards-compat fixes
21791
-
21792
- // Copyright Joyent, Inc. and other Node contributors.
21793
- //
21794
- // Permission is hereby granted, free of charge, to any person obtaining a
21795
- // copy of this software and associated documentation files (the
21796
- // "Software"), to deal in the Software without restriction, including
21797
- // without limitation the rights to use, copy, modify, merge, publish,
21798
- // distribute, sublicense, and/or sell copies of the Software, and to permit
21799
- // persons to whom the Software is furnished to do so, subject to the
21800
- // following conditions:
21801
- //
21802
- // The above copyright notice and this permission notice shall be included
21803
- // in all copies or substantial portions of the Software.
21804
- //
21805
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21806
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21807
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
21808
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21809
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21810
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21811
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
21812
-
21813
- // resolves . and .. elements in a path array with directory names there
21814
- // must be no slashes, empty elements, or device names (c:\) in the array
21815
- // (so also no leading and trailing slashes - it does not distinguish
21816
- // relative and absolute paths)
21817
- function normalizeArray(parts, allowAboveRoot) {
21818
- // if the path tries to go above the root, `up` ends up > 0
21819
- var up = 0;
21820
- for (var i = parts.length - 1; i >= 0; i--) {
21821
- var last = parts[i];
21822
- if (last === '.') {
21823
- parts.splice(i, 1);
21824
- } else if (last === '..') {
21825
- parts.splice(i, 1);
21826
- up++;
21827
- } else if (up) {
21828
- parts.splice(i, 1);
21829
- up--;
21830
- }
21831
- }
21832
-
21833
- // if the path is allowed to go above the root, restore leading ..s
21834
- if (allowAboveRoot) {
21835
- for (; up--; up) {
21836
- parts.unshift('..');
21837
- }
21838
- }
21839
-
21840
- return parts;
21841
- }
21734
+ "use strict";
21842
21735
 
21843
- // path.resolve([from ...], to)
21844
- // posix version
21845
- exports.resolve = function() {
21846
- var resolvedPath = '',
21847
- resolvedAbsolute = false;
21736
+ var bind = __webpack_require__("0366");
21737
+ var uncurryThis = __webpack_require__("e330");
21738
+ var IndexedObject = __webpack_require__("44ad");
21739
+ var toObject = __webpack_require__("7b0b");
21740
+ var lengthOfArrayLike = __webpack_require__("07fa");
21741
+ var arraySpeciesCreate = __webpack_require__("65f0");
21848
21742
 
21849
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
21850
- var path = (i >= 0) ? arguments[i] : process.cwd();
21743
+ var push = uncurryThis([].push);
21851
21744
 
21852
- // Skip empty and invalid entries
21853
- if (typeof path !== 'string') {
21854
- throw new TypeError('Arguments to path.resolve must be strings');
21855
- } else if (!path) {
21856
- continue;
21745
+ // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
21746
+ var createMethod = function (TYPE) {
21747
+ var IS_MAP = TYPE === 1;
21748
+ var IS_FILTER = TYPE === 2;
21749
+ var IS_SOME = TYPE === 3;
21750
+ var IS_EVERY = TYPE === 4;
21751
+ var IS_FIND_INDEX = TYPE === 6;
21752
+ var IS_FILTER_REJECT = TYPE === 7;
21753
+ var NO_HOLES = TYPE === 5 || IS_FIND_INDEX;
21754
+ return function ($this, callbackfn, that, specificCreate) {
21755
+ var O = toObject($this);
21756
+ var self = IndexedObject(O);
21757
+ var length = lengthOfArrayLike(self);
21758
+ var boundFunction = bind(callbackfn, that);
21759
+ var index = 0;
21760
+ var create = specificCreate || arraySpeciesCreate;
21761
+ var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
21762
+ var value, result;
21763
+ for (;length > index; index++) if (NO_HOLES || index in self) {
21764
+ value = self[index];
21765
+ result = boundFunction(value, index, O);
21766
+ if (TYPE) {
21767
+ if (IS_MAP) target[index] = result; // map
21768
+ else if (result) switch (TYPE) {
21769
+ case 3: return true; // some
21770
+ case 5: return value; // find
21771
+ case 6: return index; // findIndex
21772
+ case 2: push(target, value); // filter
21773
+ } else switch (TYPE) {
21774
+ case 4: return false; // every
21775
+ case 7: push(target, value); // filterReject
21776
+ }
21777
+ }
21857
21778
  }
21858
-
21859
- resolvedPath = path + '/' + resolvedPath;
21860
- resolvedAbsolute = path.charAt(0) === '/';
21861
- }
21862
-
21863
- // At this point the path should be resolved to a full absolute path, but
21864
- // handle relative paths to be safe (might happen when process.cwd() fails)
21865
-
21866
- // Normalize the path
21867
- resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
21868
- return !!p;
21869
- }), !resolvedAbsolute).join('/');
21870
-
21871
- return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
21779
+ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
21780
+ };
21872
21781
  };
21873
21782
 
21874
- // path.normalize(path)
21875
- // posix version
21876
- exports.normalize = function(path) {
21877
- var isAbsolute = exports.isAbsolute(path),
21878
- trailingSlash = substr(path, -1) === '/';
21783
+ module.exports = {
21784
+ // `Array.prototype.forEach` method
21785
+ // https://tc39.es/ecma262/#sec-array.prototype.foreach
21786
+ forEach: createMethod(0),
21787
+ // `Array.prototype.map` method
21788
+ // https://tc39.es/ecma262/#sec-array.prototype.map
21789
+ map: createMethod(1),
21790
+ // `Array.prototype.filter` method
21791
+ // https://tc39.es/ecma262/#sec-array.prototype.filter
21792
+ filter: createMethod(2),
21793
+ // `Array.prototype.some` method
21794
+ // https://tc39.es/ecma262/#sec-array.prototype.some
21795
+ some: createMethod(3),
21796
+ // `Array.prototype.every` method
21797
+ // https://tc39.es/ecma262/#sec-array.prototype.every
21798
+ every: createMethod(4),
21799
+ // `Array.prototype.find` method
21800
+ // https://tc39.es/ecma262/#sec-array.prototype.find
21801
+ find: createMethod(5),
21802
+ // `Array.prototype.findIndex` method
21803
+ // https://tc39.es/ecma262/#sec-array.prototype.findIndex
21804
+ findIndex: createMethod(6),
21805
+ // `Array.prototype.filterReject` method
21806
+ // https://github.com/tc39/proposal-array-filtering
21807
+ filterReject: createMethod(7)
21808
+ };
21879
21809
 
21880
- // Normalize the path
21881
- path = normalizeArray(filter(path.split('/'), function(p) {
21882
- return !!p;
21883
- }), !isAbsolute).join('/');
21884
21810
 
21885
- if (!path && !isAbsolute) {
21886
- path = '.';
21887
- }
21888
- if (path && trailingSlash) {
21889
- path += '/';
21890
- }
21811
+ /***/ }),
21891
21812
 
21892
- return (isAbsolute ? '/' : '') + path;
21893
- };
21813
+ /***/ "b7e9":
21814
+ /***/ (function(module, exports, __webpack_require__) {
21894
21815
 
21895
- // posix version
21896
- exports.isAbsolute = function(path) {
21897
- return path.charAt(0) === '/';
21898
- };
21816
+ //! moment.js locale configuration
21817
+ //! locale : English (Singapore) [en-sg]
21818
+ //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
21899
21819
 
21900
- // posix version
21901
- exports.join = function() {
21902
- var paths = Array.prototype.slice.call(arguments, 0);
21903
- return exports.normalize(filter(paths, function(p, index) {
21904
- if (typeof p !== 'string') {
21905
- throw new TypeError('Arguments to path.join must be strings');
21906
- }
21907
- return p;
21908
- }).join('/'));
21909
- };
21820
+ ;(function (global, factory) {
21821
+ true ? factory(__webpack_require__("c1df")) :
21822
+ undefined
21823
+ }(this, (function (moment) { 'use strict';
21910
21824
 
21911
-
21912
- // path.relative(from, to)
21913
- // posix version
21914
- exports.relative = function(from, to) {
21915
- from = exports.resolve(from).substr(1);
21916
- to = exports.resolve(to).substr(1);
21917
-
21918
- function trim(arr) {
21919
- var start = 0;
21920
- for (; start < arr.length; start++) {
21921
- if (arr[start] !== '') break;
21922
- }
21923
-
21924
- var end = arr.length - 1;
21925
- for (; end >= 0; end--) {
21926
- if (arr[end] !== '') break;
21927
- }
21928
-
21929
- if (start > end) return [];
21930
- return arr.slice(start, end - start + 1);
21931
- }
21932
-
21933
- var fromParts = trim(from.split('/'));
21934
- var toParts = trim(to.split('/'));
21935
-
21936
- var length = Math.min(fromParts.length, toParts.length);
21937
- var samePartsLength = length;
21938
- for (var i = 0; i < length; i++) {
21939
- if (fromParts[i] !== toParts[i]) {
21940
- samePartsLength = i;
21941
- break;
21942
- }
21943
- }
21944
-
21945
- var outputParts = [];
21946
- for (var i = samePartsLength; i < fromParts.length; i++) {
21947
- outputParts.push('..');
21948
- }
21949
-
21950
- outputParts = outputParts.concat(toParts.slice(samePartsLength));
21951
-
21952
- return outputParts.join('/');
21953
- };
21954
-
21955
- exports.sep = '/';
21956
- exports.delimiter = ':';
21957
-
21958
- exports.dirname = function (path) {
21959
- if (typeof path !== 'string') path = path + '';
21960
- if (path.length === 0) return '.';
21961
- var code = path.charCodeAt(0);
21962
- var hasRoot = code === 47 /*/*/;
21963
- var end = -1;
21964
- var matchedSlash = true;
21965
- for (var i = path.length - 1; i >= 1; --i) {
21966
- code = path.charCodeAt(i);
21967
- if (code === 47 /*/*/) {
21968
- if (!matchedSlash) {
21969
- end = i;
21970
- break;
21971
- }
21972
- } else {
21973
- // We saw the first non-path separator
21974
- matchedSlash = false;
21975
- }
21976
- }
21977
-
21978
- if (end === -1) return hasRoot ? '/' : '.';
21979
- if (hasRoot && end === 1) {
21980
- // return '//';
21981
- // Backwards-compat fix:
21982
- return '/';
21983
- }
21984
- return path.slice(0, end);
21985
- };
21986
-
21987
- function basename(path) {
21988
- if (typeof path !== 'string') path = path + '';
21989
-
21990
- var start = 0;
21991
- var end = -1;
21992
- var matchedSlash = true;
21993
- var i;
21994
-
21995
- for (i = path.length - 1; i >= 0; --i) {
21996
- if (path.charCodeAt(i) === 47 /*/*/) {
21997
- // If we reached a path separator that was not part of a set of path
21998
- // separators at the end of the string, stop now
21999
- if (!matchedSlash) {
22000
- start = i + 1;
22001
- break;
22002
- }
22003
- } else if (end === -1) {
22004
- // We saw the first non-path separator, mark this as the end of our
22005
- // path component
22006
- matchedSlash = false;
22007
- end = i + 1;
22008
- }
22009
- }
22010
-
22011
- if (end === -1) return '';
22012
- return path.slice(start, end);
22013
- }
22014
-
22015
- // Uses a mixed approach for backwards-compatibility, as ext behavior changed
22016
- // in new Node.js versions, so only basename() above is backported here
22017
- exports.basename = function (path, ext) {
22018
- var f = basename(path);
22019
- if (ext && f.substr(-1 * ext.length) === ext) {
22020
- f = f.substr(0, f.length - ext.length);
22021
- }
22022
- return f;
22023
- };
22024
-
22025
- exports.extname = function (path) {
22026
- if (typeof path !== 'string') path = path + '';
22027
- var startDot = -1;
22028
- var startPart = 0;
22029
- var end = -1;
22030
- var matchedSlash = true;
22031
- // Track the state of characters (if any) we see before our first dot and
22032
- // after any path separator we find
22033
- var preDotState = 0;
22034
- for (var i = path.length - 1; i >= 0; --i) {
22035
- var code = path.charCodeAt(i);
22036
- if (code === 47 /*/*/) {
22037
- // If we reached a path separator that was not part of a set of path
22038
- // separators at the end of the string, stop now
22039
- if (!matchedSlash) {
22040
- startPart = i + 1;
22041
- break;
22042
- }
22043
- continue;
22044
- }
22045
- if (end === -1) {
22046
- // We saw the first non-path separator, mark this as the end of our
22047
- // extension
22048
- matchedSlash = false;
22049
- end = i + 1;
22050
- }
22051
- if (code === 46 /*.*/) {
22052
- // If this is our first dot, mark it as the start of our extension
22053
- if (startDot === -1)
22054
- startDot = i;
22055
- else if (preDotState !== 1)
22056
- preDotState = 1;
22057
- } else if (startDot !== -1) {
22058
- // We saw a non-dot and non-path separator before our dot, so we should
22059
- // have a good chance at having a non-empty extension
22060
- preDotState = -1;
22061
- }
22062
- }
22063
-
22064
- if (startDot === -1 || end === -1 ||
22065
- // We saw a non-dot character immediately before the dot
22066
- preDotState === 0 ||
22067
- // The (right-most) trimmed path component is exactly '..'
22068
- preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
22069
- return '';
22070
- }
22071
- return path.slice(startDot, end);
22072
- };
22073
-
22074
- function filter (xs, f) {
22075
- if (xs.filter) return xs.filter(f);
22076
- var res = [];
22077
- for (var i = 0; i < xs.length; i++) {
22078
- if (f(xs[i], i, xs)) res.push(xs[i]);
22079
- }
22080
- return res;
22081
- }
22082
-
22083
- // String.prototype.substr - negative index don't work in IE8
22084
- var substr = 'ab'.substr(-1) === 'b'
22085
- ? function (str, start, len) { return str.substr(start, len) }
22086
- : function (str, start, len) {
22087
- if (start < 0) start = str.length + start;
22088
- return str.substr(start, len);
22089
- }
22090
- ;
22091
-
22092
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
22093
-
22094
- /***/ }),
22095
-
22096
- /***/ "b727":
22097
- /***/ (function(module, exports, __webpack_require__) {
22098
-
22099
- "use strict";
22100
-
22101
- var bind = __webpack_require__("0366");
22102
- var uncurryThis = __webpack_require__("e330");
22103
- var IndexedObject = __webpack_require__("44ad");
22104
- var toObject = __webpack_require__("7b0b");
22105
- var lengthOfArrayLike = __webpack_require__("07fa");
22106
- var arraySpeciesCreate = __webpack_require__("65f0");
22107
-
22108
- var push = uncurryThis([].push);
22109
-
22110
- // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
22111
- var createMethod = function (TYPE) {
22112
- var IS_MAP = TYPE === 1;
22113
- var IS_FILTER = TYPE === 2;
22114
- var IS_SOME = TYPE === 3;
22115
- var IS_EVERY = TYPE === 4;
22116
- var IS_FIND_INDEX = TYPE === 6;
22117
- var IS_FILTER_REJECT = TYPE === 7;
22118
- var NO_HOLES = TYPE === 5 || IS_FIND_INDEX;
22119
- return function ($this, callbackfn, that, specificCreate) {
22120
- var O = toObject($this);
22121
- var self = IndexedObject(O);
22122
- var length = lengthOfArrayLike(self);
22123
- var boundFunction = bind(callbackfn, that);
22124
- var index = 0;
22125
- var create = specificCreate || arraySpeciesCreate;
22126
- var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
22127
- var value, result;
22128
- for (;length > index; index++) if (NO_HOLES || index in self) {
22129
- value = self[index];
22130
- result = boundFunction(value, index, O);
22131
- if (TYPE) {
22132
- if (IS_MAP) target[index] = result; // map
22133
- else if (result) switch (TYPE) {
22134
- case 3: return true; // some
22135
- case 5: return value; // find
22136
- case 6: return index; // findIndex
22137
- case 2: push(target, value); // filter
22138
- } else switch (TYPE) {
22139
- case 4: return false; // every
22140
- case 7: push(target, value); // filterReject
22141
- }
22142
- }
22143
- }
22144
- return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
22145
- };
22146
- };
22147
-
22148
- module.exports = {
22149
- // `Array.prototype.forEach` method
22150
- // https://tc39.es/ecma262/#sec-array.prototype.foreach
22151
- forEach: createMethod(0),
22152
- // `Array.prototype.map` method
22153
- // https://tc39.es/ecma262/#sec-array.prototype.map
22154
- map: createMethod(1),
22155
- // `Array.prototype.filter` method
22156
- // https://tc39.es/ecma262/#sec-array.prototype.filter
22157
- filter: createMethod(2),
22158
- // `Array.prototype.some` method
22159
- // https://tc39.es/ecma262/#sec-array.prototype.some
22160
- some: createMethod(3),
22161
- // `Array.prototype.every` method
22162
- // https://tc39.es/ecma262/#sec-array.prototype.every
22163
- every: createMethod(4),
22164
- // `Array.prototype.find` method
22165
- // https://tc39.es/ecma262/#sec-array.prototype.find
22166
- find: createMethod(5),
22167
- // `Array.prototype.findIndex` method
22168
- // https://tc39.es/ecma262/#sec-array.prototype.findIndex
22169
- findIndex: createMethod(6),
22170
- // `Array.prototype.filterReject` method
22171
- // https://github.com/tc39/proposal-array-filtering
22172
- filterReject: createMethod(7)
22173
- };
22174
-
22175
-
22176
- /***/ }),
22177
-
22178
- /***/ "b7e9":
22179
- /***/ (function(module, exports, __webpack_require__) {
22180
-
22181
- //! moment.js locale configuration
22182
- //! locale : English (Singapore) [en-sg]
22183
- //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
22184
-
22185
- ;(function (global, factory) {
22186
- true ? factory(__webpack_require__("c1df")) :
22187
- undefined
22188
- }(this, (function (moment) { 'use strict';
22189
-
22190
- //! moment.js locale configuration
21825
+ //! moment.js locale configuration
22191
21826
 
22192
21827
  var enSg = moment.defineLocale('en-sg', {
22193
21828
  months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
@@ -28992,10 +28627,10 @@ var SHARED = '__core-js_shared__';
28992
28627
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
28993
28628
 
28994
28629
  (store.versions || (store.versions = [])).push({
28995
- version: '3.36.1',
28630
+ version: '3.36.0',
28996
28631
  mode: IS_PURE ? 'pure' : 'global',
28997
28632
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
28998
- license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
28633
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
28999
28634
  source: 'https://github.com/zloirock/core-js'
29000
28635
  });
29001
28636
 
@@ -30016,7 +29651,9 @@ var gOPD = __webpack_require__("2aa9");
30016
29651
  var $TypeError = __webpack_require__("0d25");
30017
29652
  var $floor = GetIntrinsic('%Math.floor%');
30018
29653
 
30019
- /** @type {import('.')} */
29654
+ /** @typedef {(...args: unknown[]) => unknown} Func */
29655
+
29656
+ /** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
30020
29657
  module.exports = function setFunctionLength(fn, length) {
30021
29658
  if (typeof fn !== 'function') {
30022
29659
  throw new $TypeError('`fn` is not a function');
@@ -30552,8 +30189,7 @@ defineWellKnownSymbol('iterator');
30552
30189
 
30553
30190
  /* eslint-disable no-proto -- safe */
30554
30191
  var uncurryThisAccessor = __webpack_require__("7282");
30555
- var isObject = __webpack_require__("861d");
30556
- var requireObjectCoercible = __webpack_require__("1d80");
30192
+ var anObject = __webpack_require__("825a");
30557
30193
  var aPossiblePrototype = __webpack_require__("3bbe");
30558
30194
 
30559
30195
  // `Object.setPrototypeOf` method
@@ -30570,9 +30206,8 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
30570
30206
  CORRECT_SETTER = test instanceof Array;
30571
30207
  } catch (error) { /* empty */ }
30572
30208
  return function setPrototypeOf(O, proto) {
30573
- requireObjectCoercible(O);
30209
+ anObject(O);
30574
30210
  aPossiblePrototype(proto);
30575
- if (!isObject(O)) return O;
30576
30211
  if (CORRECT_SETTER) setter(O, proto);
30577
30212
  else O.__proto__ = proto;
30578
30213
  return O;
@@ -31846,104 +31481,414 @@ module.exports = RangeError;
31846
31481
 
31847
31482
  /***/ }),
31848
31483
 
31849
- /***/ "dcc3":
31850
- /***/ (function(module, exports, __webpack_require__) {
31484
+ /***/ "dcc3":
31485
+ /***/ (function(module, exports, __webpack_require__) {
31486
+
31487
+ "use strict";
31488
+
31489
+ var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
31490
+ var create = __webpack_require__("7c73");
31491
+ var createPropertyDescriptor = __webpack_require__("5c6c");
31492
+ var setToStringTag = __webpack_require__("d44e");
31493
+ var Iterators = __webpack_require__("3f8c");
31494
+
31495
+ var returnThis = function () { return this; };
31496
+
31497
+ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31498
+ var TO_STRING_TAG = NAME + ' Iterator';
31499
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
31500
+ setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
31501
+ Iterators[TO_STRING_TAG] = returnThis;
31502
+ return IteratorConstructor;
31503
+ };
31504
+
31505
+
31506
+ /***/ }),
31507
+
31508
+ /***/ "dd0e":
31509
+ /***/ (function(module, exports, __webpack_require__) {
31510
+
31511
+ // extracted by mini-css-extract-plugin
31512
+
31513
+ /***/ }),
31514
+
31515
+ /***/ "ddb0":
31516
+ /***/ (function(module, exports, __webpack_require__) {
31517
+
31518
+ "use strict";
31519
+
31520
+ var global = __webpack_require__("da84");
31521
+ var DOMIterables = __webpack_require__("fdbc");
31522
+ var DOMTokenListPrototype = __webpack_require__("785a");
31523
+ var ArrayIteratorMethods = __webpack_require__("e260");
31524
+ var createNonEnumerableProperty = __webpack_require__("9112");
31525
+ var setToStringTag = __webpack_require__("d44e");
31526
+ var wellKnownSymbol = __webpack_require__("b622");
31527
+
31528
+ var ITERATOR = wellKnownSymbol('iterator');
31529
+ var ArrayValues = ArrayIteratorMethods.values;
31530
+
31531
+ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
31532
+ if (CollectionPrototype) {
31533
+ // some Chrome versions have non-configurable methods on DOMTokenList
31534
+ if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
31535
+ createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
31536
+ } catch (error) {
31537
+ CollectionPrototype[ITERATOR] = ArrayValues;
31538
+ }
31539
+ setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
31540
+ if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
31541
+ // some Chrome versions have non-configurable methods on DOMTokenList
31542
+ if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
31543
+ createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
31544
+ } catch (error) {
31545
+ CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
31546
+ }
31547
+ }
31548
+ }
31549
+ };
31550
+
31551
+ for (var COLLECTION_NAME in DOMIterables) {
31552
+ handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
31553
+ }
31554
+
31555
+ handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
31556
+
31557
+
31558
+ /***/ }),
31559
+
31560
+ /***/ "df51":
31561
+ /***/ (function(module, exports, __webpack_require__) {
31562
+
31563
+ // extracted by mini-css-extract-plugin
31564
+
31565
+ /***/ }),
31566
+
31567
+ /***/ "df75":
31568
+ /***/ (function(module, exports, __webpack_require__) {
31569
+
31570
+ "use strict";
31571
+
31572
+ var internalObjectKeys = __webpack_require__("ca84");
31573
+ var enumBugKeys = __webpack_require__("7839");
31574
+
31575
+ // `Object.keys` method
31576
+ // https://tc39.es/ecma262/#sec-object.keys
31577
+ // eslint-disable-next-line es/no-object-keys -- safe
31578
+ module.exports = Object.keys || function keys(O) {
31579
+ return internalObjectKeys(O, enumBugKeys);
31580
+ };
31581
+
31582
+
31583
+ /***/ }),
31584
+
31585
+ /***/ "df7c":
31586
+ /***/ (function(module, exports, __webpack_require__) {
31587
+
31588
+ /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
31589
+ // backported and transplited with Babel, with backwards-compat fixes
31590
+
31591
+ // Copyright Joyent, Inc. and other Node contributors.
31592
+ //
31593
+ // Permission is hereby granted, free of charge, to any person obtaining a
31594
+ // copy of this software and associated documentation files (the
31595
+ // "Software"), to deal in the Software without restriction, including
31596
+ // without limitation the rights to use, copy, modify, merge, publish,
31597
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
31598
+ // persons to whom the Software is furnished to do so, subject to the
31599
+ // following conditions:
31600
+ //
31601
+ // The above copyright notice and this permission notice shall be included
31602
+ // in all copies or substantial portions of the Software.
31603
+ //
31604
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
31605
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31606
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
31607
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31608
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
31609
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31610
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
31611
+
31612
+ // resolves . and .. elements in a path array with directory names there
31613
+ // must be no slashes, empty elements, or device names (c:\) in the array
31614
+ // (so also no leading and trailing slashes - it does not distinguish
31615
+ // relative and absolute paths)
31616
+ function normalizeArray(parts, allowAboveRoot) {
31617
+ // if the path tries to go above the root, `up` ends up > 0
31618
+ var up = 0;
31619
+ for (var i = parts.length - 1; i >= 0; i--) {
31620
+ var last = parts[i];
31621
+ if (last === '.') {
31622
+ parts.splice(i, 1);
31623
+ } else if (last === '..') {
31624
+ parts.splice(i, 1);
31625
+ up++;
31626
+ } else if (up) {
31627
+ parts.splice(i, 1);
31628
+ up--;
31629
+ }
31630
+ }
31631
+
31632
+ // if the path is allowed to go above the root, restore leading ..s
31633
+ if (allowAboveRoot) {
31634
+ for (; up--; up) {
31635
+ parts.unshift('..');
31636
+ }
31637
+ }
31638
+
31639
+ return parts;
31640
+ }
31641
+
31642
+ // path.resolve([from ...], to)
31643
+ // posix version
31644
+ exports.resolve = function() {
31645
+ var resolvedPath = '',
31646
+ resolvedAbsolute = false;
31647
+
31648
+ for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
31649
+ var path = (i >= 0) ? arguments[i] : process.cwd();
31650
+
31651
+ // Skip empty and invalid entries
31652
+ if (typeof path !== 'string') {
31653
+ throw new TypeError('Arguments to path.resolve must be strings');
31654
+ } else if (!path) {
31655
+ continue;
31656
+ }
31657
+
31658
+ resolvedPath = path + '/' + resolvedPath;
31659
+ resolvedAbsolute = path.charAt(0) === '/';
31660
+ }
31661
+
31662
+ // At this point the path should be resolved to a full absolute path, but
31663
+ // handle relative paths to be safe (might happen when process.cwd() fails)
31664
+
31665
+ // Normalize the path
31666
+ resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
31667
+ return !!p;
31668
+ }), !resolvedAbsolute).join('/');
31669
+
31670
+ return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
31671
+ };
31672
+
31673
+ // path.normalize(path)
31674
+ // posix version
31675
+ exports.normalize = function(path) {
31676
+ var isAbsolute = exports.isAbsolute(path),
31677
+ trailingSlash = substr(path, -1) === '/';
31678
+
31679
+ // Normalize the path
31680
+ path = normalizeArray(filter(path.split('/'), function(p) {
31681
+ return !!p;
31682
+ }), !isAbsolute).join('/');
31683
+
31684
+ if (!path && !isAbsolute) {
31685
+ path = '.';
31686
+ }
31687
+ if (path && trailingSlash) {
31688
+ path += '/';
31689
+ }
31690
+
31691
+ return (isAbsolute ? '/' : '') + path;
31692
+ };
31851
31693
 
31852
- "use strict";
31694
+ // posix version
31695
+ exports.isAbsolute = function(path) {
31696
+ return path.charAt(0) === '/';
31697
+ };
31853
31698
 
31854
- var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
31855
- var create = __webpack_require__("7c73");
31856
- var createPropertyDescriptor = __webpack_require__("5c6c");
31857
- var setToStringTag = __webpack_require__("d44e");
31858
- var Iterators = __webpack_require__("3f8c");
31699
+ // posix version
31700
+ exports.join = function() {
31701
+ var paths = Array.prototype.slice.call(arguments, 0);
31702
+ return exports.normalize(filter(paths, function(p, index) {
31703
+ if (typeof p !== 'string') {
31704
+ throw new TypeError('Arguments to path.join must be strings');
31705
+ }
31706
+ return p;
31707
+ }).join('/'));
31708
+ };
31859
31709
 
31860
- var returnThis = function () { return this; };
31861
31710
 
31862
- module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31863
- var TO_STRING_TAG = NAME + ' Iterator';
31864
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
31865
- setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
31866
- Iterators[TO_STRING_TAG] = returnThis;
31867
- return IteratorConstructor;
31868
- };
31711
+ // path.relative(from, to)
31712
+ // posix version
31713
+ exports.relative = function(from, to) {
31714
+ from = exports.resolve(from).substr(1);
31715
+ to = exports.resolve(to).substr(1);
31869
31716
 
31717
+ function trim(arr) {
31718
+ var start = 0;
31719
+ for (; start < arr.length; start++) {
31720
+ if (arr[start] !== '') break;
31721
+ }
31870
31722
 
31871
- /***/ }),
31723
+ var end = arr.length - 1;
31724
+ for (; end >= 0; end--) {
31725
+ if (arr[end] !== '') break;
31726
+ }
31872
31727
 
31873
- /***/ "dd0e":
31874
- /***/ (function(module, exports, __webpack_require__) {
31728
+ if (start > end) return [];
31729
+ return arr.slice(start, end - start + 1);
31730
+ }
31875
31731
 
31876
- // extracted by mini-css-extract-plugin
31732
+ var fromParts = trim(from.split('/'));
31733
+ var toParts = trim(to.split('/'));
31877
31734
 
31878
- /***/ }),
31735
+ var length = Math.min(fromParts.length, toParts.length);
31736
+ var samePartsLength = length;
31737
+ for (var i = 0; i < length; i++) {
31738
+ if (fromParts[i] !== toParts[i]) {
31739
+ samePartsLength = i;
31740
+ break;
31741
+ }
31742
+ }
31879
31743
 
31880
- /***/ "ddb0":
31881
- /***/ (function(module, exports, __webpack_require__) {
31744
+ var outputParts = [];
31745
+ for (var i = samePartsLength; i < fromParts.length; i++) {
31746
+ outputParts.push('..');
31747
+ }
31882
31748
 
31883
- "use strict";
31749
+ outputParts = outputParts.concat(toParts.slice(samePartsLength));
31884
31750
 
31885
- var global = __webpack_require__("da84");
31886
- var DOMIterables = __webpack_require__("fdbc");
31887
- var DOMTokenListPrototype = __webpack_require__("785a");
31888
- var ArrayIteratorMethods = __webpack_require__("e260");
31889
- var createNonEnumerableProperty = __webpack_require__("9112");
31890
- var setToStringTag = __webpack_require__("d44e");
31891
- var wellKnownSymbol = __webpack_require__("b622");
31751
+ return outputParts.join('/');
31752
+ };
31892
31753
 
31893
- var ITERATOR = wellKnownSymbol('iterator');
31894
- var ArrayValues = ArrayIteratorMethods.values;
31754
+ exports.sep = '/';
31755
+ exports.delimiter = ':';
31895
31756
 
31896
- var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
31897
- if (CollectionPrototype) {
31898
- // some Chrome versions have non-configurable methods on DOMTokenList
31899
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
31900
- createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
31901
- } catch (error) {
31902
- CollectionPrototype[ITERATOR] = ArrayValues;
31903
- }
31904
- setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
31905
- if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
31906
- // some Chrome versions have non-configurable methods on DOMTokenList
31907
- if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
31908
- createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
31909
- } catch (error) {
31910
- CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
31911
- }
31757
+ exports.dirname = function (path) {
31758
+ if (typeof path !== 'string') path = path + '';
31759
+ if (path.length === 0) return '.';
31760
+ var code = path.charCodeAt(0);
31761
+ var hasRoot = code === 47 /*/*/;
31762
+ var end = -1;
31763
+ var matchedSlash = true;
31764
+ for (var i = path.length - 1; i >= 1; --i) {
31765
+ code = path.charCodeAt(i);
31766
+ if (code === 47 /*/*/) {
31767
+ if (!matchedSlash) {
31768
+ end = i;
31769
+ break;
31770
+ }
31771
+ } else {
31772
+ // We saw the first non-path separator
31773
+ matchedSlash = false;
31912
31774
  }
31913
31775
  }
31914
- };
31915
-
31916
- for (var COLLECTION_NAME in DOMIterables) {
31917
- handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
31918
- }
31919
31776
 
31920
- handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
31777
+ if (end === -1) return hasRoot ? '/' : '.';
31778
+ if (hasRoot && end === 1) {
31779
+ // return '//';
31780
+ // Backwards-compat fix:
31781
+ return '/';
31782
+ }
31783
+ return path.slice(0, end);
31784
+ };
31921
31785
 
31786
+ function basename(path) {
31787
+ if (typeof path !== 'string') path = path + '';
31922
31788
 
31923
- /***/ }),
31789
+ var start = 0;
31790
+ var end = -1;
31791
+ var matchedSlash = true;
31792
+ var i;
31924
31793
 
31925
- /***/ "df51":
31926
- /***/ (function(module, exports, __webpack_require__) {
31794
+ for (i = path.length - 1; i >= 0; --i) {
31795
+ if (path.charCodeAt(i) === 47 /*/*/) {
31796
+ // If we reached a path separator that was not part of a set of path
31797
+ // separators at the end of the string, stop now
31798
+ if (!matchedSlash) {
31799
+ start = i + 1;
31800
+ break;
31801
+ }
31802
+ } else if (end === -1) {
31803
+ // We saw the first non-path separator, mark this as the end of our
31804
+ // path component
31805
+ matchedSlash = false;
31806
+ end = i + 1;
31807
+ }
31808
+ }
31927
31809
 
31928
- // extracted by mini-css-extract-plugin
31810
+ if (end === -1) return '';
31811
+ return path.slice(start, end);
31812
+ }
31929
31813
 
31930
- /***/ }),
31814
+ // Uses a mixed approach for backwards-compatibility, as ext behavior changed
31815
+ // in new Node.js versions, so only basename() above is backported here
31816
+ exports.basename = function (path, ext) {
31817
+ var f = basename(path);
31818
+ if (ext && f.substr(-1 * ext.length) === ext) {
31819
+ f = f.substr(0, f.length - ext.length);
31820
+ }
31821
+ return f;
31822
+ };
31931
31823
 
31932
- /***/ "df75":
31933
- /***/ (function(module, exports, __webpack_require__) {
31824
+ exports.extname = function (path) {
31825
+ if (typeof path !== 'string') path = path + '';
31826
+ var startDot = -1;
31827
+ var startPart = 0;
31828
+ var end = -1;
31829
+ var matchedSlash = true;
31830
+ // Track the state of characters (if any) we see before our first dot and
31831
+ // after any path separator we find
31832
+ var preDotState = 0;
31833
+ for (var i = path.length - 1; i >= 0; --i) {
31834
+ var code = path.charCodeAt(i);
31835
+ if (code === 47 /*/*/) {
31836
+ // If we reached a path separator that was not part of a set of path
31837
+ // separators at the end of the string, stop now
31838
+ if (!matchedSlash) {
31839
+ startPart = i + 1;
31840
+ break;
31841
+ }
31842
+ continue;
31843
+ }
31844
+ if (end === -1) {
31845
+ // We saw the first non-path separator, mark this as the end of our
31846
+ // extension
31847
+ matchedSlash = false;
31848
+ end = i + 1;
31849
+ }
31850
+ if (code === 46 /*.*/) {
31851
+ // If this is our first dot, mark it as the start of our extension
31852
+ if (startDot === -1)
31853
+ startDot = i;
31854
+ else if (preDotState !== 1)
31855
+ preDotState = 1;
31856
+ } else if (startDot !== -1) {
31857
+ // We saw a non-dot and non-path separator before our dot, so we should
31858
+ // have a good chance at having a non-empty extension
31859
+ preDotState = -1;
31860
+ }
31861
+ }
31934
31862
 
31935
- "use strict";
31863
+ if (startDot === -1 || end === -1 ||
31864
+ // We saw a non-dot character immediately before the dot
31865
+ preDotState === 0 ||
31866
+ // The (right-most) trimmed path component is exactly '..'
31867
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
31868
+ return '';
31869
+ }
31870
+ return path.slice(startDot, end);
31871
+ };
31936
31872
 
31937
- var internalObjectKeys = __webpack_require__("ca84");
31938
- var enumBugKeys = __webpack_require__("7839");
31873
+ function filter (xs, f) {
31874
+ if (xs.filter) return xs.filter(f);
31875
+ var res = [];
31876
+ for (var i = 0; i < xs.length; i++) {
31877
+ if (f(xs[i], i, xs)) res.push(xs[i]);
31878
+ }
31879
+ return res;
31880
+ }
31939
31881
 
31940
- // `Object.keys` method
31941
- // https://tc39.es/ecma262/#sec-object.keys
31942
- // eslint-disable-next-line es/no-object-keys -- safe
31943
- module.exports = Object.keys || function keys(O) {
31944
- return internalObjectKeys(O, enumBugKeys);
31945
- };
31882
+ // String.prototype.substr - negative index don't work in IE8
31883
+ var substr = 'ab'.substr(-1) === 'b'
31884
+ ? function (str, start, len) { return str.substr(start, len) }
31885
+ : function (str, start, len) {
31886
+ if (start < 0) start = str.length + start;
31887
+ return str.substr(start, len);
31888
+ }
31889
+ ;
31946
31890
 
31891
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
31947
31892
 
31948
31893
  /***/ }),
31949
31894
 
@@ -33972,7 +33917,7 @@ var web_dom_collections_for_each = __webpack_require__("159b");
33972
33917
  // EXTERNAL MODULE: ./package/antanklayout/src/index.scss
33973
33918
  var antanklayout_src = __webpack_require__("f925");
33974
33919
 
33975
- // 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
33920
+ // 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
33976
33921
  var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-container',{class:_vm.theme?_vm.theme.class:'',staticStyle:{"min-width":"1200px"}},[_c('el-header',[_c('Left',{attrs:{"engine":_vm.engine,"user":_vm.user,"isCollapse":_vm.isCollapse},on:{"changeCollapse":_vm.changeCollapse}}),_c('Right',{attrs:{"engine":_vm.engine,"user":_vm.user}})],1),_c('el-container',{staticClass:"layout",staticStyle:{"padding-top":"8px"}},[_c('el-aside',[_c('div',{staticClass:"aside-box",style:({ width: _vm.isCollapse ? '65px' : '210px',position:'relative'})},[_c('el-scrollbar',{style:({height:("calc(100vh - " + _vm.footerHeight + "px)")})},[(_vm.menulist)?_c('el-menu',{style:({ padding: _vm.isCollapse ? '0px' : '6px 0'}),attrs:{"router":false,"default-active":_vm.activeMenu,"collapse":_vm.isCollapse,"unique-opened":true,"collapse-transition":false}},[_c('SubMenu',{attrs:{"menulist":_vm.menulist,"engine":_vm.engine,"isCollapse":_vm.isCollapse,"currentPath":_vm.activeMenu},on:{"change":_vm.menuChange}})],1):_vm._e()],1),(_vm.menulist.length > 0)?_c('FooterMenu',{attrs:{"isCollapse":!_vm.isCollapse,"projectCodeId":_vm.projectCodeId,"path":_vm.iframeUrl,"projectLinkCodeMap":_vm.projectLinkCodeMap,"version":_vm.version},on:{"callback":_vm.footerCallback}}):_vm._e()],1)]),_c('el-container',{staticClass:"antanklayout"},[_vm._t("default")],2)],1)],1)}
33977
33922
  var staticRenderFns = []
33978
33923
 
@@ -34012,7 +33957,7 @@ var web_url_search_params_has = __webpack_require__("271a");
34012
33957
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.url-search-params.size.js
34013
33958
  var web_url_search_params_size = __webpack_require__("5494");
34014
33959
 
34015
- // 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
33960
+ // 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
34016
33961
  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"},[(
34017
33962
  _vm.projectCodeName &&
34018
33963
  _vm.projectCodeName.includes('选座票务系统') &&
@@ -34164,14 +34109,14 @@ var component = normalizeComponent(
34164
34109
  // CONCATENATED MODULE: ./package/antanklayout/src/components/footerMenu/index.js
34165
34110
 
34166
34111
  /* harmony default export */ var footerMenu = (footerMenu_src);
34167
- // 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
34112
+ // 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
34168
34113
  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)}
34169
34114
  var srcvue_type_template_id_e5aef3ea_scoped_true_staticRenderFns = []
34170
34115
 
34171
34116
 
34172
34117
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/src/index.vue?vue&type=template&id=e5aef3ea&scoped=true
34173
34118
 
34174
- // 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
34119
+ // 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
34175
34120
  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 [(
34176
34121
  item.sysProjectLinks &&
34177
34122
  item.sysProjectLinks.length > 0 &&
@@ -34198,6 +34143,12 @@ function _classCallCheck(instance, Constructor) {
34198
34143
  // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
34199
34144
  var esm_typeof = __webpack_require__("53ca");
34200
34145
 
34146
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
34147
+ var es_symbol = __webpack_require__("a4d3");
34148
+
34149
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
34150
+ var es_symbol_description = __webpack_require__("e01a");
34151
+
34201
34152
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.to-primitive.js
34202
34153
  var es_symbol_to_primitive = __webpack_require__("8172");
34203
34154
 
@@ -34213,6 +34164,9 @@ var es_number_constructor = __webpack_require__("a9e3");
34213
34164
 
34214
34165
 
34215
34166
 
34167
+
34168
+
34169
+
34216
34170
  function toPrimitive(t, r) {
34217
34171
  if ("object" != Object(esm_typeof["a" /* default */])(t) || !t) return t;
34218
34172
  var e = t[Symbol.toPrimitive];
@@ -34228,7 +34182,7 @@ function toPrimitive(t, r) {
34228
34182
 
34229
34183
  function toPropertyKey(t) {
34230
34184
  var i = toPrimitive(t, "string");
34231
- return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : i + "";
34185
+ return "symbol" == Object(esm_typeof["a" /* default */])(i) ? i : String(i);
34232
34186
  }
34233
34187
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/createClass.js
34234
34188
 
@@ -34264,7 +34218,7 @@ var local_LocalCache = /*#__PURE__*/function () {
34264
34218
  function LocalCache() {
34265
34219
  _classCallCheck(this, LocalCache);
34266
34220
  }
34267
- return _createClass(LocalCache, [{
34221
+ _createClass(LocalCache, [{
34268
34222
  key: "setCache",
34269
34223
  value:
34270
34224
  // 添加
@@ -34294,6 +34248,7 @@ var local_LocalCache = /*#__PURE__*/function () {
34294
34248
  window.localStorage.clear();
34295
34249
  }
34296
34250
  }]);
34251
+ return LocalCache;
34297
34252
  }();
34298
34253
  /* harmony default export */ var local = (new local_LocalCache());
34299
34254
  // 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
@@ -34409,7 +34364,7 @@ var src_component = normalizeComponent(
34409
34364
  // CONCATENATED MODULE: ./package/antanklayout/src/components/project/index.js
34410
34365
 
34411
34366
  /* harmony default export */ var project = (project_src);
34412
- // 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
34367
+ // 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
34413
34368
  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'))})])}
34414
34369
  var CollapseIconvue_type_template_id_c8a88db2_scoped_true_staticRenderFns = []
34415
34370
 
@@ -34595,7 +34550,7 @@ var left_src_component = normalizeComponent(
34595
34550
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/left/index.js
34596
34551
 
34597
34552
  /* harmony default export */ var left = (left_src);
34598
- // 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
34553
+ // 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
34599
34554
  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("退出")])])])}
34600
34555
  var srcvue_type_template_id_e2225378_scoped_true_staticRenderFns = []
34601
34556
 
@@ -34699,12 +34654,12 @@ var right_src_component = normalizeComponent(
34699
34654
  // CONCATENATED MODULE: ./package/antanklayout/src/components/header/right/index.js
34700
34655
 
34701
34656
  /* harmony default export */ var right = (right_src);
34702
- // 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
34703
- 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)}
34704
- var srcvue_type_template_id_6a811086_staticRenderFns = []
34657
+ // 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
34658
+ 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)}
34659
+ var srcvue_type_template_id_18fc4f56_staticRenderFns = []
34705
34660
 
34706
34661
 
34707
- // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=template&id=6a811086
34662
+ // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=template&id=18fc4f56
34708
34663
 
34709
34664
  // 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
34710
34665
 
@@ -34858,9 +34813,19 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34858
34813
  var pageUrl = "#/mainrouter?projectLinkCode=".concat(code, "&theme=").concat(this.engine.theme.class, "&projectCodeId=").concat(code, "&pageUrl=").concat(encodeURIComponent(subItem.path));
34859
34814
  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);
34860
34815
  } else {
34816
+ var _top2, _top3;
34861
34817
  //走本地路由
34862
34818
  this.$router.push(subItem.path.split('#')[1]);
34863
34819
 
34820
+ //本地路由变更后,浏览器地址也要同步变更
34821
+ var _plocation = (_top2 = top) !== null && _top2 !== void 0 && _top2.location ? top.location : location;
34822
+ var _pageUrl = "#/mainrouter?projectLinkCode=".concat(code, "&theme=").concat(this.engine.theme.class, "&projectCodeId=").concat(code, "&pageUrl=").concat(encodeURIComponent(subItem.path));
34823
+ if (subItem.targetUrl) {
34824
+ _pageUrl = "".concat(_pageUrl, "&otherTargetUrl=").concat(subItem.targetUrl);
34825
+ }
34826
+ var his = (_top3 = top) !== null && _top3 !== void 0 && _top3.history ? top.history : history;
34827
+ his.replaceState({}, "", "".concat(_plocation.origin).concat(_plocation.pathname).concat(_pageUrl));
34828
+
34864
34829
  //通知菜单调度层,路由已经变更
34865
34830
  this.$emit('change', subItem, true);
34866
34831
  }
@@ -34869,8 +34834,8 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34869
34834
  });
34870
34835
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=script&lang=js
34871
34836
  /* harmony default export */ var components_SubMenu_srcvue_type_script_lang_js = (SubMenu_srcvue_type_script_lang_js);
34872
- // EXTERNAL MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=style&index=0&id=6a811086&prod&lang=scss
34873
- var srcvue_type_style_index_0_id_6a811086_prod_lang_scss = __webpack_require__("507f");
34837
+ // EXTERNAL MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=style&index=0&id=18fc4f56&prod&lang=scss
34838
+ var srcvue_type_style_index_0_id_18fc4f56_prod_lang_scss = __webpack_require__("a320");
34874
34839
 
34875
34840
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue
34876
34841
 
@@ -34883,8 +34848,8 @@ var srcvue_type_style_index_0_id_6a811086_prod_lang_scss = __webpack_require__("
34883
34848
 
34884
34849
  var SubMenu_src_component = normalizeComponent(
34885
34850
  components_SubMenu_srcvue_type_script_lang_js,
34886
- srcvue_type_template_id_6a811086_render,
34887
- srcvue_type_template_id_6a811086_staticRenderFns,
34851
+ srcvue_type_template_id_18fc4f56_render,
34852
+ srcvue_type_template_id_18fc4f56_staticRenderFns,
34888
34853
  false,
34889
34854
  null,
34890
34855
  null,
@@ -34896,7 +34861,7 @@ var SubMenu_src_component = normalizeComponent(
34896
34861
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/index.js
34897
34862
 
34898
34863
  /* harmony default export */ var SubMenu = (SubMenu_src);
34899
- // 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
34864
+ // 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
34900
34865
  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()}
34901
34866
  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"}})])])])])}]
34902
34867