eoss-ui 0.7.38 → 0.7.40

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.
Files changed (50) hide show
  1. package/lib/button-group.js +1 -3
  2. package/lib/button.js +1 -3
  3. package/lib/calogin.js +1 -3
  4. package/lib/checkbox-group.js +1 -3
  5. package/lib/data-table-form.js +1 -3
  6. package/lib/data-table.js +1 -3
  7. package/lib/date-picker.js +1 -3
  8. package/lib/dialog.js +1 -3
  9. package/lib/eoss-ui.common.js +52 -39
  10. package/lib/flow-group.js +1 -3
  11. package/lib/flow-list.js +1 -3
  12. package/lib/flow.js +1 -3
  13. package/lib/form.js +1 -3
  14. package/lib/handle-user.js +1 -3
  15. package/lib/handler.js +1 -3
  16. package/lib/icon.js +1 -3
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +1 -3
  19. package/lib/input.js +1 -3
  20. package/lib/login.js +1 -3
  21. package/lib/main.js +46 -33
  22. package/lib/nav.js +1 -3
  23. package/lib/page.js +1 -3
  24. package/lib/pagination.js +1 -3
  25. package/lib/player.js +1 -3
  26. package/lib/qr-code.js +1 -3
  27. package/lib/radio-group.js +1 -3
  28. package/lib/retrial-auth.js +1 -3
  29. package/lib/select-ganged.js +1 -3
  30. package/lib/select.js +1 -3
  31. package/lib/selector-panel.js +1 -3
  32. package/lib/selector.js +1 -3
  33. package/lib/sizer.js +1 -3
  34. package/lib/steps.js +1 -3
  35. package/lib/switch.js +1 -3
  36. package/lib/table-form.js +1 -3
  37. package/lib/tabs.js +1 -3
  38. package/lib/tips.js +1 -3
  39. package/lib/tree-group.js +1 -3
  40. package/lib/tree.js +1 -3
  41. package/lib/upload.js +1 -3
  42. package/lib/utils/util.js +1 -3
  43. package/lib/wujie.js +1 -3
  44. package/lib/wxlogin.js +1 -3
  45. package/package.json +1 -1
  46. package/packages/main/src/main.vue +14 -8
  47. package/packages/main/src/simplicity/message.vue +7 -4
  48. package/packages/main/src/simplicity/notice.vue +9 -3
  49. package/src/index.js +1 -1
  50. package/src/utils/util.js +1 -3
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/input.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/login.js CHANGED
@@ -692,8 +692,6 @@ var busEmit = function busEmit(that, _ref3) {
692
692
  }
693
693
  return;
694
694
  }
695
- console.log('busEmit', method, args);
696
-
697
695
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
698
696
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
699
697
  }
@@ -1054,7 +1052,7 @@ var esDecode = function esDecode(value) {
1054
1052
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1055
1053
  }
1056
1054
  // eslint-disable-next-line no-eval
1057
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1055
+ result = String.fromCharCode.apply(null, arr);
1058
1056
  return result;
1059
1057
  };
1060
1058
 
package/lib/main.js CHANGED
@@ -692,8 +692,6 @@ var busEmit = function busEmit(that, _ref3) {
692
692
  }
693
693
  return;
694
694
  }
695
- console.log('busEmit', method, args);
696
-
697
695
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
698
696
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
699
697
  }
@@ -1054,7 +1052,7 @@ var esDecode = function esDecode(value) {
1054
1052
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1055
1053
  }
1056
1054
  // eslint-disable-next-line no-eval
1057
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1055
+ result = String.fromCharCode.apply(null, arr);
1058
1056
  return result;
1059
1057
  };
1060
1058
 
@@ -4529,7 +4527,7 @@ var nightImg = 'data:image/jpeg;base64,/9j/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA
4529
4527
  // ESM COMPAT FLAG
4530
4528
  __webpack_require__.r(__webpack_exports__);
4531
4529
 
