@bytenew/bn-applet-ui 1.1.20 → 1.1.22

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.
@@ -298,7 +298,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, `*[data-v-c3b70e18]{box-sizing:border-b
298
298
 
299
299
  /***/ },
300
300
 
301
- /***/ 80
301
+ /***/ 9411
302
302
  (module, __webpack_exports__, __webpack_require__) {
303
303
 
304
304
  "use strict";
@@ -315,7 +315,7 @@ __webpack_require__.r(__webpack_exports__);
315
315
 
316
316
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
317
317
  // Module
318
- ___CSS_LOADER_EXPORT___.push([module.id, `.bnInput-underline[data-v-dc8beb30] .el-input__inner{box-shadow:none;border-bottom:1px solid #dcdfe6;border-radius:0}`, ""]);
318
+ ___CSS_LOADER_EXPORT___.push([module.id, `.bnInput-underline[data-v-ff93d4f6] .el-input__inner{box-shadow:none;border-bottom:1px solid #dcdfe6;border-radius:0}`, ""]);
319
319
  // Exports
320
320
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
321
321
 
@@ -950,19 +950,19 @@ var update = add("2c657678", content, true, {"sourceMap":false,"shadowMode":fals
950
950
 
951
951
  /***/ },
952
952
 
953
- /***/ 1494
953
+ /***/ 7021
954
954
  (module, __unused_webpack_exports, __webpack_require__) {
955
955
 
956
956
  // style-loader: Adds some css to the DOM by adding a <style> tag
957
957
 
958
958
  // load the styles
959
- var content = __webpack_require__(80);
959
+ var content = __webpack_require__(9411);
960
960
  if(content.__esModule) content = content.default;
961
961
  if(typeof content === 'string') content = [[module.id, content, '']];
962
962
  if(content.locals) module.exports = content.locals;
963
963
  // add the styles to the DOM
964
964
  var add = (__webpack_require__(9548)/* ["default"] */ .A)
965
- var update = add("7ee7d200", content, true, {"sourceMap":false,"shadowMode":false});
965
+ var update = add("0eabdad2", content, true, {"sourceMap":false,"shadowMode":false});
966
966
 
967
967
  /***/ },
968
968
 
@@ -1914,6 +1914,56 @@ var uncurryThis = __webpack_require__(9504);
1914
1914
  module.exports = uncurryThis([].slice);
1915
1915
 
1916
1916
 
1917
+ /***/ },
1918
+
1919
+ /***/ 4488
1920
+ (module, __unused_webpack_exports, __webpack_require__) {
1921
+
1922
+ "use strict";
1923
+
1924
+ var arraySlice = __webpack_require__(7680);
1925
+
1926
+ var floor = Math.floor;
1927
+
1928
+ var sort = function (array, comparefn) {
1929
+ var length = array.length;
1930
+
1931
+ if (length < 8) {
1932
+ // insertion sort
1933
+ var i = 1;
1934
+ var element, j;
1935
+
1936
+ while (i < length) {
1937
+ j = i;
1938
+ element = array[i];
1939
+ while (j && comparefn(array[j - 1], element) > 0) {
1940
+ array[j] = array[--j];
1941
+ }
1942
+ if (j !== i++) array[j] = element;
1943
+ }
1944
+ } else {
1945
+ // merge sort
1946
+ var middle = floor(length / 2);
1947
+ var left = sort(arraySlice(array, 0, middle), comparefn);
1948
+ var right = sort(arraySlice(array, middle), comparefn);
1949
+ var llength = left.length;
1950
+ var rlength = right.length;
1951
+ var lindex = 0;
1952
+ var rindex = 0;
1953
+
1954
+ while (lindex < llength || rindex < rlength) {
1955
+ array[lindex + rindex] = (lindex < llength && rindex < rlength)
1956
+ ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]
1957
+ : lindex < llength ? left[lindex++] : right[rindex++];
1958
+ }
1959
+ }
1960
+
1961
+ return array;
1962
+ };
1963
+
1964
+ module.exports = sort;
1965
+
1966
+
1917
1967
  /***/ },
1918
1968
 
1919
1969
  /***/ 7433
@@ -2783,6 +2833,32 @@ module.exports = [
2783
2833
  ];
2784
2834
 
2785
2835
 
2836
+ /***/ },
2837
+
2838
+ /***/ 3709
2839
+ (module, __unused_webpack_exports, __webpack_require__) {
2840
+
2841
+ "use strict";
2842
+
2843
+ var userAgent = __webpack_require__(2839);
2844
+
2845
+ var firefox = userAgent.match(/firefox\/(\d+)/i);
2846
+
2847
+ module.exports = !!firefox && +firefox[1];
2848
+
2849
+
2850
+ /***/ },
2851
+
2852
+ /***/ 3763
2853
+ (module, __unused_webpack_exports, __webpack_require__) {
2854
+
2855
+ "use strict";
2856
+
2857
+ var UA = __webpack_require__(2839);
2858
+
2859
+ module.exports = /MSIE|Trident/.test(UA);
2860
+
2861
+
2786
2862
  /***/ },
2787
2863
 
2788
2864
  /***/ 2839
@@ -2834,6 +2910,20 @@ if (!version && userAgent) {
2834
2910
  module.exports = version;
2835
2911
 
2836
2912
 
2913
+ /***/ },
2914
+
2915
+ /***/ 3607
2916
+ (module, __unused_webpack_exports, __webpack_require__) {
2917
+
2918
+ "use strict";
2919
+
2920
+ var userAgent = __webpack_require__(2839);
2921
+
2922
+ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
2923
+
2924
+ module.exports = !!webkit && +webkit[1];
2925
+
2926
+
2837
2927
  /***/ },
2838
2928
 
2839
2929
  /***/ 4215
@@ -4621,6 +4711,29 @@ Function.prototype.toString = makeBuiltIn(function toString() {
4621
4711
  }, 'toString');
4622
4712
 
4623
4713
 
4714
+ /***/ },
4715
+
4716
+ /***/ 2248
4717
+ (module, __unused_webpack_exports, __webpack_require__) {
4718
+
4719
+ "use strict";
4720
+
4721
+ var uncurryThis = __webpack_require__(9504);
4722
+
4723
+ // eslint-disable-next-line es/no-map -- safe
4724
+ var MapPrototype = Map.prototype;
4725
+
4726
+ module.exports = {
4727
+ // eslint-disable-next-line es/no-map -- safe
4728
+ Map: Map,
4729
+ set: uncurryThis(MapPrototype.set),
4730
+ get: uncurryThis(MapPrototype.get),
4731
+ has: uncurryThis(MapPrototype.has),
4732
+ remove: uncurryThis(MapPrototype['delete']),
4733
+ proto: MapPrototype
4734
+ };
4735
+
4736
+
4624
4737
  /***/ },
4625
4738
 
4626
4739
  /***/ 741
@@ -6395,6 +6508,30 @@ module.exports = function repeat(count) {
6395
6508
  };
6396
6509
 
6397
6510
 
6511
+ /***/ },
6512
+
6513
+ /***/ 706
6514
+ (module, __unused_webpack_exports, __webpack_require__) {
6515
+
6516
+ "use strict";
6517
+
6518
+ var PROPER_FUNCTION_NAME = (__webpack_require__(350).PROPER);
6519
+ var fails = __webpack_require__(9039);
6520
+ var whitespaces = __webpack_require__(7452);
6521
+
6522
+ var non = '\u200B\u0085\u180E';
6523
+
6524
+ // check that a method works with the correct list
6525
+ // of whitespaces and has a correct name
6526
+ module.exports = function (METHOD_NAME) {
6527
+ return fails(function () {
6528
+ return !!whitespaces[METHOD_NAME]()
6529
+ || non[METHOD_NAME]() !== non
6530
+ || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
6531
+ });
6532
+ };
6533
+
6534
+
6398
6535
  /***/ },
6399
6536
 
6400
6537
  /***/ 3802
@@ -7359,6 +7496,122 @@ $({ target: 'Array', proto: true, forced: !STRICT_METHOD }, {
7359
7496
  });
7360
7497
 
7361
7498
 
7499
+ /***/ },
7500
+
7501
+ /***/ 6910
7502
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
7503
+
7504
+ "use strict";
7505
+
7506
+ var $ = __webpack_require__(6518);
7507
+ var uncurryThis = __webpack_require__(9504);
7508
+ var aCallable = __webpack_require__(9306);
7509
+ var toObject = __webpack_require__(8981);
7510
+ var lengthOfArrayLike = __webpack_require__(6198);
7511
+ var deletePropertyOrThrow = __webpack_require__(4606);
7512
+ var toString = __webpack_require__(655);
7513
+ var fails = __webpack_require__(9039);
7514
+ var internalSort = __webpack_require__(4488);
7515
+ var arrayMethodIsStrict = __webpack_require__(4598);
7516
+ var FF = __webpack_require__(3709);
7517
+ var IE_OR_EDGE = __webpack_require__(3763);
7518
+ var V8 = __webpack_require__(9519);
7519
+ var WEBKIT = __webpack_require__(3607);
7520
+
7521
+ var test = [];
7522
+ var nativeSort = uncurryThis(test.sort);
7523
+ var push = uncurryThis(test.push);
7524
+
7525
+ // IE8-
7526
+ var FAILS_ON_UNDEFINED = fails(function () {
7527
+ test.sort(undefined);
7528
+ });
7529
+ // V8 bug
7530
+ var FAILS_ON_NULL = fails(function () {
7531
+ test.sort(null);
7532
+ });
7533
+ // Old WebKit
7534
+ var STRICT_METHOD = arrayMethodIsStrict('sort');
7535
+
7536
+ var STABLE_SORT = !fails(function () {
7537
+ // feature detection can be too slow, so check engines versions
7538
+ if (V8) return V8 < 70;
7539
+ if (FF && FF > 3) return;
7540
+ if (IE_OR_EDGE) return true;
7541
+ if (WEBKIT) return WEBKIT < 603;
7542
+
7543
+ var result = '';
7544
+ var code, chr, value, index;
7545
+
7546
+ // generate an array with more 512 elements (Chakra and old V8 fails only in this case)
7547
+ for (code = 65; code < 76; code++) {
7548
+ chr = String.fromCharCode(code);
7549
+
7550
+ switch (code) {
7551
+ case 66: case 69: case 70: case 72: value = 3; break;
7552
+ case 68: case 71: value = 4; break;
7553
+ default: value = 2;
7554
+ }
7555
+
7556
+ for (index = 0; index < 47; index++) {
7557
+ test.push({ k: chr + index, v: value });
7558
+ }
7559
+ }
7560
+
7561
+ test.sort(function (a, b) { return b.v - a.v; });
7562
+
7563
+ for (index = 0; index < test.length; index++) {
7564
+ chr = test[index].k.charAt(0);
7565
+ if (result.charAt(result.length - 1) !== chr) result += chr;
7566
+ }
7567
+
7568
+ return result !== 'DGBEFHACIJK';
7569
+ });
7570
+
7571
+ var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT;
7572
+
7573
+ var getSortCompare = function (comparefn) {
7574
+ return function (x, y) {
7575
+ if (y === undefined) return -1;
7576
+ if (x === undefined) return 1;
7577
+ if (comparefn !== undefined) return +comparefn(x, y) || 0;
7578
+ var xString = toString(x);
7579
+ var yString = toString(y);
7580
+ return xString === yString ? 0 : xString > yString ? 1 : -1;
7581
+ };
7582
+ };
7583
+
7584
+ // `Array.prototype.sort` method
7585
+ // https://tc39.es/ecma262/#sec-array.prototype.sort
7586
+ $({ target: 'Array', proto: true, forced: FORCED }, {
7587
+ sort: function sort(comparefn) {
7588
+ if (comparefn !== undefined) aCallable(comparefn);
7589
+
7590
+ var array = toObject(this);
7591
+
7592
+ if (STABLE_SORT) return comparefn === undefined ? nativeSort(array) : nativeSort(array, comparefn);
7593
+
7594
+ var items = [];
7595
+ var arrayLength = lengthOfArrayLike(array);
7596
+ var itemsLength, index;
7597
+
7598
+ for (index = 0; index < arrayLength; index++) {
7599
+ if (index in array) push(items, array[index]);
7600
+ }
7601
+
7602
+ internalSort(items, getSortCompare(comparefn));
7603
+
7604
+ itemsLength = lengthOfArrayLike(items);
7605
+ index = 0;
7606
+
7607
+ while (index < itemsLength) array[index] = items[index++];
7608
+ while (index < arrayLength) deletePropertyOrThrow(array, index++);
7609
+
7610
+ return array;
7611
+ }
7612
+ });
7613
+
7614
+
7362
7615
  /***/ },
7363
7616
 
7364
7617
  /***/ 4554
@@ -8302,6 +8555,92 @@ if ($stringify) $({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_
8302
8555
  });
8303
8556
 
8304
8557
 
8558
+ /***/ },
8559
+
8560
+ /***/ 8523
8561
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
8562
+
8563
+ "use strict";
8564
+
8565
+ var collection = __webpack_require__(6468);
8566
+ var collectionStrong = __webpack_require__(6938);
8567
+
8568
+ // `Map` constructor
8569
+ // https://tc39.es/ecma262/#sec-map-objects
8570
+ collection('Map', function (init) {
8571
+ return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };
8572
+ }, collectionStrong);
8573
+
8574
+
8575
+ /***/ },
8576
+
8577
+ /***/ 2731
8578
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
8579
+
8580
+ "use strict";
8581
+
8582
+ var $ = __webpack_require__(6518);
8583
+ var aCallable = __webpack_require__(9306);
8584
+ var MapHelpers = __webpack_require__(2248);
8585
+ var IS_PURE = __webpack_require__(6395);
8586
+
8587
+ var get = MapHelpers.get;
8588
+ var has = MapHelpers.has;
8589
+ var set = MapHelpers.set;
8590
+
8591
+ // `Map.prototype.getOrInsertComputed` method
8592
+ // https://tc39.es/ecma262/#sec-map.prototype.getorinsertcomputed
8593
+ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
8594
+ getOrInsertComputed: function getOrInsertComputed(key, callbackfn) {
8595
+ var hasKey = has(this, key);
8596
+ aCallable(callbackfn);
8597
+ if (hasKey) return get(this, key);
8598
+ // CanonicalizeKeyedCollectionKey
8599
+ if (key === 0 && 1 / key === -Infinity) key = 0;
8600
+ var value = callbackfn(key);
8601
+ set(this, key, value);
8602
+ return value;
8603
+ }
8604
+ });
8605
+
8606
+
8607
+ /***/ },
8608
+
8609
+ /***/ 5367
8610
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
8611
+
8612
+ "use strict";
8613
+
8614
+ var $ = __webpack_require__(6518);
8615
+ var MapHelpers = __webpack_require__(2248);
8616
+ var IS_PURE = __webpack_require__(6395);
8617
+
8618
+ var get = MapHelpers.get;
8619
+ var has = MapHelpers.has;
8620
+ var set = MapHelpers.set;
8621
+
8622
+ // `Map.prototype.getOrInsert` method
8623
+ // https://tc39.es/ecma262/#sec-map.prototype.getorinsert
8624
+ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
8625
+ getOrInsert: function getOrInsert(key, value) {
8626
+ if (has(this, key)) return get(this, key);
8627
+ set(this, key, value);
8628
+ return value;
8629
+ }
8630
+ });
8631
+
8632
+
8633
+ /***/ },
8634
+
8635
+ /***/ 6033
8636
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
8637
+
8638
+ "use strict";
8639
+
8640
+ // TODO: Remove this module from `core-js@4` since it's replaced to module below
8641
+ __webpack_require__(8523);
8642
+
8643
+
8305
8644
  /***/ },
