antanklayout_vue2 1.1.3 → 1.1.5

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,
@@ -8318,6 +8287,17 @@ var global = __webpack_require__("da84");
8318
8287
  module.exports = global;
8319
8288
 
8320
8289
 
8290
+ /***/ }),
8291
+
8292
+ /***/ "4315":
8293
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
8294
+
8295
+ "use strict";
8296
+ /* 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_57ca92e1_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("fa5b");
8297
+ /* 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_57ca92e1_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_57ca92e1_prod_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
8298
+ /* unused harmony reexport * */
8299
+
8300
+
8321
8301
  /***/ }),
8322
8302
 
8323
8303
  /***/ "4328":
@@ -8366,7 +8346,7 @@ exports.binding = function (name) {
8366
8346
  var path;
8367
8347
  exports.cwd = function () { return cwd };
8368
8348
  exports.chdir = function (dir) {
8369
- if (!path) path = __webpack_require__("b69a");
8349
+ if (!path) path = __webpack_require__("df7c");
8370
8350
  cwd = path.resolve(dir, cwd);
8371
8351
  };
8372
8352
  })();
@@ -9702,9 +9682,9 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9702
9682
  var length, result, step, iterator, next, value;
9703
9683
  // if the target is not iterable or it's an array with the default iterator - use a simple case
9704
9684
  if (iteratorMethod && !(this === $Array && isArrayIteratorMethod(iteratorMethod))) {
9705
- result = IS_CONSTRUCTOR ? new this() : [];
9706
9685
  iterator = getIterator(O, iteratorMethod);
9707
9686
  next = iterator.next;
9687
+ result = IS_CONSTRUCTOR ? new this() : [];
9708
9688
  for (;!(step = call(next, iterator)).done; index++) {
9709
9689
  value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
9710
9690
  createProperty(result, index, value);
@@ -9814,17 +9794,6 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
9814
9794
  })));
9815
9795
 
9816
9796
 
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
9797
  /***/ }),
9829
9798
 
9830
9799
  /***/ "5087":