4532
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=2a83fe9a&
4530
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=431974fc&
4533
4531
  var render = function () {
4534
4532
  var _vm = this
4535
4533
  var _h = _vm.$createElement
@@ -4654,7 +4652,7 @@ var staticRenderFns = []
4654
4652
  render._withStripped = true
4655
4653
 
4656
4654
 
4657
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=2a83fe9a&
4655
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=431974fc&
4658
4656
 
4659
4657
  // EXTERNAL MODULE: ./src/config/image.js
4660
4658
  var config_image = __webpack_require__(20);
@@ -8277,8 +8275,8 @@ var user_component = Object(componentNormalizer["a" /* default */])(
8277
8275
  )
8278
8276
 
8279
8277
  /* harmony default export */ var simplicity_user = (user_component.exports);
8280
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/message.vue?vue&type=template&id=1a8c1efc&
8281
- var messagevue_type_template_id_1a8c1efc_render = function () {
8278
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/message.vue?vue&type=template&id=1e1fa588&
8279
+ var messagevue_type_template_id_1e1fa588_render = function () {
8282
8280
  var _vm = this
8283
8281
  var _h = _vm.$createElement
8284
8282
  var _c = _vm._self._c || _h
@@ -8443,11 +8441,11 @@ var messagevue_type_template_id_1a8c1efc_render = function () {
8443
8441
  1
8444
8442
  )
8445
8443
  }
8446
- var messagevue_type_template_id_1a8c1efc_staticRenderFns = []
8447
- messagevue_type_template_id_1a8c1efc_render._withStripped = true
8444
+ var messagevue_type_template_id_1e1fa588_staticRenderFns = []
8445
+ messagevue_type_template_id_1e1fa588_render._withStripped = true
8448
8446
 
8449
8447
 
8450
- // CONCATENATED MODULE: ./packages/main/src/simplicity/message.vue?vue&type=template&id=1a8c1efc&
8448
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/message.vue?vue&type=template&id=1e1fa588&
8451
8449
 
8452
8450
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/message.vue?vue&type=script&lang=js&
8453
8451
  var messagevue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -8591,6 +8589,8 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
8591
8589
  },
8592
8590
  mounted: function mounted() {
8593
8591
  util["a" /* default */].win.deleteMsg = this.handleRemove;
8592
+ var bus = this.bus || this.$root.Bus;
8593
+ bus && bus.$on('deleteMessage', this.handleRemove);
8594
8594
  },
8595
8595
 
8596
8596
  methods: {
@@ -8686,10 +8686,7 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
8686
8686
  title: title,
8687
8687
  id: id
8688
8688
  }, jsonData, {
8689
- callBack: function callBack() {
8690
- _this4.count -= 1;
8691
- _this4.msgs.splice(index, 1);
8692
- }
8689
+ callback: 'handleRemove'
8693
8690
  })
8694
8691
  });
8695
8692
  return;
@@ -8733,6 +8730,10 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
8733
8730
  handleClose: function handleClose() {
8734
8731
  this.$parent.$emit('bus-emit', 'waitdone');
8735
8732
  }
8733
+ },
8734
+ destroyed: function destroyed() {
8735
+ var bus = this.bus || this.$root.Bus;
8736
+ bus.$off('deleteMessage', this.handleRemove);
8736
8737
  }
8737
8738
  });
8738
8739
  // CONCATENATED MODULE: ./packages/main/src/simplicity/message.vue?vue&type=script&lang=js&
@@ -8747,8 +8748,8 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
8747
8748
 
