eoss-ui 0.7.38 → 0.7.39

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 +25 -37
  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 +19 -31
  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 +0 -1
  47. package/packages/main/src/simplicity/message.vue +1 -5
  48. package/packages/main/src/simplicity/notice.vue +1 -4
  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=467951a0&
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=467951a0&
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=1ebe665a&
8279
+ var messagevue_type_template_id_1ebe665a_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_1ebe665a_staticRenderFns = []
8445
+ messagevue_type_template_id_1ebe665a_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=1ebe665a&
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; };
@@ -8685,12 +8683,7 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
8685
8683
  url: handlerUrl,
8686
8684
  title: title,
8687
8685
  id: id
8688
- }, jsonData, {
8689
- callBack: function callBack() {
8690
- _this4.count -= 1;
8691
- _this4.msgs.splice(index, 1);
8692
- }
8693
- })
8686
+ }, jsonData)
8694
8687
  });
8695
8688
  return;
8696
8689
  }
@@ -8747,8 +8740,8 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
8747
8740
 
8748
8741
  var message_component = Object(componentNormalizer["a" /* default */])(
8749
8742
  simplicity_messagevue_type_script_lang_js_,
8750
- messagevue_type_template_id_1a8c1efc_render,
8751
- messagevue_type_template_id_1a8c1efc_staticRenderFns,
8743
+ messagevue_type_template_id_1ebe665a_render,
8744
+ messagevue_type_template_id_1ebe665a_staticRenderFns,
8752
8745
  false,
8753
8746
  null,
8754
8747
  null,
@@ -8757,8 +8750,8 @@ var message_component = Object(componentNormalizer["a" /* default */])(
8757
8750
  )
8758
8751
 
8759
8752
  /* 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 () {
8753
+ // 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=8640e12c&
8754
+ var noticevue_type_template_id_8640e12c_render = function () {
8762
8755
  var _vm = this
8763
8756
  var _h = _vm.$createElement
8764
8757
  var _c = _vm._self._c || _h
@@ -8906,11 +8899,11 @@ var noticevue_type_template_id_0e636a56_render = function () {
8906
8899
  ]
8907
8900
  )
8908
8901
  }
8909
- var noticevue_type_template_id_0e636a56_staticRenderFns = []
8910
- noticevue_type_template_id_0e636a56_render._withStripped = true
8902
+ var noticevue_type_template_id_8640e12c_staticRenderFns = []
8903
+ noticevue_type_template_id_8640e12c_render._withStripped = true
8911
8904
 
8912
8905
 
8913
- // CONCATENATED MODULE: ./packages/main/src/simplicity/notice.vue?vue&type=template&id=0e636a56&
8906
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/notice.vue?vue&type=template&id=8640e12c&
8914
8907
 
8915
8908
  // 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
8909
  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; };
@@ -9090,11 +9083,7 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
9090
9083
  url: handlerUrl,
9091
9084
  title: title,
9092
9085
  id: id
9093
- }, jsonData, {
9094
- callBack: function callBack() {
9095
- _this3.index = index;
9096
- }
9097
- })
9086
+ }, jsonData)
9098
9087
  });
9099
9088
  return;
9100
9089
  }
@@ -9145,8 +9134,8 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
9145
9134
 
9146
9135
  var notice_component = Object(componentNormalizer["a" /* default */])(
9147
9136
  simplicity_noticevue_type_script_lang_js_,
9148
- noticevue_type_template_id_0e636a56_render,
9149
- noticevue_type_template_id_0e636a56_staticRenderFns,
9137
+ noticevue_type_template_id_8640e12c_render,
9138
+ noticevue_type_template_id_8640e12c_staticRenderFns,
9150
9139
  false,
9151
9140
  null,
9152
9141
  null,
@@ -17504,7 +17493,6 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
17504
17493
  this.dialogs.splice(_dialog2.index, 1);
17505
17494
  }
17506
17495
  }
17507
- callBack && callBack();
17508
17496
  refresh && this.$refs.main.handleRefresh(refresh);
17509
17497
  jumpMenu && (Array.isArray(jumpMenu) ? (_$refs$main = this.$refs.main).jumpMenu.apply(_$refs$main, jumpMenu) : this.$refs.main.jumpMenu(jumpMenu));
17510
17498
  },
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
 
package/lib/utils/util.js CHANGED
@@ -609,8 +609,6 @@ var busEmit = function busEmit(that, _ref3) {
609
609
  }
610
610
  return;
611
611
  }
612
- console.log('busEmit', method, args);
613
-
614
612
  var _bus = that ? that.bus || that.$root.Bus || that.$root.$bus : null;
615
613
  _bus && (Array.isArray(args) ? _bus.$emit.apply(_bus, [method].concat(args)) : _bus.$emit(method, args));
616
614
  }
@@ -971,7 +969,7 @@ var esDecode = function esDecode(value) {
971
969
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
972
970
  }
973
971
  // eslint-disable-next-line no-eval
974
- result = eval('String.fromCharCode(' + arr.join(',') + ')');
972
+ result = String.fromCharCode.apply(null, arr);
975
973
  return result;
976
974
  };
977
975
 
package/lib/wujie.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/wxlogin.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.7.38",
3
+ "version": "0.7.39",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -439,7 +439,6 @@ export default {
439
439
  this.dialogs.splice(dialog.index, 1);
440
440
  }
441
441
  }
442
- callBack && callBack();
443
442
  refresh && this.$refs.main.handleRefresh(refresh);
444
443
  jumpMenu &&
445
444
  (Array.isArray(jumpMenu)