@@ -14894,7 +14863,7 @@ function _regeneratorRuntime() {
14894
14863
  function makeInvokeMethod(e, r, n) {
14895
14864
  var o = h;
14896
14865
  return function (i, a) {
14897
- if (o === f) throw Error("Generator is already running");
14866
+ if (o === f) throw new Error("Generator is already running");
14898
14867
  if (o === s) {
14899
14868
  if ("throw" === i) throw a;
14900
14869
  return {
@@ -15036,7 +15005,7 @@ function _regeneratorRuntime() {
15036
15005
  } else if (c) {
15037
15006
  if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
15038
15007
  } else {
15039
- if (!u) throw Error("try statement without catch or finally");
15008
+ if (!u) throw new Error("try statement without catch or finally");
15040
15009
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
15041
15010
  }
15042
15011
  }
@@ -15076,7 +15045,7 @@ function _regeneratorRuntime() {
15076
15045
  return o;
15077
15046
  }
15078
15047
  }
15079
- throw Error("illegal catch attempt");
15048
+ throw new Error("illegal catch attempt");
15080
15049
  },
15081
15050
  delegateYield: function delegateYield(e, r, n) {
15082
15051
  return this.delegate = {
@@ -15288,13 +15257,6 @@ function getMallMenus(params) {
15288
15257
 
15289
15258
  /***/ }),
15290
15259
 
15291
- /***/ "7596":
15292
- /***/ (function(module, exports, __webpack_require__) {
15293
-
15294
- // extracted by mini-css-extract-plugin
15295
-
15296
- /***/ }),
15297
-
15298
15260
  /***/ "7839":
15299
15261
  /***/ (function(module, exports, __webpack_require__) {
15300
15262
 
@@ -19122,18 +19084,15 @@ var isArray = Array.isArray;
19122
19084
 
19123
19085
  var defaults = {
19124
19086
  allowDots: false,
19125
- allowEmptyArrays: false,
19126
19087
  allowPrototypes: false,
19127
19088
  allowSparse: false,
19128
19089
  arrayLimit: 20,
19129
19090
  charset: 'utf-8',
19130
19091
  charsetSentinel: false,
19131
19092
  comma: false,
19132
- decodeDotInKeys: true,
19133
19093
  decoder: utils.decode,
19134
19094
  delimiter: '&',
19135
19095
  depth: 5,
19136
- duplicates: 'combine',
19137
19096
  ignoreQueryPrefix: false,
19138
19097
  interpretNumericEntities: false,
19139
19098
  parameterLimit: 1000,
@@ -19221,10 +19180,9 @@ var parseValues = function parseQueryStringValues(str, options) {
19221
19180
  val = isArray(val) ? [val] : val;
19222
19181
  }
19223
19182
 
19224
- var existing = has.call(obj, key);
19225
- if (existing && options.duplicates === 'combine') {
19183
+ if (has.call(obj, key)) {
19226
19184
  obj[key] = utils.combine(obj[key], val);
19227
- } else if (!existing || options.duplicates === 'last') {
19185
+ } else {
19228
19186
  obj[key] = val;
19229
19187
  }
19230
19188
  }
@@ -19240,25 +19198,24 @@ var parseObject = function (chain, val, options, valuesParsed) {
19240
19198
  var root = chain[i];
19241
19199
 
19242
19200
  if (root === '[]' && options.parseArrays) {
19243
- obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
19201
+ obj = [].concat(leaf);
19244
19202
  } else {
19245
19203
  obj = options.plainObjects ? Object.create(null) : {};
19246
19204
  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 === '') {
19205
+ var index = parseInt(cleanRoot, 10);
19206
+ if (!options.parseArrays && cleanRoot === '') {
19250
19207
  obj = { 0: leaf };
19251
19208
  } else if (
19252
19209
  !isNaN(index)
19253
- && root !== decodedRoot
19254
- && String(index) === decodedRoot
19210
+ && root !== cleanRoot
19211
+ && String(index) === cleanRoot
19255
19212
  && index >= 0
19256
19213
  && (options.parseArrays && index <= options.arrayLimit)
19257
19214
  ) {
19258
19215
  obj = [];
19259
19216
  obj[index] = leaf;
19260
- } else if (decodedRoot !== '__proto__') {
19261
- obj[decodedRoot] = leaf;
19217
+ } else if (cleanRoot !== '__proto__') {
19218
+ obj[cleanRoot] = leaf;
19262
19219
  }
19263
19220
  }
19264
19221
 
@@ -19327,15 +19284,7 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19327
19284
  return defaults;
19328
19285
  }
19329
19286
 
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') {
19287
+ if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') {
19339
19288
  throw new TypeError('Decoder has to be a function.');
19340
19289
  }
19341
19290
 
@@ -19344,29 +19293,18 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
19344
19293
  }
19345
19294
  var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset;
19346
19295
 
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
19296
  return {
19356
- allowDots: allowDots,
19357
- allowEmptyArrays: typeof opts.allowEmptyArrays === 'boolean' ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
19297
+ allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
19358
19298
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
19359
19299
  allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
19360
19300
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
19361
19301
  charset: charset,
19362
19302
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
19363
19303
  comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma,
19364
- decodeDotInKeys: typeof opts.decodeDotInKeys === 'boolean' ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
19365
19304
  decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder,
19366
19305
  delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
19367
19306
  // eslint-disable-next-line no-implicit-coercion, no-extra-parens
19368
19307
  depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth,
19369
- duplicates: duplicates,
19370
19308
  ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
19371
19309
  interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
19372
19310
  parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit,
@@ -19762,7 +19700,7 @@ module.exports = function (argument) {
19762
19700
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19763
19701
 
19764
19702
  "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");
19703
+ /* harmony import */ var _Volumes_work_code_layout_vue2_node_modules_babel_runtime_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b85c");
19766
19704
  /* harmony import */ var _api_layoutApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("755b");
19767
19705
 
19768
19706
  //
@@ -19893,7 +19831,7 @@ module.exports = function (argument) {
19893
19831
  var _this2 = this;
19894
19832
  this.documentList = [];
19895
19833
  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),
19834
+ 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
19835
  _step;
19898
19836
  try {
19899
19837
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -21774,411 +21712,101 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {
21774
21712
 
21775
21713
  /***/ }),
21776
21714
 
21777
- /***/ "b69a":
21715
+ /***/ "b727":
21778
21716
  /***/ (function(module, exports, __webpack_require__) {
21779
21717
 
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
- }
21718
+ "use strict";
21833
21719
 
21834
- // path.resolve([from ...], to)
21835
- // posix version
21836
- exports.resolve = function() {
21837
- var resolvedPath = '',
21838
- resolvedAbsolute = false;
21720
+ var bind = __webpack_require__("0366");
21721
+ var uncurryThis = __webpack_require__("e330");
21722
+ var IndexedObject = __webpack_require__("44ad");
21723
+ var toObject = __webpack_require__("7b0b");
21724
+ var lengthOfArrayLike = __webpack_require__("07fa");
21725
+ var arraySpeciesCreate = __webpack_require__("65f0");
21839
21726
 
21840
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
21841
- var path = (i >= 0) ? arguments[i] : process.cwd();
21727
+ var push = uncurryThis([].push);
21842
21728
 
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;
21729
+ // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
21730
+ var createMethod = function (TYPE) {
21731
+ var IS_MAP = TYPE === 1;
21732
+ var IS_FILTER = TYPE === 2;
21733
+ var IS_SOME = TYPE === 3;
21734
+ var IS_EVERY = TYPE === 4;
21735
+ var IS_FIND_INDEX = TYPE === 6;
21736
+ var IS_FILTER_REJECT = TYPE === 7;
21737
+ var NO_HOLES = TYPE === 5 || IS_FIND_INDEX;
21738
+ return function ($this, callbackfn, that, specificCreate) {
21739
+ var O = toObject($this);
21740
+ var self = IndexedObject(O);
21741
+ var length = lengthOfArrayLike(self);
21742
+ var boundFunction = bind(callbackfn, that);
21743
+ var index = 0;
21744
+ var create = specificCreate || arraySpeciesCreate;
21745
+ var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
21746
+ var value, result;
21747
+ for (;length > index; index++) if (NO_HOLES || index in self) {
21748
+ value = self[index];
21749
+ result = boundFunction(value, index, O);
21750
+ if (TYPE) {
21751
+ if (IS_MAP) target[index] = result; // map
21752
+ else if (result) switch (TYPE) {
21753
+ case 3: return true; // some
21754
+ case 5: return value; // find
21755
+ case 6: return index; // findIndex
21756
+ case 2: push(target, value); // filter
21757
+ } else switch (TYPE) {
21758
+ case 4: return false; // every
21759
+ case 7: push(target, value); // filterReject
21760
+ }
21761
+ }
21848
21762
  }
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) || '.';
21763
+ return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
21764
+ };
21863
21765
  };
21864
21766
 
21865
- // path.normalize(path)
21866
- // posix version
21867
- exports.normalize = function(path) {
21868
- var isAbsolute = exports.isAbsolute(path),
21869
- trailingSlash = substr(path, -1) === '/';
21870
-
21871
- // Normalize the path
21872
- path = normalizeArray(filter(path.split('/'), function(p) {
21873
- return !!p;
21874
- }), !isAbsolute).join('/');
21767
+ module.exports = {
21768
+ // `Array.prototype.forEach` method
21769
+ // https://tc39.es/ecma262/#sec-array.prototype.foreach
21770
+ forEach: createMethod(0),
21771
+ // `Array.prototype.map` method
21772
+ // https://tc39.es/ecma262/#sec-array.prototype.map
21773
+ map: createMethod(1),
21774
+ // `Array.prototype.filter` method
21775
+ // https://tc39.es/ecma262/#sec-array.prototype.filter
21776
+ filter: createMethod(2),
21777
+ // `Array.prototype.some` method
21778
+ // https://tc39.es/ecma262/#sec-array.prototype.some
21779
+ some: createMethod(3),
21780
+ // `Array.prototype.every` method
21781
+ // https://tc39.es/ecma262/#sec-array.prototype.every
21782
+ every: createMethod(4),
21783
+ // `Array.prototype.find` method
21784
+ // https://tc39.es/ecma262/#sec-array.prototype.find
21785
+ find: createMethod(5),
21786
+ // `Array.prototype.findIndex` method
21787
+ // https://tc39.es/ecma262/#sec-array.prototype.findIndex
21788
+ findIndex: createMethod(6),
21789
+ // `Array.prototype.filterReject` method
21790
+ // https://github.com/tc39/proposal-array-filtering
21791
+ filterReject: createMethod(7)
21792
+ };
21875
21793
 
21876
- if (!path && !isAbsolute) {
21877
- path = '.';
21878
- }
21879
- if (path && trailingSlash) {
21880
- path += '/';
21881
- }
21882
21794
 
21883
- return (isAbsolute ? '/' : '') + path;
21884
- };
21795
+ /***/ }),
21885
21796
 
21886
- // posix version
21887
- exports.isAbsolute = function(path) {
21888
- return path.charAt(0) === '/';
21889
- };
21797
+ /***/ "b7e9":
21798
+ /***/ (function(module, exports, __webpack_require__) {
21890
21799
 
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
- };
21800
+ //! moment.js locale configuration
21801
+ //! locale : English (Singapore) [en-sg]
21802
+ //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension
21901
21803
 
21804
+ ;(function (global, factory) {
21805
+ true ? factory(__webpack_require__("c1df")) :
21806
+ undefined
21807
+ }(this, (function (moment) { 'use strict';
21902
21808
 
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
21809
+ //! moment.js locale configuration
22182
21810
 
22183
21811
  var enSg = moment.defineLocale('en-sg', {
22184
21812
  months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
@@ -28983,10 +28611,10 @@ var SHARED = '__core-js_shared__';
28983
28611
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
28984
28612
 
28985
28613
  (store.versions || (store.versions = [])).push({
28986
- version: '3.36.1',
28614
+ version: '3.36.0',
28987
28615
  mode: IS_PURE ? 'pure' : 'global',
28988
28616
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
28989
- license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
28617
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE',
28990
28618
  source: 'https://github.com/zloirock/core-js'
28991
28619
  });
28992
28620
 
@@ -30007,7 +29635,9 @@ var gOPD = __webpack_require__("2aa9");
30007
29635
  var $TypeError = __webpack_require__("0d25");
30008
29636
  var $floor = GetIntrinsic('%Math.floor%');
30009
29637
 
30010
- /** @type {import('.')} */
29638
+ /** @typedef {(...args: unknown[]) => unknown} Func */
29639
+
29640
+ /** @type {<T extends Func = Func>(fn: T, length: number, loose?: boolean) => T} */
30011
29641
  module.exports = function setFunctionLength(fn, length) {
30012
29642
  if (typeof fn !== 'function') {
30013
29643
  throw new $TypeError('`fn` is not a function');
@@ -30543,8 +30173,7 @@ defineWellKnownSymbol('iterator');
30543
30173
 
30544
30174
  /* eslint-disable no-proto -- safe */
30545
30175
  var uncurryThisAccessor = __webpack_require__("7282");
30546
- var isObject = __webpack_require__("861d");
30547
- var requireObjectCoercible = __webpack_require__("1d80");
30176
+ var anObject = __webpack_require__("825a");
30548
30177
  var aPossiblePrototype = __webpack_require__("3bbe");
30549
30178
 
30550
30179
  // `Object.setPrototypeOf` method
@@ -30561,9 +30190,8 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
30561
30190
  CORRECT_SETTER = test instanceof Array;
30562
30191
  } catch (error) { /* empty */ }
30563
30192
  return function setPrototypeOf(O, proto) {
30564
- requireObjectCoercible(O);
30193
+ anObject(O);
30565
30194
  aPossiblePrototype(proto);
30566
- if (!isObject(O)) return O;
30567
30195
  if (CORRECT_SETTER) setter(O, proto);
30568
30196
  else O.__proto__ = proto;
30569
30197
  return O;
@@ -31828,113 +31456,423 @@ module.exports = function (V, P) {
31828
31456
  /***/ "dc99":
31829
31457
  /***/ (function(module, exports, __webpack_require__) {
31830
31458
 
31831
- "use strict";
31459
+ "use strict";
31460
+
31461
+
31462
+ /** @type {import('./range')} */
31463
+ module.exports = RangeError;
31464
+
31465
+
31466
+ /***/ }),
31467
+
31468
+ /***/ "dcc3":
31469
+ /***/ (function(module, exports, __webpack_require__) {
31470
+
31471
+ "use strict";
31472
+
31473
+ var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
31474
+ var create = __webpack_require__("7c73");
31475
+ var createPropertyDescriptor = __webpack_require__("5c6c");
31476
+ var setToStringTag = __webpack_require__("d44e");
31477
+ var Iterators = __webpack_require__("3f8c");
31478
+
31479
+ var returnThis = function () { return this; };
31480
+
31481
+ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
31482
+ var TO_STRING_TAG = NAME + ' Iterator';
31483
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
31484
+ setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
31485
+ Iterators[TO_STRING_TAG] = returnThis;
31486
+ return IteratorConstructor;
31487
+ };
31488
+
31489
+
31490
+ /***/ }),
31491
+
31492
+ /***/ "dd0e":
31493
+ /***/ (function(module, exports, __webpack_require__) {
31494
+
31495
+ // extracted by mini-css-extract-plugin
31496
+
31497
+ /***/ }),
31498
+
31499
+ /***/ "ddb0":
31500
+ /***/ (function(module, exports, __webpack_require__) {
31501
+
31502
+ "use strict";
31503
+
31504
+ var global = __webpack_require__("da84");
31505
+ var DOMIterables = __webpack_require__("fdbc");
31506
+ var DOMTokenListPrototype = __webpack_require__("785a");
31507
+ var ArrayIteratorMethods = __webpack_require__("e260");
31508
+ var createNonEnumerableProperty = __webpack_require__("9112");
31509
+ var setToStringTag = __webpack_require__("d44e");
31510
+ var wellKnownSymbol = __webpack_require__("b622");
31511
+
31512
+ var ITERATOR = wellKnownSymbol('iterator');
31513
+ var ArrayValues = ArrayIteratorMethods.values;
31514
+
31515
+ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
31516
+ if (CollectionPrototype) {
31517
+ // some Chrome versions have non-configurable methods on DOMTokenList
31518
+ if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
31519
+ createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
31520
+ } catch (error) {
31521
+ CollectionPrototype[ITERATOR] = ArrayValues;
31522
+ }
31523
+ setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
31524
+ if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
31525
+ // some Chrome versions have non-configurable methods on DOMTokenList
31526
+ if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
31527
+ createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
31528
+ } catch (error) {
31529
+ CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
31530
+ }
31531
+ }
31532
+ }
31533
+ };
31534
+
31535
+ for (var COLLECTION_NAME in DOMIterables) {
31536
+ handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
31537
+ }
31538
+
31539
+ handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
31540
+
31541
+
31542
+ /***/ }),
31543
+
31544
+ /***/ "df51":
31545
+ /***/ (function(module, exports, __webpack_require__) {
31546
+
31547
+ // extracted by mini-css-extract-plugin
31548
+
31549
+ /***/ }),
31550
+
31551
+ /***/ "df75":
31552
+ /***/ (function(module, exports, __webpack_require__) {
31553
+
31554
+ "use strict";
31555
+
31556
+ var internalObjectKeys = __webpack_require__("ca84");
31557
+ var enumBugKeys = __webpack_require__("7839");
31558
+
31559
+ // `Object.keys` method
31560
+ // https://tc39.es/ecma262/#sec-object.keys
31561
+ // eslint-disable-next-line es/no-object-keys -- safe
31562
+ module.exports = Object.keys || function keys(O) {
31563
+ return internalObjectKeys(O, enumBugKeys);
31564
+ };
31565
+
31566
+
31567
+ /***/ }),
31568
+
31569
+ /***/ "df7c":
31570
+ /***/ (function(module, exports, __webpack_require__) {
31571
+
31572
+ /* WEBPACK VAR INJECTION */(function(process) {// .dirname, .basename, and .extname methods are extracted from Node.js v8.11.1,
31573
+ // backported and transplited with Babel, with backwards-compat fixes
31574
+
31575
+ // Copyright Joyent, Inc. and other Node contributors.
31576
+ //
31577
+ // Permission is hereby granted, free of charge, to any person obtaining a
31578
+ // copy of this software and associated documentation files (the
31579
+ // "Software"), to deal in the Software without restriction, including
31580
+ // without limitation the rights to use, copy, modify, merge, publish,
31581
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
31582
+ // persons to whom the Software is furnished to do so, subject to the
31583
+ // following conditions:
31584
+ //
31585
+ // The above copyright notice and this permission notice shall be included
31586
+ // in all copies or substantial portions of the Software.
31587
+ //
31588
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
31589
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31590
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
31591
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31592
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
31593
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31594
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
31595
+
31596
+ // resolves . and .. elements in a path array with directory names there
31597
+ // must be no slashes, empty elements, or device names (c:\) in the array
31598
+ // (so also no leading and trailing slashes - it does not distinguish
31599
+ // relative and absolute paths)
31600
+ function normalizeArray(parts, allowAboveRoot) {
31601
+ // if the path tries to go above the root, `up` ends up > 0
31602
+ var up = 0;
31603
+ for (var i = parts.length - 1; i >= 0; i--) {
31604
+ var last = parts[i];
31605
+ if (last === '.') {
31606
+ parts.splice(i, 1);
31607
+ } else if (last === '..') {
31608
+ parts.splice(i, 1);
31609
+ up++;
31610
+ } else if (up) {
31611
+ parts.splice(i, 1);
31612
+ up--;
31613
+ }
31614
+ }
31615
+
31616
+ // if the path is allowed to go above the root, restore leading ..s
31617
+ if (allowAboveRoot) {
31618
+ for (; up--; up) {
31619
+ parts.unshift('..');
31620
+ }
31621
+ }
31622
+
31623
+ return parts;
31624
+ }
31625
+
31626
+ // path.resolve([from ...], to)
31627
+ // posix version
31628
+ exports.resolve = function() {
31629
+ var resolvedPath = '',
31630
+ resolvedAbsolute = false;
31631
+
31632
+ for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
31633
+ var path = (i >= 0) ? arguments[i] : process.cwd();
31634
+
31635
+ // Skip empty and invalid entries
31636
+ if (typeof path !== 'string') {
31637
+ throw new TypeError('Arguments to path.resolve must be strings');
31638
+ } else if (!path) {
31639
+ continue;
31640
+ }
31641
+
31642
+ resolvedPath = path + '/' + resolvedPath;
31643
+ resolvedAbsolute = path.charAt(0) === '/';
31644
+ }
31645
+
31646
+ // At this point the path should be resolved to a full absolute path, but
31647
+ // handle relative paths to be safe (might happen when process.cwd() fails)
31648
+
31649
+ // Normalize the path
31650
+ resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
31651
+ return !!p;
31652
+ }), !resolvedAbsolute).join('/');
31653
+
31654
+ return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
31655
+ };
31656
+
31657
+ // path.normalize(path)
31658
+ // posix version
31659
+ exports.normalize = function(path) {
31660
+ var isAbsolute = exports.isAbsolute(path),
31661
+ trailingSlash = substr(path, -1) === '/';
31662
+
31663
+ // Normalize the path
31664
+ path = normalizeArray(filter(path.split('/'), function(p) {
31665
+ return !!p;
31666
+ }), !isAbsolute).join('/');
31667
+
31668
+ if (!path && !isAbsolute) {
31669
+ path = '.';
31670
+ }
31671
+ if (path && trailingSlash) {
31672
+ path += '/';
31673
+ }
31674
+
31675
+ return (isAbsolute ? '/' : '') + path;
31676
+ };
31677
+
31678
+ // posix version
31679
+ exports.isAbsolute = function(path) {
31680
+ return path.charAt(0) === '/';
31681
+ };
31682
+
31683
+ // posix version
31684
+ exports.join = function() {
31685
+ var paths = Array.prototype.slice.call(arguments, 0);
31686
+ return exports.normalize(filter(paths, function(p, index) {
31687
+ if (typeof p !== 'string') {
31688
+ throw new TypeError('Arguments to path.join must be strings');
31689
+ }
31690
+ return p;
31691
+ }).join('/'));
31692
+ };
31693
+
31832
31694
 
31695
+ // path.relative(from, to)
31696
+ // posix version
31697
+ exports.relative = function(from, to) {
31698
+ from = exports.resolve(from).substr(1);
31699
+ to = exports.resolve(to).substr(1);
31833
31700
 
31834
- /** @type {import('./range')} */
31835
- module.exports = RangeError;
31701
+ function trim(arr) {
31702
+ var start = 0;
31703
+ for (; start < arr.length; start++) {
31704
+ if (arr[start] !== '') break;
31705
+ }
31836
31706
 
31707
+ var end = arr.length - 1;
31708
+ for (; end >= 0; end--) {
31709
+ if (arr[end] !== '') break;
31710
+ }
31837
31711
 
31838
- /***/ }),
31712
+ if (start > end) return [];
31713
+ return arr.slice(start, end - start + 1);
31714
+ }
31839
31715
 
31840
- /***/ "dcc3":
31841
- /***/ (function(module, exports, __webpack_require__) {
31716
+ var fromParts = trim(from.split('/'));
31717
+ var toParts = trim(to.split('/'));
31842
31718
 
31843
- "use strict";
31719
+ var length = Math.min(fromParts.length, toParts.length);
31720
+ var samePartsLength = length;
31721
+ for (var i = 0; i < length; i++) {
31722
+ if (fromParts[i] !== toParts[i]) {
31723
+ samePartsLength = i;
31724
+ break;
31725
+ }
31726
+ }
31844
31727
 
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");
31728
+ var outputParts = [];
31729
+ for (var i = samePartsLength; i < fromParts.length; i++) {
31730
+ outputParts.push('..');
31731
+ }
31850
31732
 
31851
- var returnThis = function () { return this; };
31733
+ outputParts = outputParts.concat(toParts.slice(samePartsLength));
31852
31734
 
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;
31735
+ return outputParts.join('/');
31859
31736
  };
31860
31737
 
31738
+ exports.sep = '/';
31739
+ exports.delimiter = ':';
31861
31740
 
31862
- /***/ }),
31863
-
31864
- /***/ "dd0e":
31865
- /***/ (function(module, exports, __webpack_require__) {
31741
+ exports.dirname = function (path) {
31742
+ if (typeof path !== 'string') path = path + '';
31743
+ if (path.length === 0) return '.';
31744
+ var code = path.charCodeAt(0);
31745
+ var hasRoot = code === 47 /*/*/;
31746
+ var end = -1;
31747
+ var matchedSlash = true;
31748
+ for (var i = path.length - 1; i >= 1; --i) {
31749
+ code = path.charCodeAt(i);
31750
+ if (code === 47 /*/*/) {
31751
+ if (!matchedSlash) {
31752
+ end = i;
31753
+ break;
31754
+ }
31755
+ } else {
31756
+ // We saw the first non-path separator
31757
+ matchedSlash = false;
31758
+ }
31759
+ }
31866
31760
 
31867
- // extracted by mini-css-extract-plugin
31761
+ if (end === -1) return hasRoot ? '/' : '.';
31762
+ if (hasRoot && end === 1) {
31763
+ // return '//';
31764
+ // Backwards-compat fix:
31765
+ return '/';
31766
+ }
31767
+ return path.slice(0, end);
31768
+ };
31868
31769
 
31869
- /***/ }),
31770
+ function basename(path) {
31771
+ if (typeof path !== 'string') path = path + '';
31870
31772
 
31871
- /***/ "ddb0":
31872
- /***/ (function(module, exports, __webpack_require__) {
31773
+ var start = 0;
31774
+ var end = -1;
31775
+ var matchedSlash = true;
31776
+ var i;
31873
31777
 
31874
- "use strict";
31778
+ for (i = path.length - 1; i >= 0; --i) {
31779
+ if (path.charCodeAt(i) === 47 /*/*/) {
31780
+ // If we reached a path separator that was not part of a set of path
31781
+ // separators at the end of the string, stop now
31782
+ if (!matchedSlash) {
31783
+ start = i + 1;
31784
+ break;
31785
+ }
31786
+ } else if (end === -1) {
31787
+ // We saw the first non-path separator, mark this as the end of our
31788
+ // path component
31789
+ matchedSlash = false;
31790
+ end = i + 1;
31791
+ }
31792
+ }
31875
31793
 
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");
31794
+ if (end === -1) return '';
31795
+ return path.slice(start, end);
31796
+ }
31883
31797
 
31884
- var ITERATOR = wellKnownSymbol('iterator');
31885
- var ArrayValues = ArrayIteratorMethods.values;
31798
+ // Uses a mixed approach for backwards-compatibility, as ext behavior changed
31799
+ // in new Node.js versions, so only basename() above is backported here
31800
+ exports.basename = function (path, ext) {
31801
+ var f = basename(path);
31802
+ if (ext && f.substr(-1 * ext.length) === ext) {
31803
+ f = f.substr(0, f.length - ext.length);
31804
+ }
31805
+ return f;
31806
+ };
31886
31807
 
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];
31808
+ exports.extname = function (path) {
31809
+ if (typeof path !== 'string') path = path + '';
31810
+ var startDot = -1;
31811
+ var startPart = 0;
31812
+ var end = -1;
31813
+ var matchedSlash = true;
31814
+ // Track the state of characters (if any) we see before our first dot and
31815
+ // after any path separator we find
31816
+ var preDotState = 0;
31817
+ for (var i = path.length - 1; i >= 0; --i) {
31818
+ var code = path.charCodeAt(i);
31819
+ if (code === 47 /*/*/) {
31820
+ // If we reached a path separator that was not part of a set of path
31821
+ // separators at the end of the string, stop now
31822
+ if (!matchedSlash) {
31823
+ startPart = i + 1;
31824
+ break;
31825
+ }
31826
+ continue;
31902
31827
  }
31828
+ if (end === -1) {
31829
+ // We saw the first non-path separator, mark this as the end of our
31830
+ // extension
31831
+ matchedSlash = false;
31832
+ end = i + 1;
31833
+ }
31834
+ if (code === 46 /*.*/) {
31835
+ // If this is our first dot, mark it as the start of our extension
31836
+ if (startDot === -1)
31837
+ startDot = i;
31838
+ else if (preDotState !== 1)
31839
+ preDotState = 1;
31840
+ } else if (startDot !== -1) {
31841
+ // We saw a non-dot and non-path separator before our dot, so we should
31842
+ // have a good chance at having a non-empty extension
31843
+ preDotState = -1;
31903
31844
  }
31904
31845
  }
31846
+
31847
+ if (startDot === -1 || end === -1 ||
31848
+ // We saw a non-dot character immediately before the dot
31849
+ preDotState === 0 ||
31850
+ // The (right-most) trimmed path component is exactly '..'
31851
+ preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
31852
+ return '';
31853
+ }
31854
+ return path.slice(startDot, end);
31905
31855
  };
31906
31856
 
31907
- for (var COLLECTION_NAME in DOMIterables) {
31908
- handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
31857
+ function filter (xs, f) {
31858
+ if (xs.filter) return xs.filter(f);
31859
+ var res = [];
31860
+ for (var i = 0; i < xs.length; i++) {
31861
+ if (f(xs[i], i, xs)) res.push(xs[i]);
31862
+ }
31863
+ return res;
31909
31864
  }
31910
31865
 
31911
- handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
31912
-
31913
-
31914
- /***/ }),
31915
-
31916
- /***/ "df51":
31917
- /***/ (function(module, exports, __webpack_require__) {
31918
-
31919
- // extracted by mini-css-extract-plugin
31920
-
31921
- /***/ }),
31922
-
31923
- /***/ "df75":
31924
- /***/ (function(module, exports, __webpack_require__) {
31925
-
31926
- "use strict";
31927
-
31928
- var internalObjectKeys = __webpack_require__("ca84");
31929
- var enumBugKeys = __webpack_require__("7839");
31930
-
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
- };
31866
+ // String.prototype.substr - negative index don't work in IE8
31867
+ var substr = 'ab'.substr(-1) === 'b'
31868
+ ? function (str, start, len) { return str.substr(start, len) }
31869
+ : function (str, start, len) {
31870
+ if (start < 0) start = str.length + start;
31871
+ return str.substr(start, len);
31872
+ }
31873
+ ;
31937
31874
 
31875
+ /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("4362")))
31938
31876
 
31939
31877
  /***/ }),
31940
31878
 
@@ -33800,6 +33738,13 @@ module.exports = function (key) {
33800
33738
 
33801
33739
  /***/ }),
33802
33740
 
33741
+ /***/ "fa5b":
33742
+ /***/ (function(module, exports, __webpack_require__) {
33743
+
33744
+ // extracted by mini-css-extract-plugin
33745
+
33746
+ /***/ }),
33747
+
33803
33748
  /***/ "facd":
33804
33749
  /***/ (function(module, exports, __webpack_require__) {
33805
33750
 
@@ -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=57ca92e1
34649
+ var srcvue_type_template_id_57ca92e1_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},on:{"change":_vm.changeMenu}})],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_57ca92e1_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=57ca92e1
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
 
@@ -34840,6 +34795,9 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34840
34795
  });