8748
8749
  var message_component = Object(componentNormalizer["a" /* default */])(
8749
8750
  simplicity_messagevue_type_script_lang_js_,
8750
- messagevue_type_template_id_1a8c1efc_render,
8751
- messagevue_type_template_id_1a8c1efc_staticRenderFns,
8751
+ messagevue_type_template_id_1e1fa588_render,
8752
+ messagevue_type_template_id_1e1fa588_staticRenderFns,
8752
8753
  false,
8753
8754
  null,
8754
8755
  null,
@@ -8757,8 +8758,8 @@ var message_component = Object(componentNormalizer["a" /* default */])(
8757
8758
  )
8758
8759
 
8759
8760
  /* harmony default export */ var message = (message_component.exports);
8760
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/notice.vue?vue&type=template&id=0e636a56&
8761
- var noticevue_type_template_id_0e636a56_render = function () {
8761
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/notice.vue?vue&type=template&id=15704157&
8762
+ var noticevue_type_template_id_15704157_render = function () {
8762
8763
  var _vm = this
8763
8764
  var _h = _vm.$createElement
8764
8765
  var _c = _vm._self._c || _h
@@ -8906,11 +8907,11 @@ var noticevue_type_template_id_0e636a56_render = function () {
8906
8907
  ]
8907
8908
  )
8908
8909
  }
8909
- var noticevue_type_template_id_0e636a56_staticRenderFns = []
8910
- noticevue_type_template_id_0e636a56_render._withStripped = true
8910
+ var noticevue_type_template_id_15704157_staticRenderFns = []
8911
+ noticevue_type_template_id_15704157_render._withStripped = true
8911
8912
 
8912
8913
 
8913
- // CONCATENATED MODULE: ./packages/main/src/simplicity/notice.vue?vue&type=template&id=0e636a56&
8914
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/notice.vue?vue&type=template&id=15704157&
8914
8915
 
8915
8916
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/notice.vue?vue&type=script&lang=js&
8916
8917
  var noticevue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -9026,6 +9027,10 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
9026
9027
  index: null
9027
9028
  };
9028
9029
  },
9030
+ mounted: function mounted() {
9031
+ var bus = this.bus || this.$root.Bus;
9032
+ bus && bus.$on('deleteNotice', this.handleRemove);
9033
+ },
9029
9034
 
9030
9035
  methods: {
9031
9036
  afterEnter: function afterEnter() {
@@ -9091,9 +9096,7 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
9091
9096
  title: title,
9092
9097
  id: id
9093
9098
  }, jsonData, {
9094
- callBack: function callBack() {
9095
- _this3.index = index;
9096
- }
9099
+ callback: 'deleteNotice'
9097
9100
  })
9098
9101
  });
9099
9102
  return;
@@ -9130,6 +9133,10 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
9130
9133
  },
9131
9134
  handleClose: function handleClose() {
9132
9135
  this.$parent.$emit('bus-emit', 'waitdone');
9136
+ },
9137
+ destroyed: function destroyed() {
9138
+ var bus = this.bus || this.$root.Bus;
9139
+ bus.$off('deleteNotice', this.handleRemove);
9133
9140
  }
9134
9141
  }
9135
9142
  });
@@ -9145,8 +9152,8 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
9145
9152
 