8306
8645
 
8307
8646
  /***/ 2892
@@ -9243,6 +9582,48 @@ $({ target: 'Set', proto: true, real: true, forced: FORCED }, {
9243
9582
  });
9244
9583
 
9245
9584
 
9585
+ /***/ },
9586
+
9587
+ /***/ 9449
9588
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
9589
+
9590
+ "use strict";
9591
+
9592
+ var $ = __webpack_require__(6518);
9593
+ var uncurryThis = __webpack_require__(7476);
9594
+ var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
9595
+ var toLength = __webpack_require__(8014);
9596
+ var toString = __webpack_require__(655);
9597
+ var notARegExp = __webpack_require__(511);
9598
+ var requireObjectCoercible = __webpack_require__(7750);
9599
+ var correctIsRegExpLogic = __webpack_require__(1436);
9600
+ var IS_PURE = __webpack_require__(6395);
9601
+
9602
+ var slice = uncurryThis(''.slice);
9603
+ var min = Math.min;
9604
+
9605
+ var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('endsWith');
9606
+ // https://github.com/zloirock/core-js/pull/702
9607
+ var MDN_POLYFILL_BUG = !IS_PURE && !CORRECT_IS_REGEXP_LOGIC && !!function () {
9608
+ var descriptor = getOwnPropertyDescriptor(String.prototype, 'endsWith');
9609
+ return descriptor && !descriptor.writable;
9610
+ }();
9611
+
9612
+ // `String.prototype.endsWith` method
9613
+ // https://tc39.es/ecma262/#sec-string.prototype.endswith
9614
+ $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
9615
+ endsWith: function endsWith(searchString /* , endPosition = @length */) {
9616
+ var that = toString(requireObjectCoercible(this));
9617
+ notARegExp(searchString);
9618
+ var search = toString(searchString);
9619
+ var endPosition = arguments.length > 1 ? arguments[1] : undefined;
9620
+ var len = that.length;
9621
+ var end = endPosition === undefined ? len : min(toLength(endPosition), len);
9622
+ return slice(that, end - search.length, end) === search;
9623
+ }
9624
+ });
9625
+
9626
+
9246
9627
  /***/ },
9247
9628
 
9248
9629
  /***/ 1699
@@ -9648,6 +10029,26 @@ $({ target: 'String', proto: true, forced: FORCED }, {
9648
10029
  });
9649
10030
 
9650
10031
 
10032
+ /***/ },
10033
+
10034
+ /***/ 2762
10035
+ (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
10036
+
10037
+ "use strict";
10038
+
10039
+ var $ = __webpack_require__(6518);
10040
+ var $trim = (__webpack_require__(3802).trim);
10041
+ var forcedStringTrimMethod = __webpack_require__(706);
10042
+
10043
+ // `String.prototype.trim` method
10044
+ // https://tc39.es/ecma262/#sec-string.prototype.trim
10045
+ $({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
10046
+ trim: function trim() {
10047
+ return $trim(this);
10048
+ }
10049
+ });
10050
+
10051
+
9651
10052
  /***/ },
9652
10053
 
9653
10054
  /***/ 3500
@@ -9914,7 +10315,9 @@ __webpack_require__.d(__webpack_exports__, {
9914
10315
  BnInputNum: () => (/* reexport */ BnInputNum),
9915
10316
  BnRuleCondition: () => (/* reexport */ bnRuleCondition),
9916
10317
  BnSelect: () => (/* reexport */ BnSelect_select),
9917
- "default": () => (/* binding */ entry_lib)
10318
+ addressParse: () => (/* reexport */ addressParse),
10319
+ "default": () => (/* binding */ entry_lib),
10320
+ idsToTexts: () => (/* reexport */ idsToTexts)
9918
10321
  });
9919
10322
 
9920
10323
  ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