34841
34796
  }
34842
34797
  },
34798
+ changeMenu: function changeMenu(res, flag) {
34799
+ this.$emit('change', res, flag);
34800
+ },
34843
34801
  handleClickMenu: function handleClickMenu(subItem) {
34844
34802
  if (this.currentPath == subItem.path) return;
34845
34803
  var code = this.getUrlParam('projectLinkCode');
@@ -34849,9 +34807,19 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34849
34807
  var pageUrl = "#/mainrouter?projectLinkCode=".concat(code, "&theme=").concat(this.engine.theme.class, "&projectCodeId=").concat(code, "&pageUrl=").concat(encodeURIComponent(subItem.path));
34850
34808
  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
34809
  } else {
34810
+ var _top2, _top3;
34852
34811
  //走本地路由
34853
34812
  this.$router.push(subItem.path.split('#')[1]);
34854
34813
 
34814
+ //本地路由变更后,浏览器地址也要同步变更
34815
+ var _plocation = (_top2 = top) !== null && _top2 !== void 0 && _top2.location ? top.location : location;
34816
+ var _pageUrl = "#/mainrouter?projectLinkCode=".concat(code, "&theme=").concat(this.engine.theme.class, "&projectCodeId=").concat(code, "&pageUrl=").concat(encodeURIComponent(subItem.path));
34817
+ if (subItem.targetUrl) {
34818
+ _pageUrl = "".concat(_pageUrl, "&otherTargetUrl=").concat(subItem.targetUrl);
34819
+ }
34820
+ var his = (_top3 = top) !== null && _top3 !== void 0 && _top3.history ? top.history : history;
34821
+ his.replaceState({}, "", "".concat(_plocation.origin).concat(_plocation.pathname).concat(_pageUrl));
34822
+
34855
34823
  //通知菜单调度层,路由已经变更
34856
34824
  this.$emit('change', subItem, true);
34857
34825
  }