9146
9153
  var notice_component = Object(componentNormalizer["a" /* default */])(
9147
9154
  simplicity_noticevue_type_script_lang_js_,
9148
- noticevue_type_template_id_0e636a56_render,
9149
- noticevue_type_template_id_0e636a56_staticRenderFns,
9155
+ noticevue_type_template_id_15704157_render,
9156
+ noticevue_type_template_id_15704157_staticRenderFns,
9150
9157
  false,
9151
9158
  null,
9152
9159
  null,
@@ -17225,7 +17232,6 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
17225
17232
  this.$nextTick(function () {
17226
17233
  _this.getConfig();
17227
17234
  var bus = _this.bus || _this.$root.Bus;
17228
- console.log('bus', bus);
17229
17235
  if (bus) {
17230
17236
  bus.$on('reLogin', _this.handleReLogin);
17231
17237
  bus.$on('refresh', _this.$refs.main.handleRefresh);
@@ -17477,15 +17483,13 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
17477
17483
  * @date 2024年9月7日
17478
17484
  **/
17479
17485
  winClose: function winClose(_ref2) {
17480
- var _$refs$main;
17481
-
17482
17486
  var url = _ref2.url,
17483
17487
  appCode = _ref2.appCode,
17484
17488
  id = _ref2.id,
17485
17489
  index = _ref2.index,
17486
17490
  refresh = _ref2.refresh,
17487
17491
  jumpMenu = _ref2.jumpMenu,
17488
- callBack = _ref2.callBack;
17492
+ callback = _ref2.callback;
17489
17493
 
17490
17494
  if (!appCode && !id) {
17491
17495
  console.error('参数错误,缺少appCode或者id');
@@ -17504,9 +17508,18 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
17504
17508
  this.dialogs.splice(_dialog2.index, 1);
17505
17509
  }
17506
17510
  }
17507
- callBack && callBack();
17508
- refresh && this.$refs.main.handleRefresh(refresh);
17509
- jumpMenu && (Array.isArray(jumpMenu) ? (_$refs$main = this.$refs.main).jumpMenu.apply(_$refs$main, jumpMenu) : this.$refs.main.jumpMenu(jumpMenu));
17511
+ if (callback) {
17512
+ var bus = this.bus || this.$root.Bus;
17513
+ if (bus) {
17514
+ // 主应用发送事件
17515
+ bus.$emit(callback, arguments[0]);
17516
+ }
17517
+ } else {
17518
+ var _$refs$main;
17519
+
17520
+ refresh && this.$refs.main.handleRefresh(refresh);
17521
+ jumpMenu && (Array.isArray(jumpMenu) ? (_$refs$main = this.$refs.main).jumpMenu.apply(_$refs$main, jumpMenu) : this.$refs.main.jumpMenu(jumpMenu));
17522
+ }
17510
17523
  },
17511
17524
 
17512
17525
 
package/lib/nav.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/page.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/pagination.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/player.js CHANGED
@@ -692,8 +692,6 @@ var busEmit = function busEmit(that, _ref3) {
692
692
  }
693
693
  return;
694
694
  }
695
- console.log('busEmit', method, args);
696
-
697
695
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
698
696
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
699
697
  }
@@ -1054,7 +1052,7 @@ var esDecode = function esDecode(value) {
1054
1052
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1055
1053
  }
1056
1054
  // eslint-disable-next-line no-eval
1057
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1055
+ result = String.fromCharCode.apply(null, arr);
1058
1056
  return result;
1059
1057
  };
1060
1058
 
package/lib/qr-code.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/select.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
@@ -692,8 +692,6 @@ var busEmit = function busEmit(that, _ref3) {
692
692
  }
693
693
  return;
694
694
  }
695
- console.log('busEmit', method, args);
696
-
697
695
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
698
696
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
699
697
  }
@@ -1054,7 +1052,7 @@ var esDecode = function esDecode(value) {
1054
1052
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1055
1053
  }
1056
1054
  // eslint-disable-next-line no-eval
1057
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1055
+ result = String.fromCharCode.apply(null, arr);
1058
1056
  return result;
1059
1057
  };
1060
1058
 
package/lib/selector.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/sizer.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/steps.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/switch.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/table-form.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/tabs.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/tips.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/tree-group.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/tree.js CHANGED
@@ -693,8 +693,6 @@ var busEmit = function busEmit(that, _ref3) {
693
693
  }
694
694
  return;
695
695
  }
696
- console.log('busEmit', method, args);
697
-
698
696
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
699
697
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
700
698
  }
@@ -1055,7 +1053,7 @@ var esDecode = function esDecode(value) {
1055
1053
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1056
1054
  }
1057
1055
  // eslint-disable-next-line no-eval
1058
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1056
+ result = String.fromCharCode.apply(null, arr);
1059
1057
  return result;
1060
1058
  };
1061
1059
 
package/lib/upload.js CHANGED
@@ -692,8 +692,6 @@ var busEmit = function busEmit(that, _ref3) {
692
692
  }
693
693
  return;
694
694
  }
695
- console.log('busEmit', method, args);
696
-
697
695
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
698
696
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
699
697
  }
@@ -1054,7 +1052,7 @@ var esDecode = function esDecode(value) {
1054
1052
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1055
1053
  }
1056
1054
  // eslint-disable-next-line no-eval
1057
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
1055
+ result = String.fromCharCode.apply(null, arr);
1058
1056
  return result;
1059
1057
  };
1060
1058