@@ -9935,7 +10338,7 @@ if (typeof window !== 'undefined') {
9935
10338
  // Indicate to webpack that this file can be concatenated
9936
10339
  /* harmony default export */ const setPublicPath = (null);
9937
10340
 
9938
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnAddress/index.vue?vue&type=template&id=8705bc38&scoped=true
10341
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnAddress/index.vue?vue&type=template&id=8705bc38&scoped=true
9939
10342
  var render = function render() {
9940
10343
  var _vm = this,
9941
10344
  _c = _vm._self._c;
@@ -10330,7 +10733,7 @@ var component = normalizeComponent(
10330
10733
  )
10331
10734
 
10332
10735
  /* harmony default export */ const BnAddress = (component.exports);
10333
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnAddressParse/index.vue?vue&type=template&id=3a0d7cb0
10736
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnAddressParse/index.vue?vue&type=template&id=3a0d7cb0
10334
10737
  var BnAddressParsevue_type_template_id_3a0d7cb0_render = function render() {
10335
10738
  var _vm = this,
10336
10739
  _c = _vm._self._c;
@@ -10407,8 +10810,8 @@ var external_lodash_default = /*#__PURE__*/__webpack_require__.n(external_lodash
10407
10810
  };
10408
10811
  },
10409
10812
  methods: {
10410
- /**
10411
- * 自动识别方法(使用防抖)
10813
+ /**
10814
+ * 自动识别方法(使用防抖)
10412
10815
  */
10413
10816
  autoAds: (0,external_lodash_namespaceObject.debounce)(function () {
10414
10817
  var _this = this;
@@ -10467,7 +10870,7 @@ var BnAddressParse_component = normalizeComponent(
10467
10870
  )
10468
10871
 
10469
10872
  /* harmony default export */ const BnAddressParse = (BnAddressParse_component.exports);
10470
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnCheck/BnCheck.vue?vue&type=template&id=3782b7e9&scoped=true
10873
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnCheck/BnCheck.vue?vue&type=template&id=3782b7e9&scoped=true
10471
10874
  var BnCheckvue_type_template_id_3782b7e9_scoped_true_render = function render() {
10472
10875
  var _vm = this,
10473
10876
  _c = _vm._self._c;
@@ -10611,8 +11014,8 @@ var es_string_includes = __webpack_require__(1699);
10611
11014
  }
10612
11015
  },
10613
11016
  methods: {
10614
- /**
10615
- * 组件默认判断
11017
+ /**
11018
+ * 组件默认判断
10616
11019
  * */
10617
11020
  check: function check() {
10618
11021
  var _this = this;
@@ -10637,8 +11040,8 @@ var es_string_includes = __webpack_require__(1699);
10637
11040
  }
10638
11041
  }
10639
11042
  },
10640
- /**
10641
- * 点击事件
11043
+ /**
11044
+ * 点击事件
10642
11045
  * */
10643
11046
  handleClick: function handleClick() {
10644
11047
  var _this2 = this;
@@ -10683,8 +11086,8 @@ var es_string_includes = __webpack_require__(1699);
10683
11086
  });
10684
11087
  this.emitClick();
10685
11088
  },
10686
- /**
10687
- * 点击事件透出
11089
+ /**
11090
+ * 点击事件透出
10688
11091
  * */
10689
11092
  emitClick: function emitClick() {
10690
11093
  if (this.onClick) {
@@ -10724,7 +11127,7 @@ var BnCheck_component = normalizeComponent(
10724
11127
  )
10725
11128
 
10726
11129
  /* harmony default export */ const BnCheck = (BnCheck_component.exports);
10727
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnDateRange/bnDateRange.vue?vue&type=template&id=5575777a
11130
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnDateRange/bnDateRange.vue?vue&type=template&id=5575777a
10728
11131
  var bnDateRangevue_type_template_id_5575777a_render = function render() {
10729
11132
  var _vm = this,
10730
11133
  _c = _vm._self._c;
@@ -10903,8 +11306,8 @@ var es_object_keys = __webpack_require__(9432);
10903
11306
  };
10904
11307
  },
10905
11308
  methods: {
10906
- /**
10907
- * 更新时间选择器数据
11309
+ /**
11310
+ * 更新时间选择器数据
10908
11311
  * */
10909
11312
  updateValue: function updateValue(value) {
10910
11313
  // 更新v-model
@@ -10914,22 +11317,22 @@ var es_object_keys = __webpack_require__(9432);
10914
11317
  // 发送change事件
10915
11318
  this.$emit('change', value);
10916
11319
  },
10917
- /**
10918
- * 失去焦点
11320
+ /**
11321
+ * 失去焦点
10919
11322
  * */
10920
11323
  blur: function blur(val) {
10921
11324
  this.$emit('blur', val);
10922
11325
  },
10923
- /**
10924
- * 获得焦点
11326
+ /**
11327
+ * 获得焦点
10925
11328
  * */
10926
11329
  focus: function focus(val) {
10927
11330
  this.$emit('focus', val);
10928
11331
  }
10929
11332
  },
10930
11333
  computed: {
10931
- /**
10932
- * 日期组件value
11334
+ /**
11335
+ * 日期组件value
10933
11336
  * */
10934
11337
  date: {
10935
11338
  get: function get() {
@@ -10985,7 +11388,7 @@ var bnDateRange_component = normalizeComponent(
10985
11388
  )
10986
11389
 
10987
11390
  /* harmony default export */ const bnDateRange = (bnDateRange_component.exports);
10988
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnDialog/dialog.vue?vue&type=template&id=f9aaf6de
11391
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnDialog/dialog.vue?vue&type=template&id=f9aaf6de
10989
11392
  var dialogvue_type_template_id_f9aaf6de_render = function render() {
10990
11393
  var _vm = this,
10991
11394
  _c = _vm._self._c;
@@ -11245,7 +11648,7 @@ var dialog_component = normalizeComponent(
11245
11648
  var es_regexp_exec = __webpack_require__(7495);
11246
11649
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.search.js
11247
11650
  var es_string_search = __webpack_require__(5746);
11248
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnDown/bnDropdown.vue?vue&type=template&id=a5f24f64&scoped=true
11651
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnDown/bnDropdown.vue?vue&type=template&id=a5f24f64&scoped=true
11249
11652
 
11250
11653
 
11251
11654
 
@@ -11970,10 +12373,10 @@ function toPinYin(chart) {
11970
12373
  return getFullChars(chart.replace(/[&\|\\\*^%$#@\-]/g, "")).toLowerCase();
11971
12374
  }
11972
12375
 
11973
- /**
11974
- * 匹配大小写字母拼音 返回Boolean值
11975
- * @param {*} chart 需要匹配的字符
11976
- * @param {*} data 需要进行匹配的字符
12376
+ /**
12377
+ * 匹配大小写字母拼音 返回Boolean值
12378
+ * @param {*} chart 需要匹配的字符
12379
+ * @param {*} data 需要进行匹配的字符
11977
12380
  */
11978
12381
  function searchToBoolean(chart, data) {
11979
12382
  return toPinYin(data).indexOf(toPinYin(chart)) !== -1;
@@ -12057,11 +12460,11 @@ function searchItemFlat(chart, data, name) {
12057
12460
  name: "bnDropdown",
12058
12461
  props: {
12059
12462
  value: [String, Array, Number, Object],
12060
- /**
12061
- * 下拉弹窗模式
12062
- * 单选(singleCheck) 默认
12063
- * 多选(multiCheck)
12064
- * 多选框(multiCheckBox)
12463
+ /**
12464
+ * 下拉弹窗模式
12465
+ * 单选(singleCheck) 默认
12466
+ * 多选(multiCheck)
12467
+ * 多选框(multiCheckBox)
12065
12468
  */
12066
12469
  checkMode: {
12067
12470
  type: String,
@@ -12234,8 +12637,8 @@ function searchItemFlat(chart, data, name) {
12234
12637
  this.optionCheckMap = checkedMap;
12235
12638
  }
12236
12639
  },
12237
- /**
12238
- * 打开选择器时触发,初始化
12640
+ /**
12641
+ * 打开选择器时触发,初始化
12239
12642
  * */
12240
12643
  open: function open() {
12241
12644
  var _this2 = this;
@@ -12267,8 +12670,8 @@ function searchItemFlat(chart, data, name) {
12267
12670
  this.backshowMultiCheckBox();
12268
12671
  }
12269
12672
  },
12270
- /**
12271
- * 关闭时清除没有确定的选项
12673
+ /**
12674
+ * 关闭时清除没有确定的选项
12272
12675
  */
12273
12676
  close: function close() {
12274
12677
  // 多选框模式
@@ -12299,10 +12702,10 @@ function searchItemFlat(chart, data, name) {
12299
12702
  });
12300
12703
  }
12301
12704
  },
12302
- /**
12303
- * 动态计算title
12304
- * @param {Array} list 数组
12305
- * @param {String} id 需要匹配的id
12705
+ /**
12706
+ * 动态计算title
12707
+ * @param {Array} list 数组
12708
+ * @param {String} id 需要匹配的id
12306
12709
  * */
12307
12710
  foundTitle: function foundTitle() {
12308
12711
  var _this4 = this;
@@ -12324,8 +12727,8 @@ function searchItemFlat(chart, data, name) {
12324
12727
  }
12325
12728
  return title;
12326
12729
  },
12327
- /**
12328
- * 远程加载数据
12730
+ /**
12731
+ * 远程加载数据
12329
12732
  * */
12330
12733
  loadMore: function loadMore() {
12331
12734
  var _this5 = this;
@@ -12341,9 +12744,9 @@ function searchItemFlat(chart, data, name) {
12341
12744
  }
12342
12745
  });
12343
12746
  },
12344
- /**
12345
- * 判断是否选中 选中返回true,未选中返回false
12346
- * @param {Object} item 选项的对象数据
12747
+ /**
12748
+ * 判断是否选中 选中返回true,未选中返回false
12749
+ * @param {Object} item 选项的对象数据
12347
12750
  * */
12348
12751
  checked: function checked(item) {
12349
12752
  var check = false;
@@ -12375,9 +12778,9 @@ function searchItemFlat(chart, data, name) {
12375
12778
  }
12376
12779
  return check;
12377
12780
  },
12378
- /**
12379
- * 点击下拉菜单中的某一项,选中或取消选中
12380
- * @param {Object} item 选项的对象数据
12781
+ /**
12782
+ * 点击下拉菜单中的某一项,选中或取消选中
12783
+ * @param {Object} item 选项的对象数据
12381
12784
  * */
12382
12785
  chooseItem: function chooseItem(item) {
12383
12786
  var value = this.value ? JSON.parse(JSON.stringify(this.value)) : [];
@@ -12447,8 +12850,8 @@ function searchItemFlat(chart, data, name) {
12447
12850
  // change事件
12448
12851
  this.$emit("change", value);
12449
12852
  },
12450
- /**
12451
- * 快捷查询
12853
+ /**
12854
+ * 快捷查询
12452
12855
  * */
12453
12856
  search: debounce(function (val) {
12454
12857
  // 保存当前选中状态
@@ -12562,7 +12965,7 @@ var bnDropdown_component = normalizeComponent(
12562
12965
  )
12563
12966
 
12564
12967
  /* harmony default export */ const bnDropdown = (bnDropdown_component.exports);
12565
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFileView/BnFileView.vue?vue&type=template&id=27b6fb78&scoped=true
12968
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFileView/BnFileView.vue?vue&type=template&id=27b6fb78&scoped=true
12566
12969
  var BnFileViewvue_type_template_id_27b6fb78_scoped_true_render = function render() {
12567
12970
  var _vm = this,
12568
12971
  _c = _vm._self._c;
@@ -12669,7 +13072,7 @@ var es_error_to_string = __webpack_require__(6918);
12669
13072
  var es_date_to_string = __webpack_require__(3288);
12670
13073
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.parse-int.js
12671
13074
  var es_parse_int = __webpack_require__(8940);
12672
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFileView/videoPreview.vue?vue&type=template&id=9a7f7bec&scoped=true
13075
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFileView/videoPreview.vue?vue&type=template&id=9a7f7bec&scoped=true
12673
13076
  var videoPreviewvue_type_template_id_9a7f7bec_scoped_true_render = function render() {
12674
13077
  var _vm = this,
12675
13078
  _c = _vm._self._c;
@@ -12715,8 +13118,8 @@ var videoPreviewvue_type_template_id_9a7f7bec_scoped_true_staticRenderFns = [];
12715
13118
  }
12716
13119
  },
12717
13120
  methods: {
12718
- /**
12719
- * 打开播发视频
13121
+ /**
13122
+ * 打开播发视频
12720
13123
  * */
12721
13124
  open: function open(url) {
12722
13125
  this.url = url;
@@ -12751,7 +13154,7 @@ var videoPreview_component = normalizeComponent(
12751
13154
  )
12752
13155
 
12753
13156
  /* harmony default export */ const videoPreview = (videoPreview_component.exports);
12754
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFileView/FileDetail.vue?vue&type=template&id=7fcc19c2&scoped=true
13157
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFileView/FileDetail.vue?vue&type=template&id=7fcc19c2&scoped=true
12755
13158
  var FileDetailvue_type_template_id_7fcc19c2_scoped_true_render = function render() {
12756
13159
  var _vm = this,
12757
13160
  _c = _vm._self._c;
@@ -12855,8 +13258,8 @@ var es_parse_float = __webpack_require__(8459);
12855
13258
  }
12856
13259
  },
12857
13260
  methods: {
12858
- /**
12859
- * 获取下载链接
13261
+ /**
13262
+ * 获取下载链接
12860
13263
  * */
12861
13264
  getDownloadUrl: function getDownloadUrl(file) {
12862
13265
  if (this.downType === 'url') {
@@ -12864,8 +13267,8 @@ var es_parse_float = __webpack_require__(8459);
12864
13267
  }
12865
13268
  return !file.id ? file.url : '/v2/attachment/' + file.id;
12866
13269
  },
12867
- /**
12868
- * 计算附件大小
13270
+ /**
13271
+ * 计算附件大小
12869
13272
  * */
12870
13273
  returnSizeText: function returnSizeText(size) {
12871
13274
  if (size && parseFloat(size) / 1024 / 1024 < 1) {
@@ -13034,15 +13437,15 @@ var FileDetail_component = normalizeComponent(
13034
13437
  };
13035
13438
  },
13036
13439
  methods: {
13037
- /**
13038
- * 忽略大小写判断文件类型
13440
+ /**
13441
+ * 忽略大小写判断文件类型
13039
13442
  * */
13040
13443
  includesType: function includesType(typeList, fileType) {
13041
13444
  if (!fileType) return false;
13042
13445
  return (0,external_lodash_namespaceObject.includes)((0,external_lodash_namespaceObject.map)(typeList, external_lodash_namespaceObject.toLower), (0,external_lodash_namespaceObject.toLower)(fileType));
13043
13446
  },
13044
- /**
13045
- * 打开文件预览,一般是除了图片、视频、音频这些无法预览的附件类型
13447
+ /**
13448
+ * 打开文件预览,一般是除了图片、视频、音频这些无法预览的附件类型
13046
13449
  * */
13047
13450
  initViewer: function initViewer(view) {
13048
13451
  this.viewer = view;
@@ -13079,8 +13482,8 @@ var FileDetail_component = normalizeComponent(
13079
13482
  }
13080
13483
  }
13081
13484
  },
13082
- /**
13083
- * 根据文件类型,判端文件预览展示那种图片或icon
13485
+ /**
13486
+ * 根据文件类型,判端文件预览展示那种图片或icon
13084
13487
  * */
13085
13488
  getFileImg: function getFileImg(file) {
13086
13489
  // 默认文件图片
@@ -13123,8 +13526,8 @@ var FileDetail_component = normalizeComponent(
13123
13526
  }
13124
13527
  return url;
13125
13528
  },
13126
- /**
13127
- * 删除附件
13529
+ /**
13530
+ * 删除附件
13128
13531
  * */
13129
13532
  delFile: function delFile(index) {
13130
13533
  this.fileList.splice(index, 1);
@@ -13164,7 +13567,7 @@ var BnFileView_component = normalizeComponent(
13164
13567
  )
13165
13568
 
13166
13569
  /* harmony default export */ const BnFileView = (BnFileView_component.exports);
13167
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFunText/bnFunText.vue?vue&type=template&id=c3b70e18&scoped=true
13570
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFunText/bnFunText.vue?vue&type=template&id=c3b70e18&scoped=true
13168
13571
 
13169
13572
 
13170
13573
 
@@ -13725,10 +14128,10 @@ var functions = [{
13725
14128
  }
13726
14129
  }
13727
14130
  },
13728
- /**
13729
- * 整理组件列表为schema
13730
- *@param array 组件插入到数组
13731
- *@param column 组件
14131
+ /**
14132
+ * 整理组件列表为schema
14133
+ *@param array 组件插入到数组
14134
+ *@param column 组件
13732
14135
  * */
13733
14136
  loadColumn: function loadColumn(array, column) {
13734
14137
  var data = {
@@ -13763,8 +14166,8 @@ var functions = [{
13763
14166
  array.push(data);
13764
14167
  }
13765
14168
  },
13766
- /**
13767
- * 切换函数分类的打开挂壁
14169
+ /**
14170
+ * 切换函数分类的打开挂壁
13768
14171
  * */
13769
14172
  changeOpenClass: function changeOpenClass(item) {
13770
14173
  var index = this.openFunClass.indexOf(item.name);
@@ -13774,8 +14177,8 @@ var functions = [{
13774
14177
  this.openFunClass.splice(index, 1);
13775
14178
  }
13776
14179
  },
13777
- /**
13778
- * 切换字段分类的打开挂壁
14180
+ /**
14181
+ * 切换字段分类的打开挂壁
13779
14182
  * */
13780
14183
  changeOpenColumn: function changeOpenColumn(item) {
13781
14184
  var index = this.openColumnClass.indexOf(item.name);
@@ -13785,8 +14188,8 @@ var functions = [{
13785
14188
  this.openColumnClass.splice(index, 1);
13786
14189
  }
13787
14190
  },
13788
- /**
13789
- * 获取焦点
14191
+ /**
14192
+ * 获取焦点
13790
14193
  * */
13791
14194
  onCodemirrorFocus: function onCodemirrorFocus() {
13792
14195
  var _this4 = this;
@@ -13799,8 +14202,8 @@ var functions = [{
13799
14202
  // }
13800
14203
  });
13801
14204
  },
13802
- /**
13803
- * 高亮代码
14205
+ /**
14206
+ * 高亮代码
13804
14207
  */
13805
14208
  specialString: function specialString(str) {
13806
14209
  var specialRegExp = /\*|\+|\?|\||\{|\}|\[|\]|\(|\)|\^|\$|\./g;
@@ -13864,8 +14267,8 @@ var functions = [{
13864
14267
  // setTimeout(()=>{
13865
14268
  // },3000)
13866
14269
  },
13867
- /**
13868
- * 选择函数
14270
+ /**
14271
+ * 选择函数
13869
14272
  */
13870
14273
  onSelectFun: function onSelectFun(item) {
13871
14274
  var _this6 = this;
@@ -13877,8 +14280,8 @@ var functions = [{
13877
14280
  _this6.$refs.cm && _this6.$refs.cm.codemirror.focus(); // 确保编辑器获得焦点
13878
14281
  });
13879
14282
  },
13880
- /**
13881
- * 选择字段
14283
+ /**
14284
+ * 选择字段
13882
14285
  */
13883
14286
  onSelectCol: function onSelectCol(item) {
13884
14287
  var _this7 = this;
@@ -13907,8 +14310,8 @@ var functions = [{
13907
14310
  _this7.$refs.cm && _this7.$refs.cm.codemirror.focus(); // 确保编辑器获得焦点
13908
14311
  });
13909
14312
  },
13910
- /**
13911
- * 保存
14313
+ /**
14314
+ * 保存
13912
14315
  * */
13913
14316
  saveRule: function saveRule() {
13914
14317
  var _this8 = this;
@@ -13941,8 +14344,8 @@ var functions = [{
13941
14344
  _this8.$emit('save', res);
13942
14345
  });
13943
14346
  },
13944
- /**
13945
- * 打开弹框
14347
+ /**
14348
+ * 打开弹框
13946
14349
  * */
13947
14350
  openDialog: function openDialog() {
13948
14351
  this.postData.exprExec = this.showContent;
@@ -13988,8 +14391,8 @@ var bnFunText_component = normalizeComponent(
13988
14391
  )
13989
14392
 
13990
14393
  /* harmony default export */ const bnFunText = (bnFunText_component.exports);
13991
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInpNum/BnInpNum.vue?vue&type=template&id=dc8beb30&scoped=true
13992
- var BnInpNumvue_type_template_id_dc8beb30_scoped_true_render = function render() {
14394
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInpNum/BnInpNum.vue?vue&type=template&id=ff93d4f6&scoped=true
14395
+ var BnInpNumvue_type_template_id_ff93d4f6_scoped_true_render = function render() {
13993
14396
  var _vm = this,
13994
14397
  _c = _vm._self._c;
13995
14398
  return _c('el-input', {
@@ -14017,10 +14420,12 @@ var BnInpNumvue_type_template_id_dc8beb30_scoped_true_render = function render()
14017
14420
  slot: "prefix"
14018
14421
  }, [_vm._t("prefix")], 2), _c('template', {
14019
14422
  slot: "suffix"
14020
- }, [_vm._t("default")], 2)], 2);
14423
+ }, [_vm._t("suffix")], 2)], 2);
14021
14424
  };
14022
- var BnInpNumvue_type_template_id_dc8beb30_scoped_true_staticRenderFns = [];
14425
+ var BnInpNumvue_type_template_id_ff93d4f6_scoped_true_staticRenderFns = [];
14023
14426
 
14427
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.ends-with.js
14428
+ var es_string_ends_with = __webpack_require__(9449);
14024
14429
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.starts-with.js
14025
14430
  var es_string_starts_with = __webpack_require__(1392);
14026
14431
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInpNum/BnInpNum.vue?vue&type=script&lang=js
@@ -14041,17 +14446,19 @@ var es_string_starts_with = __webpack_require__(1392);
14041
14446
 
14042
14447
 
14043
14448
 
14449
+
14450
+
14044
14451
  /* harmony default export */ const BnInpNumvue_type_script_lang_js = ({
14045
14452
  name: "BnInpNum",
14046
14453
  model: {
14047
- prop: 'modelValue',
14048
- event: 'update:modelValue'
14454
+ prop: "modelValue",
14455
+ event: "update:modelValue"
14049
14456
  },
14050
14457
  props: {
14051
14458
  modelValue: [String, Number],
14052
14459
  placeholder: {
14053
14460
  type: String,
14054
- "default": ''
14461
+ "default": ""
14055
14462
  },
14056
14463
  size: String,
14057
14464
  underline: {
@@ -14090,55 +14497,56 @@ var es_string_starts_with = __webpack_require__(1392);
14090
14497
  }
14091
14498
  },
14092
14499
  methods: {
14093
- /**
14094
- * input事件 实时变化
14500
+ /**
14501
+ * input事件 实时变化
14095
14502
  * */
14096
14503
  valInput: (0,external_lodash_namespaceObject.debounce)(function (val) {
14097
14504
  // 快速处理空值
14098
14505
  if (!val) {
14099
- this.val = '';
14506
+ this.val = "";
14100
14507
  return;
14101
14508
  }
14102
14509
  var value = val;
14103
14510
 
14104
14511
  // 移除无效字符(一次性处理)
14105
- value = value.replace(/[^0-9.-]/g, '');
14512
+ value = value.replace(/[^0-9.-]/g, "");
14106
14513
 
14107
14514
  // 处理负号:只保留开头的第一个负号
14108
- if (value.startsWith('-')) {
14109
- value = '-' + value.slice(1).replace(/-/g, '');
14515
+ if (value.startsWith("-")) {
14516
+ value = "-" + value.slice(1).replace(/-/g, "");
14110
14517
  } else {
14111
- value = value.replace(/-/g, '');
14518
+ value = value.replace(/-/g, "");
14112
14519
  }
14113
14520
 
14114
- // 处理小数点:移除开头的点,保留第一个点
14115
- if (value.startsWith('.')) {
14116
- value = value.slice(1).replace(/\./g, '');
14521
+ // 处理小数点:移除开头的点,只保留第一个点
14522
+ if (value.startsWith(".")) {
14523
+ value = value.slice(1).replace(/\./g, "");
14117
14524
  } else {
14118
- var dotIndex = value.indexOf('.');
14525
+ var dotIndex = value.indexOf(".");
14119
14526
  if (dotIndex > 0) {
14120
- var parts = value.split('.');
14121
- value = parts[0] + '.' + parts.slice(1).join('');
14527
+ var parts = value.split(".");
14528
+ value = parts[0] + "." + parts.slice(1).join("");
14122
14529
  }
14123
14530
  }
14124
14531
 
14125
- // 处理精度
14126
- if (value && value !== '-' && this.precision != null && this.precision >= 0) {
14127
- var _dotIndex = value.indexOf('.');
14128
- if (this.precision === 0) {
14532
+ // 处理精度(统一转为数字,避免 prop 为字符串时比较失效)
14533
+ var precisionNum = this.precision != null ? Number(this.precision) : null;
14534
+ if (value && value !== "-" && precisionNum != null && !isNaN(precisionNum) && precisionNum >= 0) {
14535
+ var pDotIndex = value.indexOf(".");
14536
+ if (precisionNum === 0) {
14129
14537
  // 精度为0时,移除小数点及之后的内容
14130
- value = _dotIndex > 0 ? value.slice(0, _dotIndex) : value;
14131
- } else if (_dotIndex > 0) {
14538
+ value = pDotIndex > 0 ? value.slice(0, pDotIndex) : value;
14539
+ } else if (pDotIndex > 0) {
14132
14540
  // 限制小数位数
14133
- var decimalPart = value.slice(_dotIndex + 1);
14134
- if (decimalPart.length > this.precision) {
14135
- value = value.slice(0, _dotIndex + 1 + this.precision);
14541
+ var decimalPart = value.slice(pDotIndex + 1);
14542
+ if (decimalPart.length > precisionNum) {
14543
+ value = value.slice(0, pDotIndex + 1 + precisionNum);
14136
14544
  }
14137
14545
  }
14138
14546
  }
14139
14547
 
14140
14548
  // 实时校验最大值和最小值
14141
- if (value && value !== '-') {
14549
+ if (value && value !== "-") {
14142
14550
  var numValue = parseFloat(value);
14143
14551
  if (!isNaN(numValue)) {
14144
14552
  // 校验最大值
@@ -14153,13 +14561,18 @@ var es_string_starts_with = __webpack_require__(1392);
14153
14561
  }
14154
14562
  this.val = value;
14155
14563
  }, 200),
14156
- /**
14157
- * change事件上报
14564
+ /**
14565
+ * change事件上报
14158
14566
  * */
14159
14567
  valChange: function valChange() {
14160
- // 处理只输入负号的情况
14161
- if (this.val === '-') {
14162
- this.val = '';
14568
+ // 处理只输入负号或末尾小数点的中间态
14569
+ if (this.val === "-" || this.val === "-.") {
14570
+ this.val = "";
14571
+ return;
14572
+ }
14573
+ // 移除末尾多余的小数点(如 '0.' → '0')
14574
+ if (this.val && this.val.endsWith(".")) {
14575
+ this.val = this.val.slice(0, -1);
14163
14576
  }
14164
14577
  // 最大值最小值校验已在valInput中实时处理,这里保留作为兜底
14165
14578
  if (this.val) {
@@ -14174,19 +14587,19 @@ var es_string_starts_with = __webpack_require__(1392);
14174
14587
  }
14175
14588
  }
14176
14589
  },
14177
- /**
14178
- * blur事件上报
14590
+ /**
14591
+ * blur事件上报
14179
14592
  * */
14180
14593
  inputBlur: function inputBlur() {
14181
- this.$emit('blur', this.val);
14594
+ this.$emit("blur", this.val);
14182
14595
  }
14183
14596
  }
14184
14597
  });
14185
14598
  ;// ./packages/BnInpNum/BnInpNum.vue?vue&type=script&lang=js
14186
14599
  /* harmony default export */ const BnInpNum_BnInpNumvue_type_script_lang_js = (BnInpNumvue_type_script_lang_js);
14187
- // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInpNum/BnInpNum.vue?vue&type=style&index=0&id=dc8beb30&prod&lang=scss&scoped=true
14188
- var BnInpNumvue_type_style_index_0_id_dc8beb30_prod_lang_scss_scoped_true = __webpack_require__(1494);
14189
- ;// ./packages/BnInpNum/BnInpNum.vue?vue&type=style&index=0&id=dc8beb30&prod&lang=scss&scoped=true
14600
+ // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInpNum/BnInpNum.vue?vue&type=style&index=0&id=ff93d4f6&prod&lang=scss&scoped=true
14601
+ var BnInpNumvue_type_style_index_0_id_ff93d4f6_prod_lang_scss_scoped_true = __webpack_require__(7021);
14602
+ ;// ./packages/BnInpNum/BnInpNum.vue?vue&type=style&index=0&id=ff93d4f6&prod&lang=scss&scoped=true
14190
14603
 
14191
14604
  ;// ./packages/BnInpNum/BnInpNum.vue
14192
14605
 
@@ -14199,17 +14612,17 @@ var BnInpNumvue_type_style_index_0_id_dc8beb30_prod_lang_scss_scoped_true = __we
14199
14612
 
14200
14613
  var BnInpNum_component = normalizeComponent(
14201
14614
  BnInpNum_BnInpNumvue_type_script_lang_js,
14202
- BnInpNumvue_type_template_id_dc8beb30_scoped_true_render,
14203
- BnInpNumvue_type_template_id_dc8beb30_scoped_true_staticRenderFns,
14615
+ BnInpNumvue_type_template_id_ff93d4f6_scoped_true_render,
14616
+ BnInpNumvue_type_template_id_ff93d4f6_scoped_true_staticRenderFns,
14204
14617
  false,
14205
14618
  null,
14206
- "dc8beb30",
14619
+ "ff93d4f6",
14207
14620
  null
14208
14621
 
14209
14622
  )
14210
14623
 
14211
14624
  /* harmony default export */ const BnInpNum = (BnInpNum_component.exports);
14212
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInputNum/BnInputNum.vue?vue&type=template&id=2baef958
14625
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnInputNum/BnInputNum.vue?vue&type=template&id=2baef958
14213
14626
  var BnInputNumvue_type_template_id_2baef958_render = function render() {
14214
14627
  var _vm = this,
14215
14628
  _c = _vm._self._c;
@@ -14380,7 +14793,7 @@ var BnInputNum_component = normalizeComponent(
14380
14793
  )
14381
14794
 
14382
14795
  /* harmony default export */ const BnInputNum = (BnInputNum_component.exports);
14383
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/bnRuleCondition.vue?vue&type=template&id=1d87e9a2&scoped=true
14796
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/bnRuleCondition.vue?vue&type=template&id=1d87e9a2&scoped=true
14384
14797
 
14385
14798
 
14386
14799
 
@@ -15213,53 +15626,53 @@ var searchList = {
15213
15626
  title: '不为空',
15214
15627
  id: '10'
15215
15628
  }],
15216
- /*
15217
- 9: [
15218
- {title: '范围', id: '8'},
15219
- {title: '为空', id: '9'},
15220
- {title: '不为空', id: '10'},
15221
- ],
15222
- 11: [
15223
- {title: '等于', id: '1'},
15224
- {title: '不等于', id: '2'},
15225
- {title: '包含', id: '3'},
15226
- {title: '不包含', id: '4'},
15227
- {title: '包含任一项', id: '5'},
15228
- {title: '不包含任一项', id: '6'},
15229
- {title: '包含所有项', id: '7'},
15230
- {title: '范围', id: '8'},
15231
- {title: '为空', id: '9'},
15232
- {title: '不为空', id: '10'},
15233
- {title: '属于', id: '11'},
15234
- {title: '有交集', id: '12'},
15235
- {title: '无交集', id: '13'},],
15236
- 12: [
15237
- {title: '等于', id: '1'},
15238
- {title: '不等于', id: '2'},
15239
- {title: '包含', id: '3'},
15240
- {title: '不包含', id: '4'},
15241
- {title: '包含任一项', id: '5'},
15242
- {title: '不包含任一项', id: '6'},
15243
- {title: '包含所有项', id: '7'},
15244
- {title: '范围', id: '8'},
15245
- {title: '为空', id: '9'},
15246
- {title: '不为空', id: '10'},
15247
- {title: '属于', id: '11'},
15248
- {title: '有交集', id: '12'},
15249
- {title: '无交集', id: '13'},],
15250
- 13: [
15251
- {title: '等于', id: '1'},
15252
- {title: '不等于', id: '2'},
15253
- {title: '包含', id: '3'},
15254
- {title: '不包含', id: '4'},
15255
- {title: '包含任一项', id: '5'},
15256
- {title: '不包含任一项', id: '6'},
15257
- {title: '包含所有项', id: '7'},
15258
- {title: '范围', id: '8'},
15259
- {title: '为空', id: '9'},
15260
- {title: '不为空', id: '10'},
15261
- {title: '属于', id: '11'},
15262
- {title: '有交集', id: '12'},
15629
+ /*
15630
+ 9: [
15631
+ {title: '范围', id: '8'},
15632
+ {title: '为空', id: '9'},
15633
+ {title: '不为空', id: '10'},
15634
+ ],
15635
+ 11: [
15636
+ {title: '等于', id: '1'},
15637
+ {title: '不等于', id: '2'},
15638
+ {title: '包含', id: '3'},
15639
+ {title: '不包含', id: '4'},
15640
+ {title: '包含任一项', id: '5'},
15641
+ {title: '不包含任一项', id: '6'},
15642
+ {title: '包含所有项', id: '7'},
15643
+ {title: '范围', id: '8'},
15644
+ {title: '为空', id: '9'},
15645
+ {title: '不为空', id: '10'},
15646
+ {title: '属于', id: '11'},
15647
+ {title: '有交集', id: '12'},
15648
+ {title: '无交集', id: '13'},],
15649
+ 12: [
15650
+ {title: '等于', id: '1'},
15651
+ {title: '不等于', id: '2'},
15652
+ {title: '包含', id: '3'},
15653
+ {title: '不包含', id: '4'},
15654
+ {title: '包含任一项', id: '5'},
15655
+ {title: '不包含任一项', id: '6'},
15656
+ {title: '包含所有项', id: '7'},
15657
+ {title: '范围', id: '8'},
15658
+ {title: '为空', id: '9'},
15659
+ {title: '不为空', id: '10'},
15660
+ {title: '属于', id: '11'},
15661
+ {title: '有交集', id: '12'},
15662
+ {title: '无交集', id: '13'},],
15663
+ 13: [
15664
+ {title: '等于', id: '1'},
15665
+ {title: '不等于', id: '2'},
15666
+ {title: '包含', id: '3'},
15667
+ {title: '不包含', id: '4'},
15668
+ {title: '包含任一项', id: '5'},
15669
+ {title: '不包含任一项', id: '6'},
15670
+ {title: '包含所有项', id: '7'},
15671
+ {title: '范围', id: '8'},
15672
+ {title: '为空', id: '9'},
15673
+ {title: '不为空', id: '10'},
15674
+ {title: '属于', id: '11'},
15675
+ {title: '有交集', id: '12'},
15263
15676
  {title: '无交集', id: '13'},],*/
15264
15677
  15: [{
15265
15678
  title: '为空',
@@ -15271,7 +15684,7 @@ var searchList = {
15271
15684
  };
15272
15685
 
15273
15686
  //每个组件类型对应的筛选类型列表
15274
- var submitCheckTypeList = {
15687
+ var submitCheckTypeList = (/* unused pure expression or super */ null && ({
15275
15688
  1: '等于',
15276
15689
  2: '不等于',
15277
15690
  3: '包含',
@@ -15306,7 +15719,7 @@ var submitCheckTypeList = {
15306
15719
  101: '变更为',
15307
15720
  102: '变更为空',
15308
15721
  103: '变更为有值'
15309
- };
15722
+ }));
15310
15723
  var valueTypeList = {
15311
15724
  //{id: '0', title: '自定义填写'},{id: '1', title: '其他组件'},{id: '2', title: '当前组件选项'}, {id: '3', title: '空值'},{id: '4', title: '其他步骤'},{ id: '5', title: '工作表属性' }
15312
15725
  '-1': [{
@@ -15410,7 +15823,7 @@ var subTypeList = {
15410
15823
  //部分支持 {id: '6', title: '过去x时'}, {id: '7', title: '未来x时'}, {id: '8', title: '过去x月'}, {id: '9', title: '未来x月'},
15411
15824
  ]
15412
15825
  };
15413
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/cascadeCondition.vue?vue&type=template&id=0b10733b
15826
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/cascadeCondition.vue?vue&type=template&id=0b10733b
15414
15827
  var cascadeConditionvue_type_template_id_0b10733b_render = function render() {
15415
15828
  var _vm = this,
15416
15829
  _c = _vm._self._c;
@@ -15502,7 +15915,7 @@ function _createForOfIteratorHelper(r, e) {
15502
15915
  };
15503
15916
  }
15504
15917
 
15505
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/BnSwitch.vue?vue&type=template&id=809f2340
15918
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/BnSwitch.vue?vue&type=template&id=809f2340
15506
15919
  var BnSwitchvue_type_template_id_809f2340_render = function render() {
15507
15920
  var _vm = this,
15508
15921
  _c = _vm._self._c;
@@ -15749,10 +16162,10 @@ var BnSwitch_component = normalizeComponent(
15749
16162
  }
15750
16163
  this.$emit('update:sourceTitle', this.valueTitle);
15751
16164
  },
15752
- /**
15753
- * @param data 列表
15754
- * @param value 编辑回显时已保存的值 []
15755
- * @returns {*|Array|Array|*}
16165
+ /**
16166
+ * @param data 列表
16167
+ * @param value 编辑回显时已保存的值 []
16168
+ * @returns {*|Array|Array|*}
15756
16169
  * */
15757
16170
  dataFormat: function dataFormat(data, value) {
15758
16171
  return data.map(function (item) {
@@ -15762,12 +16175,12 @@ var BnSwitch_component = normalizeComponent(
15762
16175
  });
15763
16176
  });
15764
16177
  },
15765
- /**
15766
- *
15767
- * @param data 列表
15768
- * @param key 键
15769
- * @param value 值
15770
- * @returns {*|Array|String|Array|*}
16178
+ /**
16179
+ *
16180
+ * @param data 列表
16181
+ * @param key 键
16182
+ * @param value 值
16183
+ * @returns {*|Array|String|Array|*}
15771
16184
  */
15772
16185
  getChild: function getChild(data, key, value) {
15773
16186
  var _iterator = _createForOfIteratorHelper(data),
@@ -15850,7 +16263,7 @@ var cascadeCondition_component = normalizeComponent(
15850
16263
  )
15851
16264
 
15852
16265
  /* harmony default export */ const cascadeCondition = (cascadeCondition_component.exports);
15853
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/address.vue?vue&type=template&id=1199c288&scoped=true
16266
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/address.vue?vue&type=template&id=1199c288&scoped=true
15854
16267
  var addressvue_type_template_id_1199c288_scoped_true_render = function render() {
15855
16268
  var _vm = this,
15856
16269
  _c = _vm._self._c;
@@ -15910,7 +16323,7 @@ var addressvue_type_template_id_1199c288_scoped_true_render = function render()
15910
16323
  };
15911
16324
  var addressvue_type_template_id_1199c288_scoped_true_staticRenderFns = [];
15912
16325
 
15913
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/addressSet.vue?vue&type=template&id=50cd72d0&scoped=true
16326
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/addressSet.vue?vue&type=template&id=50cd72d0&scoped=true
15914
16327
  var addressSetvue_type_template_id_50cd72d0_scoped_true_render = function render() {
15915
16328
  var _vm = this,
15916
16329
  _c = _vm._self._c;
@@ -16213,7 +16626,7 @@ var address_component = normalizeComponent(
16213
16626
  )
16214
16627
 
16215
16628
  /* harmony default export */ const address = (address_component.exports);
16216
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/compositeSearch.vue?vue&type=template&id=09cb19ef&scoped=true
16629
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/compositeSearch.vue?vue&type=template&id=09cb19ef&scoped=true
16217
16630
 
16218
16631
  var compositeSearchvue_type_template_id_09cb19ef_scoped_true_render = function render() {
16219
16632
  var _vm = this,
@@ -16339,7 +16752,7 @@ var compositeSearch_component = normalizeComponent(
16339
16752
  )
16340
16753
 
16341
16754
  /* harmony default export */ const compositeSearch = (compositeSearch_component.exports);
16342
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/numberReg.vue?vue&type=template&id=04541236&scoped=true
16755
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnRuleCondition/numberReg.vue?vue&type=template&id=04541236&scoped=true
16343
16756
  var numberRegvue_type_template_id_04541236_scoped_true_render = function render() {
16344
16757
  var _vm = this,
16345
16758
  _c = _vm._self._c;
@@ -16717,8 +17130,8 @@ var numberReg_component = normalizeComponent(
16717
17130
  this.$emit("input", val);
16718
17131
  }
16719
17132
  },
16720
- /**
16721
- * 当进入规则组件,已经选好组件id时,需要将组件信息回显
17133
+ /**
17134
+ * 当进入规则组件,已经选好组件id时,需要将组件信息回显
16722
17135
  * */
16723
17136
  columnInfo: {
16724
17137
  get: function get() {
@@ -16766,8 +17179,8 @@ var numberReg_component = normalizeComponent(
16766
17179
  }
16767
17180
  },
16768
17181
  methods: {
16769
- /**
16770
- * 切换第一个选择器是选择column组件还是custom自定义输入或者code功能片段
17182
+ /**
17183
+ * 切换第一个选择器是选择column组件还是custom自定义输入或者code功能片段
16771
17184
  * */
16772
17185
  changeCustomType: function changeCustomType(type) {
16773
17186
  this.arrowCustomType = type ? type : 'column';
@@ -16809,9 +17222,9 @@ var numberReg_component = normalizeComponent(
16809
17222
  value: value
16810
17223
  });
16811
17224
  },
16812
- /**
16813
- * 选择组件发生变化,当组件发生了变化,后续的行为都要进行初始化
16814
- * @param {Any} e select发生变化返回的值
17225
+ /**
17226
+ * 选择组件发生变化,当组件发生了变化,后续的行为都要进行初始化
17227
+ * @param {Any} e select发生变化返回的值
16815
17228
  * */
16816
17229
  columnChange: function columnChange(e) {
16817
17230
  var column = this.columnList.filter(function (i) {
@@ -16862,8 +17275,8 @@ var numberReg_component = normalizeComponent(
16862
17275
  value: value
16863
17276
  });
16864
17277
  },
16865
- /**
16866
- * 计算条件发生change
17278
+ /**
17279
+ * 计算条件发生change
16867
17280
  * */
16868
17281
  searchChange: function searchChange() {
16869
17282
  // 根据组件类型、计算条件、值类型来确定规则条件的value的类型
@@ -16874,8 +17287,8 @@ var numberReg_component = normalizeComponent(
16874
17287
  value: this.ruleVal
16875
17288
  });
16876
17289
  },
16877
- /**
16878
- * 规则值类型发生变化
17290
+ /**
17291
+ * 规则值类型发生变化
16879
17292
  * */
16880
17293
  valueTypeChange: function valueTypeChange() {
16881
17294
  // 根据组件类型、计算条件、值类型来确定规则条件的value的类型
@@ -16886,8 +17299,8 @@ var numberReg_component = normalizeComponent(
16886
17299
  value: this.ruleVal
16887
17300
  });
16888
17301
  },
16889
- /**
16890
- * 规则值子类型发生变化
17302
+ /**
17303
+ * 规则值子类型发生变化
16891
17304
  * */
16892
17305
  subTypeChange: function subTypeChange() {
16893
17306
  // 根据组件类型、计算条件、值类型来确定规则条件的value的类型
@@ -16898,8 +17311,8 @@ var numberReg_component = normalizeComponent(
16898
17311
  value: this.ruleVal
16899
17312
  });
16900
17313
  },
16901
- /**
16902
- * 规则的value发生变化
17314
+ /**
17315
+ * 规则的value发生变化
16903
17316
  * */
16904
17317
  valueChange: function valueChange(target) {
16905
17318
  if (target == 'date' && this.ruleVal[this.optionProps.value] == null) {
@@ -16914,9 +17327,9 @@ var numberReg_component = normalizeComponent(
16914
17327
  value: this.ruleVal
16915
17328
  });
16916
17329
  },
16917
- /**
16918
- * 获取该类型组件支持那些计算条件
16919
- * @param {Number} behaviorType 组件行为类型
17330
+ /**
17331
+ * 获取该类型组件支持那些计算条件
17332
+ * @param {Number} behaviorType 组件行为类型
16920
17333
  * */
16921
17334
  getSearchOptions: function getSearchOptions(behaviorType) {
16922
17335
  var optionList = [];
@@ -16935,9 +17348,9 @@ var numberReg_component = normalizeComponent(
16935
17348
  }
16936
17349
  return optionList;
16937
17350
  },
16938
- /**
16939
- * 获取该类型组件支持那些值类型
16940
- * @param {Number} behaviorType 组件行为类型
17351
+ /**
17352
+ * 获取该类型组件支持那些值类型
17353
+ * @param {Number} behaviorType 组件行为类型
16941
17354
  * */
16942
17355
  getValueOptions: function getValueOptions(column) {
16943
17356
  var optionList = [];
@@ -16955,9 +17368,9 @@ var numberReg_component = normalizeComponent(
16955
17368
  }
16956
17369
  return optionList;
16957
17370
  },
16958
- /**
16959
- * 获取该类型组件支持那些子类型列表:目前仅只是时间日期
16960
- * @param {Number} behaviorType 组件行为类型
17371
+ /**
17372
+ * 获取该类型组件支持那些子类型列表:目前仅只是时间日期
17373
+ * @param {Number} behaviorType 组件行为类型
16961
17374
  * */
16962
17375
  getSubTypeOptions: function getSubTypeOptions(behaviorType) {
16963
17376
  var optionList = [];
@@ -16975,9 +17388,9 @@ var numberReg_component = normalizeComponent(
16975
17388
  }
16976
17389
  return optionList;
16977
17390
  },
16978
- /**
16979
- * 获取该类型组件支持那些值类型
16980
- * @param {Number} behaviorType 组件行为类型
17391
+ /**
17392
+ * 获取该类型组件支持那些值类型
17393
+ * @param {Number} behaviorType 组件行为类型
16981
17394
  * */
16982
17395
  getOtherColumns: function getOtherColumns(behaviorType) {
16983
17396
  var _this = this;
@@ -17007,9 +17420,9 @@ var numberReg_component = normalizeComponent(
17007
17420
  }
17008
17421
  return optionList;
17009
17422
  },
17010
- /**
17011
- * 动态禁用
17012
- * @param type:禁用的操作类型,ratio:累计占比(额外输入框)value:设置值的地方禁用(包含了输入、选择、下拉、联动)、valueType:值类型选择、subType:子类型
17423
+ /**
17424
+ * 动态禁用
17425
+ * @param type:禁用的操作类型,ratio:累计占比(额外输入框)value:设置值的地方禁用(包含了输入、选择、下拉、联动)、valueType:值类型选择、subType:子类型
17013
17426
  * */
17014
17427
  isDisabled: function isDisabled(type) {
17015
17428
  if (this.$options.propsData.hasOwnProperty('disabledFun')) {
@@ -17019,11 +17432,11 @@ var numberReg_component = normalizeComponent(
17019
17432
  return false;
17020
17433
  }
17021
17434
  },
17022
- /**
17023
- * 给组件value赋予默认类型
17024
- * @param {Number} behaviorType 组件行为类型
17025
- * @param {String} searchType 规则的计算条件类型:等于、包含、大于、包含任一项等
17026
- * @param {String} valueType 规则的值类型:当前组件值、自定义填写、选择其他组件
17435
+ /**
17436
+ * 给组件value赋予默认类型
17437
+ * @param {Number} behaviorType 组件行为类型
17438
+ * @param {String} searchType 规则的计算条件类型:等于、包含、大于、包含任一项等
17439
+ * @param {String} valueType 规则的值类型:当前组件值、自定义填写、选择其他组件
17027
17440
  * */
17028
17441
  setValType: function setValType(behaviorType, searchType, valueType) {
17029
17442
  var data = '';
@@ -17103,14 +17516,14 @@ var numberReg_component = normalizeComponent(
17103
17516
  }
17104
17517
  return data;
17105
17518
  },
17106
- /**
17107
- * 校验value的数据类型,因为有时候数据类型不对组件会报错
17519
+ /**
17520
+ * 校验value的数据类型,因为有时候数据类型不对组件会报错
17108
17521
  * */
17109
17522
  checkValType: function checkValType(type) {
17110
17523
  return _typeof(this.ruleVal[this.optionProps.value]) == type;
17111
17524
  },
17112
- /**
17113
- * 删除规则
17525
+ /**
17526
+ * 删除规则
17114
17527
  * */
17115
17528
  del: function del() {
17116
17529
  this.$emit('del', {
@@ -17118,8 +17531,8 @@ var numberReg_component = normalizeComponent(
17118
17531
  value: this.ruleVal
17119
17532
  });
17120
17533
  },
17121
- /**
17122
- * 清空规则内容
17534
+ /**
17535
+ * 清空规则内容
17123
17536
  * */
17124
17537
  empty: function empty() {
17125
17538
  // 清空计算类型的值
@@ -17127,15 +17540,15 @@ var numberReg_component = normalizeComponent(
17127
17540
  // 清空value
17128
17541
  this.ruleVal[this.optionProps.value] = this.setValType(this.ruleVal.behaviorType);
17129
17542
  },
17130
- /**
17131
- * 设置触发值
17543
+ /**
17544
+ * 设置触发值
17132
17545
  * */
17133
17546
  setDefaultSearch: function setDefaultSearch() {
17134
17547
  // 清空计算类型的值
17135
17548
  this.ruleVal[this.optionProps.searchType] = this.getSearchOptions(this.ruleVal.behaviorType)[0].id;
17136
17549
  },
17137
- /**
17138
- * 日期,日期区间,判断时间类型
17550
+ /**
17551
+ * 日期,日期区间,判断时间类型
17139
17552
  * */
17140
17553
  getDateType: function getDateType(type) {
17141
17554
  var dateType = type == "date" ? "datetime" : "datetimerange";
@@ -17158,8 +17571,8 @@ var numberReg_component = normalizeComponent(
17158
17571
  }
17159
17572
  return dateType;
17160
17573
  },
17161
- /**
17162
- * 日期,日期区间,判断时间格式化
17574
+ /**
17575
+ * 日期,日期区间,判断时间格式化
17163
17576
  * */
17164
17577
  getDateFormat: function getDateFormat() {
17165
17578
  var format = "yyyy-MM-dd HH:mm:ss";
@@ -17216,7 +17629,7 @@ var bnRuleCondition_component = normalizeComponent(
17216
17629
  )
17217
17630
 
17218
17631
  /* harmony default export */ const bnRuleCondition = (bnRuleCondition_component.exports);
17219
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnSelect/select.vue?vue&type=template&id=12683c88&scoped=true
17632
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnSelect/select.vue?vue&type=template&id=12683c88&scoped=true
17220
17633
 
17221
17634
 
17222
17635
 
@@ -17897,10 +18310,10 @@ function util_toPinYin(chart) {
17897
18310
  return util_getFullChars(chart.replace(/[&\|\\\*^%$#@\-]/g, "")).toLowerCase();
17898
18311
  }
17899
18312
 
17900
- /**
17901
- * 匹配大小写字母拼音 返回Boolean值
17902
- * @param {*} chart 需要匹配的字符
17903
- * @param {*} data 需要进行匹配的字符
18313
+ /**
18314
+ * 匹配大小写字母拼音 返回Boolean值
18315
+ * @param {*} chart 需要匹配的字符
18316
+ * @param {*} data 需要进行匹配的字符
17904
18317
  */
17905
18318
  function util_searchToBoolean(chart, data) {
17906
18319
  return util_toPinYin(data || '').indexOf(util_toPinYin(chart || '')) !== -1;
@@ -18214,18 +18627,18 @@ function util_searchToBoolean(chart, data) {
18214
18627
  this.initSelectDataDebounced.cancel();
18215
18628
  },
18216
18629
  methods: {
18217
- /**
18218
- * 下拉选项显示 返回Boolean true:显示
18219
- * @param {Object} item 某一选择的值、option的值
18630
+ /**
18631
+ * 下拉选项显示 返回Boolean true:显示
18632
+ * @param {Object} item 某一选择的值、option的值
18220
18633
  */
18221
18634
  optionHideFunction: function optionHideFunction(item) {
18222
18635
  if (this.optionHideFun) return !this.optionHideFun(item) && !item.isHide;else return !item.isHide;
18223
18636
  },
18224
- /**
18225
- * Option中checkbox当绑定值变化时触发的事件 更新后的值
18226
- * @change="onCheckChange(checkBoxValue(labelInValue?item:item[optionProps['value']]), labelInValue?item:item[optionProps['value']])"
18227
- * @param {Boolean} val checkbox更新后的值
18228
- * @param {Object} item option的值
18637
+ /**
18638
+ * Option中checkbox当绑定值变化时触发的事件 更新后的值
18639
+ * @change="onCheckChange(checkBoxValue(labelInValue?item:item[optionProps['value']]), labelInValue?item:item[optionProps['value']])"
18640
+ * @param {Boolean} val checkbox更新后的值
18641
+ * @param {Object} item option的值
18229
18642
  */
18230
18643
  onCheckChange: function onCheckChange(val, item) {
18231
18644
  var _this = this;
@@ -18254,9 +18667,9 @@ function util_searchToBoolean(chart, data) {
18254
18667
  _this.changeValue();
18255
18668
  });
18256
18669
  },
18257
- /**
18258
- * 返回option中checkbox的value状态
18259
- * @param {Object} item option的选项
18670
+ /**
18671
+ * 返回option中checkbox的value状态
18672
+ * @param {Object} item option的选项
18260
18673
  */
18261
18674
  checkBoxValue: function checkBoxValue(item) {
18262
18675
  var _this2 = this;
@@ -18273,22 +18686,22 @@ function util_searchToBoolean(chart, data) {
18273
18686
  return false;
18274
18687
  }
18275
18688
  },
18276
- /**
18277
- * 下拉选项禁用 返回Boolean true:禁用
18278
- * @param {Object} item 某一选择的值、option的值
18689
+ /**
18690
+ * 下拉选项禁用 返回Boolean true:禁用
18691
+ * @param {Object} item 某一选择的值、option的值
18279
18692
  */
18280
18693
  optionDisabledFunction: function optionDisabledFunction(item) {
18281
18694
  if (this.optionDisabledFun) return this.optionDisabledFun(item) || item.disabled;else return item.disabled;
18282
18695
  },
18283
- /**
18284
- * 多选模式下移除tag时触发
18285
- * @param {Object} tag 移除的tag值
18696
+ /**
18697
+ * 多选模式下移除tag时触发
18698
+ * @param {Object} tag 移除的tag值
18286
18699
  */
18287
18700
  removeTag: function removeTag(tag) {
18288
18701
  this.$emit('removeTag', tag);
18289
18702
  },
18290
- /**
18291
- * select的change事件
18703
+ /**
18704
+ * select的change事件
18292
18705
  */
18293
18706
  changeValue: function changeValue() {
18294
18707
  var _this3 = this;
@@ -18318,9 +18731,9 @@ function util_searchToBoolean(chart, data) {
18318
18731
  }
18319
18732
  });
18320
18733
  },
18321
- /**
18322
- * 下拉框出现/隐藏时触发
18323
- * @param {Boolean} bol 出现则为 true,隐藏则为 false
18734
+ /**
18735
+ * 下拉框出现/隐藏时触发
18736
+ * @param {Boolean} bol 出现则为 true,隐藏则为 false
18324
18737
  */
18325
18738
  visibleChange: function visibleChange(bol) {
18326
18739
  var _this4 = this;
@@ -18387,15 +18800,15 @@ function util_searchToBoolean(chart, data) {
18387
18800
  });
18388
18801
  }
18389
18802
  },
18390
- /**
18391
- * 可清空的单选模式下用户点击清空按钮时触发
18803
+ /**
18804
+ * 可清空的单选模式下用户点击清空按钮时触发
18392
18805
  */
18393
18806
  clear: function clear() {
18394
18807
  this.$emit('clear');
18395
18808
  },
18396
- /**
18397
- * 返回option的label data: option数据
18398
- * @param {Object} data option数据
18809
+ /**
18810
+ * 返回option的label data: option数据
18811
+ * @param {Object} data option数据
18399
18812
  */
18400
18813
  showLabel: function showLabel(data) {
18401
18814
  if (this.optionProps['label'] instanceof Function) {
@@ -18404,9 +18817,9 @@ function util_searchToBoolean(chart, data) {
18404
18817
  return data[this.optionProps['label']];
18405
18818
  }
18406
18819
  },
18407
- /**
18408
- * 快速搜索选项
18409
- * @param {String} val 搜索的值
18820
+ /**
18821
+ * 快速搜索选项
18822
+ * @param {String} val 搜索的值
18410
18823
  */
18411
18824
  filterMethod: function filterMethod(val) {
18412
18825
  var _this5 = this;
@@ -18428,8 +18841,8 @@ function util_searchToBoolean(chart, data) {
18428
18841
  this.loadingOptionList();
18429
18842
  }
18430
18843
  },
18431
- /**
18432
- * 判断是否是全选状态
18844
+ /**
18845
+ * 判断是否是全选状态
18433
18846
  */
18434
18847
  isSelectAll: function isSelectAll() {
18435
18848
  var _this6 = this;
@@ -18453,8 +18866,8 @@ function util_searchToBoolean(chart, data) {
18453
18866
  }
18454
18867
  }
18455
18868
  },
18456
- /**
18457
- * 全选事件
18869
+ /**
18870
+ * 全选事件
18458
18871
  */
18459
18872
  onSelectAll: function onSelectAll() {
18460
18873
  var _this7 = this;
@@ -18492,14 +18905,14 @@ function util_searchToBoolean(chart, data) {
18492
18905
  this.isIndeterminate = false;
18493
18906
  this.changeValue();
18494
18907
  },
18495
- /**
18496
- * 隐藏下拉选择框事件
18908
+ /**
18909
+ * 隐藏下拉选择框事件
18497
18910
  */
18498
18911
  onConfirm: function onConfirm() {
18499
18912
  this.$refs.selectBox.blur();
18500
18913
  },
18501
- /**
18502
- * 滚动加载
18914
+ /**
18915
+ * 滚动加载
18503
18916
  */
18504
18917
  loadMore: function loadMore() {
18505
18918
  // 判断是否执行远程搜索
@@ -18525,8 +18938,8 @@ function util_searchToBoolean(chart, data) {
18525
18938
  this.isSelectAll();
18526
18939
  }
18527
18940
  },
18528
- /**
18529
- * 请求内部数据源
18941
+ /**
18942
+ * 请求内部数据源
18530
18943
  */
18531
18944
  loadOption: function loadOption(type) {
18532
18945
  var _this8 = this;
@@ -18583,8 +18996,8 @@ function util_searchToBoolean(chart, data) {
18583
18996
  _this8.showMore = false;
18584
18997
  });
18585
18998
  },
18586
- /**
18587
- * 初始化远程搜索数据
18999
+ /**
19000
+ * 初始化远程搜索数据
18588
19001
  */
18589
19002
  initRemoteMethod: function initRemoteMethod() {
18590
19003
  this.moduleDefinition = [];
@@ -18605,8 +19018,8 @@ function util_searchToBoolean(chart, data) {
18605
19018
  this.loadMore();
18606
19019
  }
18607
19020
  },
18608
- /**
18609
- * 初始化组件的数据
19021
+ /**
19022
+ * 初始化组件的数据
18610
19023
  */
18611
19024
  initSelectData: function initSelectData() {
18612
19025
  var _this9 = this;
@@ -18712,8 +19125,8 @@ function util_searchToBoolean(chart, data) {
18712
19125
  }
18713
19126
  },
18714
19127
  computed: {
18715
- /**
18716
- * option 展示的列表
19128
+ /**
19129
+ * option 展示的列表
18717
19130
  */
18718
19131
  optionShowList: function optionShowList() {
18719
19132
  var _this0 = this;
@@ -18750,8 +19163,8 @@ function util_searchToBoolean(chart, data) {
18750
19163
  return this.total + (((_this$optionList = this.optionList) === null || _this$optionList === void 0 ? void 0 : _this$optionList.length) || 0);
18751
19164
  }
18752
19165
  },
18753
- /**
18754
- * option 所有数据的id数组
19166
+ /**
19167
+ * option 所有数据的id数组
18755
19168
  */
18756
19169
  pageOptionListIds: function pageOptionListIds() {
18757
19170
  return this.optionList.slice(0, 10);
@@ -18784,8 +19197,8 @@ function util_searchToBoolean(chart, data) {
18784
19197
  valueKeys: function valueKeys() {
18785
19198
  return Array.from(new Set([].concat(_toConsumableArray(Object.values(this.optionProps)), _toConsumableArray(this.valueProps))));
18786
19199
  },
18787
- /**
18788
- * select的value数据
19200
+ /**
19201
+ * select的value数据
18789
19202
  */
18790
19203
  select: {
18791
19204
  get: function get() {
@@ -18822,8 +19235,8 @@ function util_searchToBoolean(chart, data) {
18822
19235
  }
18823
19236
  }
18824
19237
  },
18825
- /**
18826
- * select 的 popperClass
19238
+ /**
19239
+ * select 的 popperClass
18827
19240
  */
18828
19241
  popperClassName: function popperClassName() {
18829
19242
  var className = "bytenew-select-popper ".concat(this.popperClass || '');
@@ -18948,7 +19361,7 @@ var select_component = normalizeComponent(
18948
19361
  )
18949
19362
 
18950
19363
  /* harmony default export */ const BnSelect_select = (select_component.exports);
18951
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFiTaxAutoComplete/BnFiTaxAutoComplete.vue?vue&type=template&id=6a5eae5b&scoped=true
19364
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/BnFiTaxAutoComplete/BnFiTaxAutoComplete.vue?vue&type=template&id=6a5eae5b&scoped=true
18952
19365
 
18953
19366
 
18954
19367
  var BnFiTaxAutoCompletevue_type_template_id_6a5eae5b_scoped_true_render = function render() {
@@ -19357,10 +19770,10 @@ function _asyncToGenerator(n) {
19357
19770
  handleBlurs: function handleBlurs() {
19358
19771
  this.visible = false;
19359
19772
  },
19360
- /**
19361
- * @name 选择change
19362
- * @description 当表单中发票类型含有专用发票类型时,手动查询公司抬头
19363
- * @param {*} record
19773
+ /**
19774
+ * @name 选择change
19775
+ * @description 当表单中发票类型含有专用发票类型时,手动查询公司抬头
19776
+ * @param {*} record
19364
19777
  */
19365
19778
  selectItem: function selectItem(record) {
19366
19779
  if (this.isSpecialTax) {
@@ -19523,50 +19936,756 @@ var BnFiTaxAutoComplete_component = normalizeComponent(
19523
19936
  )
19524
19937
 
19525
19938
  /* harmony default export */ const BnFiTaxAutoComplete = (BnFiTaxAutoComplete_component.exports);
19526
- ;// ./install.js
19527
- // install.js - BnAppletUi 组件库入口
19528
-
19529
-
19530
-
19531
-
19532
-
19533
-
19534
-
19535
-
19536
-
19537
-
19538
-
19539
-
19540
-
19541
-
19542
- const BnAppletUi = {
19543
- install: (Vue) => {
19544
- Vue.component("BnAddress", BnAddress);
19545
- Vue.component("BnAddressParse", BnAddressParse);
19546
- Vue.component("BnCheck", BnCheck);
19547
- Vue.component("BnDateRange", bnDateRange);
19548
- Vue.component("BnDialog", dialog);
19549
- Vue.component("BnDropdown", bnDropdown);
19550
- Vue.component("BnFileView", BnFileView);
19551
- Vue.component("BnFunText", bnFunText);
19552
- Vue.component("BnInpNum", BnInpNum);
19553
- Vue.component("BnInputNum", BnInputNum);
19554
- Vue.component("BnRuleCondition", bnRuleCondition);
19555
- Vue.component("BnSelect", BnSelect_select);
19556
- Vue.component("BnFiTaxAutoComplete", BnFiTaxAutoComplete);
19557
- }
19558
- };
19559
-
19560
- // 支持通过 CDN 方式引入时自动注册
19561
- if (typeof window !== 'undefined' && window.Vue) {
19562
- window.Vue.use(BnAppletUi);
19563
- }
19564
-
19565
- // 导出插件对象(整体引入)
19566
- // 使用方式:Vue.use(BnAppletUi)
19567
- /* harmony default export */ const install = (BnAppletUi);
19568
-
19569
- // 单独导出各组件(按需引入)
19939
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.map.js
19940
+ var es_map = __webpack_require__(6033);
19941
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.map.get-or-insert.js
19942
+ var es_map_get_or_insert = __webpack_require__(5367);
19943
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.map.get-or-insert-computed.js
19944
+ var es_map_get_or_insert_computed = __webpack_require__(2731);
19945
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.sort.js
19946
+ var es_array_sort = __webpack_require__(6910);
19947
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.trim.js
19948
+ var es_string_trim = __webpack_require__(2762);
19949
+ ;// ./packages/util/addressParse.js
19950
+
19951
+
19952
+
19953
+
19954
+
19955
+
19956
+
19957
+
19958
+
19959
+
19960
+
19961
+
19962
+
19963
+
19964
+
19965
+
19966
+
19967
+
19968
+
19969
+
19970
+
19971
+
19972
+
19973
+
19974
+
19975
+
19976
+
19977
+
19978
+
19979
+
19980
+
19981
+
19982
+
19983
+
19984
+
19985
+
19986
+
19987
+
19988
+
19989
+
19990
+
19991
+
19992
+
19993
+
19994
+
19995
+
19996
+
19997
+
19998
+
19999
+
20000
+
20001
+
20002
+
20003
+ var defaultData = []; //不包括省市级code的数据
20004
+
20005
+ var mCity = {}; //以市为层级的数据 里面包括 p:省 c:市 a:区列表
20006
+
20007
+ var mArea = {}; //以区为级别的数据 里面包括 p:省 c:市
20008
+
20009
+ var mStreet = {}; //以街道为级别的数据 里面包括 c:市 a:区
20010
+
20011
+ /**
20012
+ * 处理原始地址数据转换成专用数据
20013
+ * @param list 原始数据
20014
+ * @param init 是否初始化 如传空 已转换过不会再次转换
20015
+ * @returns {boolean}
20016
+ */
20017
+ function parseArea(list, init) {
20018
+ if (!init && defaultData.length) {
20019
+ return true;
20020
+ }
20021
+ defaultData = list;
20022
+ defaultData.forEach(function (province) {
20023
+ if (province.city) {
20024
+ province.city.forEach(function (city) {
20025
+ if (city.name !== '其他') {
20026
+ if (!mCity[city.name]) {
20027
+ mCity[city.name] = [];
20028
+ }
20029
+ mCity[city.name].push({
20030
+ p: province.name,
20031
+ c: city.name,
20032
+ a: city.area || [],
20033
+ s: city.street || []
20034
+ });
20035
+ }
20036
+ if (city.area) {
20037
+ city.area.forEach(function (area) {
20038
+ if (area !== '其他') {
20039
+ if (!mArea[area]) {
20040
+ mArea[area] = [];
20041
+ }
20042
+ mArea[area].push({
20043
+ p: province.name,
20044
+ c: city.name
20045
+ });
20046
+ }
20047
+ if (city.street && city.street[area]) {
20048
+ city.street[area].forEach(function (street) {
20049
+ if (street !== '其他') {
20050
+ if (!mStreet[street]) {
20051
+ mStreet[street] = [];
20052
+ }
20053
+ mStreet[street].push({
20054
+ c: city.name,
20055
+ a: area
20056
+ });
20057
+ }
20058
+ });
20059
+ }
20060
+ });
20061
+ }
20062
+ });
20063
+ }
20064
+ });
20065
+ }
20066
+
20067
+ /**
20068
+ * 解析地址详情(内部方法,需先调用 parseArea 初始化地址库)
20069
+ * @param address 任意地址字符串
20070
+ * @param sourceData 组件配置,如 extraInfo.isFourAddress
20071
+ * @returns {{name: string, mobile: string, detail: string, zip_code: string, phone: string}}
20072
+ */
20073
+ function parseAddressDetail(address, sourceData) {
20074
+ var parse = {
20075
+ name: '',
20076
+ mobile: '',
20077
+ detail: '',
20078
+ zip_code: '',
20079
+ phone: '',
20080
+ extensionNumber: '' // 淘宝分机号码
20081
+ };
20082
+ address = joinAddressLines(address);
20083
+ var search = ['地址', '收货地址', '收货人', '收件人', '收货', '邮编', '电话', '手机号', ':', ':', ';', ';', ',', ',', '。'];
20084
+ search.forEach(function (str) {
20085
+ address = address.replace(new RegExp(str, 'g'), ' ');
20086
+ });
20087
+ address = address.replace(/ {2,}/g, ' ');
20088
+ address = address.replace(/(\d{3})-(\d{4})-(\d{4})/g, '$1$2$3');
20089
+ address = address.replace(/(\d{3}) (\d{4}) (\d{4})/g, '$1$2$3');
20090
+
20091
+ // const mobileReg = /(86-[1][0-9]{10})|(86[1][0-9]{10})|([1][0-9]{10})/g;
20092
+ var mobileReg = /([1][0-9]{10}((-[0-9]{4})?))|((86-?)?[1][0-9]{10})/g;
20093
+ var mobile = mobileReg.exec(address);
20094
+ if (mobile) {
20095
+ parse.mobile = mobile[0];
20096
+ address = address.replace(mobile[0], ' ');
20097
+ }
20098
+ var phoneReg = /(([0-9]{3,4}-)[0-9]{7,8})|([0-9]{12})|([0-9]{11})|([0-9]{10})|([0-9]{9})|([0-9]{8})|([0-9]{7})/g;
20099
+ var phone = phoneReg.exec(address);
20100
+ if (phone) {
20101
+ //获取分机号码 例:16601795913-9385(11位手机号-xxxx)
20102
+ var addressArry = address.split(' ');
20103
+ var ext = addressArry.filter(function (item) {
20104
+ return item.length == 16 && item.indexOf('-');
20105
+ });
20106
+ if (ext.length > 0) {
20107
+ //截取分机号赋值
20108
+ parse.extensionNumber = ext[0].split('-')[1];
20109
+ //空格替换分机号
20110
+ var extVal = '-' + parse.extensionNumber;
20111
+ address = address.replace(extVal, ' ');
20112
+ }
20113
+ parse.phone = phone[0];
20114
+ address = address.replace(phone[0], ' ');
20115
+ }
20116
+ var zipReg = /([0-9]{6})/g;
20117
+ var zip = zipReg.exec(address);
20118
+ if (zip) {
20119
+ parse.zip_code = zip[0];
20120
+ address = address.replace(zip[0], '');
20121
+ }
20122
+ address = address.replace(/ {2,}/, ' ');
20123
+ var detail = detail_parse_forward(address.trim(), sourceData);
20124
+ if (!detail.city) {
20125
+ detail = detail_parse(address.trim());
20126
+ if (detail.area && !detail.city) {
20127
+ detail = detail_parse(address.trim(), {
20128
+ ignoreArea: true
20129
+ });
20130
+ // console.log('smart_parse->ignoreArea');
20131
+ } else {
20132
+ // console.log('smart_parse');
20133
+ }
20134
+ //这个待完善
20135
+ var list = address.replace(detail.province, '').replace(detail.city, '').replace(detail.area, '').split(' ').filter(function (str) {
20136
+ return str;
20137
+ });
20138
+ if (list.length > 1) {
20139
+ list.forEach(function (str) {
20140
+ if (!parse.name || str && str.length < parse.name.length) {
20141
+ parse.name = str.trim();
20142
+ }
20143
+ });
20144
+ if (parse.name) {
20145
+ detail.addr = detail.addr.replace(parse.name, '').trim();
20146
+ }
20147
+ }
20148
+ } else {
20149
+ if (detail.name) {
20150
+ parse.name = detail.name;
20151
+ } else {
20152
+ var _list = detail.addr.split(' ').filter(function (str) {
20153
+ return str;
20154
+ });
20155
+ if (_list.length > 1) {
20156
+ parse.name = _list[_list.length - 1];
20157
+ }
20158
+ //详细地址中去掉 姓名
20159
+ if (parse.name) {
20160
+ detail.addr = detail.addr.replace(parse.name, '').trim();
20161
+ }
20162
+ }
20163
+
20164
+ //将分机号自动粘贴在收件人姓名后
20165
+ if (parse.extensionNumber) {
20166
+ parse.name = parse.name + '[转' + parse.extensionNumber + ']';
20167
+ }
20168
+ }
20169
+ parse.province = detail.province;
20170
+ parse.city = detail.city;
20171
+ parse.area = detail.area;
20172
+ parse.street = detail.street;
20173
+ parse.addr = detail.addr;
20174
+ parse.result = detail.result;
20175
+ if (parse.province === "澳门" || parse.province === "香港") {
20176
+ parse.province += "特别行政区";
20177
+ } else if (parse.province === "新疆") {
20178
+ parse.province = "新疆维吾尔自治区";
20179
+ } else if (parse.province === "西藏") {
20180
+ parse.province = "西藏自治区";
20181
+ } else if (parse.province === "广西") {
20182
+ parse.province = "广西壮族自治区";
20183
+ } else if (parse.province === "宁夏") {
20184
+ parse.province = "宁夏回族自治区";
20185
+ } else if (parse.province === "内蒙古") {
20186
+ parse.province = "内蒙古自治区";
20187
+ } else {
20188
+ if ("北京市上海市天津市重庆市".indexOf(parse.province) === -1) {
20189
+ // parse.province += "省";
20190
+ }
20191
+ }
20192
+ if (parse.city.indexOf("市") === -1) {
20193
+ // parse.city += "市";
20194
+ }
20195
+ return parse;
20196
+ }
20197
+
20198
+ /**
20199
+ * 正向解析模式
20200
+ * 从前到后按 province city addr 逐级筛选
20201
+ * 有city的值即可说明解析成功
20202
+ * 此模式对地址顺序有要求
20203
+ * @param address
20204
+ * @returns {{province: string, city: string, area: string, addr: string}}
20205
+ */
20206
+ function detail_parse_forward(address, sourceData) {
20207
+ var parse = {
20208
+ province: '',
20209
+ city: '',
20210
+ area: '',
20211
+ street: '',
20212
+ addr: '',
20213
+ name: ''
20214
+ };
20215
+ var addressCopy = address;
20216
+ var provinceKey = ['特别行政区', '古自治区', '维吾尔自治区', '壮族自治区', '回族自治区', '自治区', '省省直辖', '省', '市'];
20217
+ var cityKey = ['布依族苗族自治州', '苗族侗族自治州', '自治州', '州', '市', '县'];
20218
+ for (var i in defaultData) {
20219
+ var province = defaultData[i];
20220
+ var provinceSimple = province.name.replace('省', '');
20221
+ var index = address.indexOf(province.name);
20222
+ if (index == -1) {
20223
+ if (address.indexOf(provinceSimple) > -1) {
20224
+ // address= address.replace(provinceSimple,province.name);
20225
+ index = address.indexOf(provinceSimple);
20226
+ }
20227
+ }
20228
+ if (index > -1) {
20229
+ if (index > 0) {
20230
+ //省份不是在第一位,在省份之前的字段识别为名称
20231
+ parse.name = address.substr(0, index).trim();
20232
+ }
20233
+ parse.province = province.name;
20234
+ address = address.substr(index + provinceSimple.length);
20235
+ for (var k in provinceKey) {
20236
+ if (address.indexOf(provinceKey[k]) === 0) {
20237
+ address = address.substr(provinceKey[k].length);
20238
+ }
20239
+ }
20240
+ for (var j in province.city) {
20241
+ var city = province.city[j];
20242
+ index = address.indexOf(city.name);
20243
+ var citySimple = city.name.replace('市', '');
20244
+ if (index == -1) {
20245
+ if (address.indexOf(citySimple) > -1) {
20246
+ // address= address.replace(citySimple,city.name);
20247
+ index = address.indexOf(citySimple);
20248
+ }
20249
+ }
20250
+ if (index > -1 && index < 3) {
20251
+ parse.city = city.name;
20252
+ address = address.substr(index + citySimple.length);
20253
+ for (var _k in cityKey) {
20254
+ if (address.indexOf(cityKey[_k]) === 0) {
20255
+ address = address.substr(cityKey[_k].length);
20256
+ }
20257
+ }
20258
+ if (city.area) {
20259
+ // 对区域进行排序,优先匹配较长的区域名(如:临澧县优先于澧县)
20260
+ var sortedAreas = _toConsumableArray(city.area).sort(function (a, b) {
20261
+ return b.length - a.length;
20262
+ });
20263
+ for (var _k2 in sortedAreas) {
20264
+ var area = sortedAreas[_k2];
20265
+ index = address.indexOf(area);
20266
+ if (index > -1 && index < 3) {
20267
+ parse.area = area;
20268
+ address = address.substr(index + parse.area.length);
20269
+ if (city.street && city.street[area] && sourceData && sourceData.extraInfo && sourceData.extraInfo.isFourAddress) {
20270
+ for (var m in city.street[area]) {
20271
+ var street = city.street[area][m];
20272
+ var indexStreet = address.indexOf(street);
20273
+ if (indexStreet > -1) {
20274
+ parse.street = street;
20275
+ address = address.substr(indexStreet + parse.street.length);
20276
+ break;
20277
+ }
20278
+ }
20279
+ }
20280
+ break;
20281
+ }
20282
+ }
20283
+ }
20284
+ break;
20285
+ }
20286
+ }
20287
+ parse.addr = address.trim();
20288
+ if (parse.city) {
20289
+ break;
20290
+ } else if (parse.province) {
20291
+ address = addressCopy;
20292
+ }
20293
+ }
20294
+ }
20295
+ return parse;
20296
+ }
20297
+
20298
+ /**
20299
+ * 逆向解析 从后【县,区,旗】往前解析
20300
+ * 有地区就能大概返回地址了
20301
+ * @param address
20302
+ * @param ignoreArea 是否忽视区 因为地址中含有区容易导致匹配错误 例:山东省蓬莱市黄海花园东区西门宝威学堂 曲荣声收15753572456
20303
+ * @returns {{province: string, city: string, area: string, name: string, _area: string, addr: string}}
20304
+ */
20305
+ function detail_parse(address) {
20306
+ var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
20307
+ _ref$ignoreArea = _ref.ignoreArea,
20308
+ ignoreArea = _ref$ignoreArea === void 0 ? false : _ref$ignoreArea;
20309
+ var parse = {
20310
+ province: '',
20311
+ city: '',
20312
+ area: '',
20313
+ name: '',
20314
+ _area: '',
20315
+ addr: ''
20316
+ };
20317
+ var areaIndex = -1,
20318
+ cityIndex = -1;
20319
+ address = address.replace(' ', ' ');
20320
+ if (!ignoreArea && address.indexOf('县') > -1 || !ignoreArea && address.indexOf('区') > -1 || !ignoreArea && address.indexOf('旗') > -1) {
20321
+ if (address.indexOf('旗') > -1) {
20322
+ areaIndex = address.indexOf('旗');
20323
+ parse.area = address.substr(areaIndex - 1, 2);
20324
+ }
20325
+ if (address.indexOf('区') > -1) {
20326
+ // 改进区名识别逻辑,优先匹配地址库中存在的完整区名
20327
+ areaIndex = address.indexOf('区');
20328
+ if (address.lastIndexOf('市', areaIndex) > -1) {
20329
+ cityIndex = address.lastIndexOf('市', areaIndex);
20330
+ parse.area = address.substr(cityIndex + 1, areaIndex - cityIndex);
20331
+ } else {
20332
+ // 查找所有可能的区名,优先选择较长的匹配项
20333
+ var possibleAreas = [];
20334
+ // 从地址中寻找所有可能的区名
20335
+ for (var areaName in mArea) {
20336
+ if (address.includes(areaName) && areaName.endsWith('区')) {
20337
+ var pos = address.indexOf(areaName);
20338
+ if (pos !== -1 && pos <= areaIndex && pos >= Math.max(0, areaIndex - 6)) {
20339
+ possibleAreas.push(areaName);
20340
+ }
20341
+ }
20342
+ }
20343
+ if (possibleAreas.length > 0) {
20344
+ // 按长度降序排列,优先选择较长的匹配项
20345
+ possibleAreas.sort(function (a, b) {
20346
+ return b.length - a.length;
20347
+ });
20348
+ parse.area = possibleAreas[0];
20349
+ areaIndex = address.lastIndexOf(parse.area);
20350
+ } else {
20351
+ parse.area = address.substr(areaIndex - 2, 3);
20352
+ }
20353
+ }
20354
+ }
20355
+ if (address.indexOf('县') > -1) {
20356
+ // 改进县名识别逻辑,优先匹配地址库中存在的完整县名
20357
+ areaIndex = address.lastIndexOf('县');
20358
+ if (address.lastIndexOf('市', areaIndex) > -1) {
20359
+ cityIndex = address.lastIndexOf('市', areaIndex);
20360
+ parse.area = address.substr(cityIndex + 1, areaIndex - cityIndex);
20361
+ } else {
20362
+ // 查找所有可能的县名,优先选择较长的匹配项
20363
+ var _possibleAreas = [];
20364
+ // 从地址中寻找所有可能的县名
20365
+ for (var _areaName in mArea) {
20366
+ if (address.includes(_areaName) && _areaName.endsWith('县')) {
20367
+ var _pos = address.indexOf(_areaName);
20368
+ if (_pos !== -1 && _pos <= areaIndex && _pos >= Math.max(0, areaIndex - 6)) {
20369
+ _possibleAreas.push(_areaName);
20370
+ }
20371
+ }
20372
+ }
20373
+ if (_possibleAreas.length > 0) {
20374
+ // 按长度降序排列,优先选择较长的匹配项
20375
+ _possibleAreas.sort(function (a, b) {
20376
+ return b.length - a.length;
20377
+ });
20378
+ parse.area = _possibleAreas[0];
20379
+ areaIndex = address.lastIndexOf(parse.area);
20380
+ } else {
20381
+ parse.area = address.substr(areaIndex - 2, 3);
20382
+ }
20383
+ }
20384
+ }
20385
+ parse.addr = address.substr(areaIndex + 1);
20386
+ } else {
20387
+ if (address.indexOf('市') > -1) {
20388
+ areaIndex = address.indexOf('市');
20389
+ parse.area = address.substr(areaIndex - 2, 3);
20390
+ parse.addr = address.substr(areaIndex + 1);
20391
+ } else {
20392
+ parse.addr = address;
20393
+ }
20394
+ }
20395
+ if (address.indexOf('市') > -1 || address.indexOf('盟') > -1 || address.indexOf('州') > -1) {
20396
+ if (address.indexOf('市') > -1) {
20397
+ parse._area = address.substr(address.indexOf('市') - 2, 2);
20398
+ }
20399
+ if (address.indexOf('盟') > -1 && !mCity[parse._area]) {
20400
+ parse._area = address.substr(address.indexOf('盟') - 2, 2);
20401
+ }
20402
+ if (address.indexOf('州') > -1 && !mCity[parse._area]) {
20403
+ parse._area = address.substr(address.indexOf('州') - 2, 2);
20404
+ }
20405
+ }
20406
+ parse.area = parse.area.trim();
20407
+
20408
+ // 确保选择最长的匹配项
20409
+ if (parse.area && mArea[parse.area]) {
20410
+ // 检查是否有更长的匹配项
20411
+ var checkLongerMatch = function checkLongerMatch(currentArea, addressSubstring, endIndex) {
20412
+ var longerMatch = currentArea;
20413
+ // 检查在当前地址片段中是否存在更长的匹配项
20414
+ for (var _areaName2 in mArea) {
20415
+ if (addressSubstring.includes(_areaName2) && _areaName2.length > longerMatch.length && (_areaName2.endsWith('县') || _areaName2.endsWith('区') || _areaName2.endsWith('旗'))) {
20416
+ var _pos2 = addressSubstring.lastIndexOf(_areaName2);
20417
+ if (_pos2 !== -1 && _pos2 <= endIndex) {
20418
+ longerMatch = _areaName2;
20419
+ }
20420
+ }
20421
+ }
20422
+ return longerMatch;
20423
+ };
20424
+
20425
+ // 更新区域名称为最长匹配项
20426
+ var originalArea = parse.area;
20427
+ if (address) {
20428
+ parse.area = checkLongerMatch(parse.area, address, areaIndex);
20429
+ // 如果区域名称发生变化,更新areaIndex
20430
+ if (parse.area !== originalArea) {
20431
+ areaIndex = address.lastIndexOf(parse.area);
20432
+ }
20433
+ }
20434
+ if (mArea[parse.area].length === 1) {
20435
+ parse.province = mArea[parse.area][0].p;
20436
+ parse.city = mArea[parse.area][0].c;
20437
+ } else {
20438
+ parse._area = parse._area.trim();
20439
+ var addr = address.substr(0, areaIndex);
20440
+ var d = mArea[parse.area].find(function (item) {
20441
+ return item.p.indexOf(addr) > -1 || item.c === parse._area;
20442
+ });
20443
+ if (d) {
20444
+ parse.province = d.p;
20445
+ parse.city = d.c;
20446
+ } else {
20447
+ parse.result = mArea[parse.area];
20448
+ }
20449
+ }
20450
+ } else {
20451
+ if (parse._area) {
20452
+ var city = mCity[parse._area];
20453
+ if (city) {
20454
+ parse.province = city[0].p;
20455
+ parse.city = city[0].c;
20456
+ parse.addr = address.substr(address.indexOf(parse.city) + parse.city.length + 1);
20457
+ parse.area = '';
20458
+ for (var i in city[0].a) {
20459
+ if (parse.addr.indexOf(city[0].a[i]) === 0) {
20460
+ parse.area = city[0].a[i];
20461
+ parse.addr = parse.addr.replace(city[0].a[i], '');
20462
+ break;
20463
+ }
20464
+ }
20465
+ }
20466
+ } else {
20467
+ parse.area = '';
20468
+ }
20469
+ }
20470
+ parse.addr = parse.addr.trim();
20471
+ return parse;
20472
+ }
20473
+ var MUNICIPALITIES = ['上海', '北京', '天津', '重庆'];
20474
+
20475
+ /**
20476
+ * 统一换行符格式
20477
+ */
20478
+ function normalizeLineBreaks(address) {
20479
+ return String(address || '').replace(/\r\n/g, '\n').replace(/\r/g, '\n').replace(/\t/g, ' ');
20480
+ }
20481
+
20482
+ /**
20483
+ * 按换行符拆分段落,去除行内空白后用空格拼接为单行
20484
+ */
20485
+ function joinAddressLines(address) {
20486
+ var normalized = normalizeLineBreaks(address);
20487
+ var lines = normalized.split('\n');
20488
+ var parts = [];
20489
+ for (var i = 0; i < lines.length; i++) {
20490
+ var line = lines[i].replace(/[ \t\f\v]+/g, ' ').trim();
20491
+ if (line) {
20492
+ parts.push(line);
20493
+ }
20494
+ }
20495
+ return parts.join(' ');
20496
+ }
20497
+
20498
+ /**
20499
+ * 从全局变量或 options 中获取 areaList(CDN 加载后挂载在 window.areaList)
20500
+ * @param {object} options
20501
+ * @param {array} [options.areaList] 地址库原始数据,不传则从全局 areaList 读取
20502
+ * @returns {array|null}
20503
+ */
20504
+ function getGlobalAreaList() {
20505
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
20506
+ if (options.areaList) {
20507
+ return options.areaList;
20508
+ }
20509
+ if (typeof window !== 'undefined' && window.areaList) {
20510
+ return window.areaList;
20511
+ }
20512
+ try {
20513
+ // CDN 场景下 areaList 为全局变量
20514
+ // eslint-disable-next-line no-undef
20515
+ if (typeof areaList !== 'undefined') {
20516
+ // eslint-disable-next-line no-undef
20517
+ return areaList;
20518
+ }
20519
+ } catch (e) {
20520
+ // areaList 未定义时忽略
20521
+ }
20522
+ return null;
20523
+ }
20524
+
20525
+ /**
20526
+ * 判断直辖市名称在前 8 个字符中是否只出现一次(用于补全省份前缀)
20527
+ */
20528
+ function checkMunicipalityChars(str, name) {
20529
+ var prefix = str.substring(0, 8);
20530
+ var firstIndex = prefix.indexOf(name);
20531
+ var lastIndex = prefix.lastIndexOf(name);
20532
+ return firstIndex !== -1 && firstIndex === lastIndex;
20533
+ }
20534
+
20535
+ /**
20536
+ * 预处理地址字符串:去空格,并为缺少省份前缀的直辖市地址补全
20537
+ */
20538
+ function preprocessAddress(address) {
20539
+ var cleanAddress = normalizeLineBreaks(address).replace(/[ \t\f\v]+/g, '');
20540
+ cleanAddress = cleanAddress.replace(/\n+/g, '\n').replace(/^\n+|\n+$/g, '');
20541
+ MUNICIPALITIES.forEach(function (name) {
20542
+ if (cleanAddress.indexOf('\n') > -1) {
20543
+ var lines = cleanAddress.split('\n');
20544
+ for (var i = 0; i < lines.length; i++) {
20545
+ if (checkMunicipalityChars(lines[i], name)) {
20546
+ lines[i] = name + lines[i];
20547
+ }
20548
+ }
20549
+ cleanAddress = lines.join('\n');
20550
+ } else if (checkMunicipalityChars(cleanAddress, name)) {
20551
+ cleanAddress = name + cleanAddress;
20552
+ }
20553
+ });
20554
+ return cleanAddress;
20555
+ }
20556
+
20557
+ /**
20558
+ * 自动识别地址信息,格式化为省市区街道和收件人等信息
20559
+ * @param {string} address 原始地址字符串(可含空格、姓名、手机号等)
20560
+ * @param {object} [sourceData] 组件 sourceData,用于四级地址等配置(extraInfo.isFourAddress)
20561
+ * @param {object} [options] 可选配置
20562
+ * @param {array} [options.areaList] 地址库原始数据,默认从全局 areaList 获取
20563
+ * @returns {{name: string, mobile: string, phone: string, zip_code: string, extensionNumber: string, province: string, city: string, area: string, street: string, addr: string, result: *}}
20564
+ */
20565
+ function addressParse(address, sourceData) {
20566
+ var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
20567
+ var list = getGlobalAreaList(options);
20568
+ if (list) {
20569
+ parseArea(list);
20570
+ }
20571
+ var cleanAddress = preprocessAddress(address);
20572
+ return parseAddressDetail(cleanAddress, sourceData || {});
20573
+ }
20574
+ ;// ./packages/util/index.js
20575
+
20576
+
20577
+
20578
+
20579
+
20580
+
20581
+
20582
+
20583
+
20584
+
20585
+
20586
+
20587
+
20588
+
20589
+
20590
+
20591
+
20592
+
20593
+
20594
+
20595
+
20596
+ /**
20597
+ * 通过id列表,和options将title拼接出来 ,id的key名和 title的key名可以传过来,默认是id和title
20598
+ * id:[1,2] options:[{id:1,title:'name'},{id:2,title:'name2'}] 或 {1:'name',2:'name2'}
20599
+ * 结果返回 'name,name2'
20600
+ * @param {Array} ids ID列表
20601
+ * @param {Array|Object} options 选项数组或对象映射
20602
+ * @param {String} idKey ID的键名,默认为'id',仅当options为数组时使用
20603
+ * @param {String} nameKey 名称的键名,默认为'title',仅当options为数组时使用
20604
+ * @param {String} separator 自定义分隔符,默认为中文逗号','
20605
+ * @return {String} 拼接后的字符串
20606
+ * */
20607
+ function idsToTexts(ids, options) {
20608
+ var idKey = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'id';
20609
+ var nameKey = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 'title';
20610
+ var separator = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : ',';
20611
+ // 快速路径:空值检查
20612
+ if (!(ids !== null && ids !== void 0 && ids.length)) return '';
20613
+ if (!options) return ids.join(separator);
20614
+
20615
+ // 使用Map代替普通对象,在大量数据时性能更好
20616
+ var map = new Map();
20617
+
20618
+ // 判断options类型并进行相应处理
20619
+ if (Array.isArray(options)) {
20620
+ // 数组类型的options: [{id:1,title:'name'},{id:2,title:'name2'}]
20621
+ for (var i = 0, len = options.length; i < len; i++) {
20622
+ var item = options[i];
20623
+ if (item) map.set(item[idKey], item[nameKey]);
20624
+ }
20625
+ } else if (_typeof(options) === 'object') {
20626
+ // 对象映射类型的options: {1:'name',2:'name2'}
20627
+ var keys = Object.keys(options);
20628
+ for (var _i = 0, _len = keys.length; _i < _len; _i++) {
20629
+ var key = keys[_i];
20630
+ map.set(key, options[key]);
20631
+ }
20632
+ }
20633
+
20634
+ // 使用join的第二种模式,减少中间数组创建
20635
+ var result = '';
20636
+ for (var _i2 = 0, _len2 = ids.length; _i2 < _len2; _i2++) {
20637
+ var id = ids[_i2];
20638
+ result += (_i2 > 0 ? separator : '') + (map.has(String(id)) ? map.get(String(id)) : map.has(id) ? map.get(id) : id);
20639
+ }
20640
+ return result;
20641
+ }
20642
+
20643
+ ;// ./install.js
20644
+ // install.js - BnAppletUi 组件库入口
20645
+
20646
+
20647
+
20648
+
20649
+
20650
+
20651
+
20652
+
20653
+
20654
+
20655
+
20656
+
20657
+
20658
+
20659
+ const BnAppletUi = {
20660
+ install: (Vue) => {
20661
+ Vue.component("BnAddress", BnAddress);
20662
+ Vue.component("BnAddressParse", BnAddressParse);
20663
+ Vue.component("BnCheck", BnCheck);
20664
+ Vue.component("BnDateRange", bnDateRange);
20665
+ Vue.component("BnDialog", dialog);
20666
+ Vue.component("BnDropdown", bnDropdown);
20667
+ Vue.component("BnFileView", BnFileView);
20668
+ Vue.component("BnFunText", bnFunText);
20669
+ Vue.component("BnInpNum", BnInpNum);
20670
+ Vue.component("BnInputNum", BnInputNum);
20671
+ Vue.component("BnRuleCondition", bnRuleCondition);
20672
+ Vue.component("BnSelect", BnSelect_select);
20673
+ Vue.component("BnFiTaxAutoComplete", BnFiTaxAutoComplete);
20674
+ }
20675
+ };
20676
+
20677
+ // 支持通过 CDN 方式引入时自动注册
20678
+ if (typeof window !== 'undefined' && window.Vue) {
20679
+ window.Vue.use(BnAppletUi);
20680
+ }
20681
+
20682
+ // 导出插件对象(整体引入)
20683
+ // 使用方式:Vue.use(BnAppletUi)
20684
+ /* harmony default export */ const install = (BnAppletUi);
20685
+
20686
+ // 单独导出各组件(按需引入)
20687
+
20688
+ // 单独导出每个工具函数和常量,方便按需引入
19570
20689
 
19571
20690
  ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
19572
20691