@@ -34860,8 +34828,8 @@ var srcvue_type_template_id_6a811086_staticRenderFns = []
34860
34828
  });
34861
34829
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=script&lang=js
34862
34830
  /* 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");
34831
+ // EXTERNAL MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue?vue&type=style&index=0&id=57ca92e1&prod&lang=scss
34832
+ var srcvue_type_style_index_0_id_57ca92e1_prod_lang_scss = __webpack_require__("4315");
34865
34833
 
34866
34834
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/src/index.vue
34867
34835
 
@@ -34874,8 +34842,8 @@ var srcvue_type_style_index_0_id_6a811086_prod_lang_scss = __webpack_require__("
34874
34842
 
34875
34843
  var SubMenu_src_component = normalizeComponent(
34876
34844
  components_SubMenu_srcvue_type_script_lang_js,
34877
- srcvue_type_template_id_6a811086_render,
34878
- srcvue_type_template_id_6a811086_staticRenderFns,
34845
+ srcvue_type_template_id_57ca92e1_render,
34846
+ srcvue_type_template_id_57ca92e1_staticRenderFns,
34879
34847
  false,
34880
34848
  null,
34881
34849
  null,
@@ -34887,7 +34855,7 @@ var SubMenu_src_component = normalizeComponent(
34887
34855
  // CONCATENATED MODULE: ./package/antanklayout/src/components/SubMenu/index.js
34888
34856
 
34889
34857
  /* 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
34858
+ // 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
34859
  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
34860
  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
34861