eoss-ui 0.5.70 → 0.5.71

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.
package/lib/input.js CHANGED
@@ -3938,7 +3938,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
3938
3938
  beforeCreate: function beforeCreate() {
3939
3939
  var _this2 = this;
3940
3940
 
3941
- this.getData = Object(external_throttle_debounce_["debounce"])(300, function (query, callback, isChange) {
3941
+ this.getData = Object(external_throttle_debounce_["debounce"])(500, function (query, callback, isChange) {
3942
3942
  _this2.getDatas(query, callback, isChange);
3943
3943
  });
3944
3944
  },
package/lib/menu.js CHANGED
@@ -294,7 +294,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
294
294
  beforeCreate: function beforeCreate() {
295
295
  var _this = this;
296
296
 
297
- this.getMaxWidth = Object(external_throttle_debounce_["debounce"])(300, function () {
297
+ this.getMaxWidth = Object(external_throttle_debounce_["debounce"])(500, function () {
298
298
  _this.getWidth();
299
299
  });
300
300
  },
@@ -3682,7 +3682,7 @@ module.exports = require("axios");
3682
3682
  // ESM COMPAT FLAG
3683
3683
  __webpack_require__.r(__webpack_exports__);
3684
3684
 
3685
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=template&id=91fe7d0a&
3685
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=template&id=d774d48e&
3686
3686
  var render = function () {
3687
3687
  var _vm = this
3688
3688
  var _h = _vm.$createElement
@@ -3816,7 +3816,7 @@ var staticRenderFns = []
3816
3816
  render._withStripped = true
3817
3817
 
3818
3818
 
3819
- // CONCATENATED MODULE: ./packages/radio-group/src/main.vue?vue&type=template&id=91fe7d0a&
3819
+ // CONCATENATED MODULE: ./packages/radio-group/src/main.vue?vue&type=template&id=d774d48e&
3820
3820
 
3821
3821
  // EXTERNAL MODULE: ./src/config/api.js
3822
3822
  var api = __webpack_require__(1);
@@ -4076,7 +4076,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4076
4076
  beforeCreate: function beforeCreate() {
4077
4077
  var _this2 = this;
4078
4078
 
4079
- this.getData = Object(external_throttle_debounce_["debounce"])(300, function (url, sysCode) {
4079
+ this.getData = Object(external_throttle_debounce_["debounce"])(500, function (url, sysCode) {
4080
4080
  _this2.getDatas(url, sysCode);
4081
4081
  });
4082
4082
  },
@@ -4017,7 +4017,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
4017
4017
  beforeCreate: function beforeCreate() {
4018
4018
  var _this = this;
4019
4019
 
4020
- this.getData = Object(external_throttle_debounce_["debounce"])(300, function () {
4020
+ this.getData = Object(external_throttle_debounce_["debounce"])(500, function () {
4021
4021
  _this.getDatas();
4022
4022
  });
4023
4023
  },
package/lib/select.js CHANGED
@@ -3917,10 +3917,6 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
3917
3917
  remoteMethod: Function,
3918
3918
  // 选择项远程地址
3919
3919
  url: String,
3920
- wait: {
3921
- type: Boolean,
3922
- default: true
3923
- },
3924
3920
  // 选择项获取代码表数据(优先级大于url)
3925
3921
  sysCode: String,
3926
3922
  filtrate: [String, Object, Array],
@@ -4044,6 +4040,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4044
4040
  immediate: true,
4045
4041
  handler: function handler(val, old) {
4046
4042
  if (val && val !== old) {
4043
+ console.log(1);
4047
4044
  this.label = this.service ? 'label' : 'shortName';
4048
4045
  this.valKey = this.service ? 'value' : 'cciValue';
4049
4046
  var options = store["a" /* default */].get(val);
@@ -4065,6 +4062,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4065
4062
  param: {
4066
4063
  deep: true,
4067
4064
  handler: function handler(val, old) {
4065
+ console.log(3);
4068
4066
  if (this.url && JSON.stringify(val) !== JSON.stringify(old)) {
4069
4067
  this.options = [];
4070
4068
  this.getData(this.sysCode);
@@ -4075,18 +4073,14 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4075
4073
  beforeCreate: function beforeCreate() {
4076
4074
  var _this2 = this;
4077
4075
 
4078
- this.getData = Object(external_throttle_debounce_["debounce"])(300, function (sysCode, param, reload) {
4076
+ this.getData = Object(external_throttle_debounce_["debounce"])(500, function (sysCode, param, reload) {
4079
4077
  _this2.getDatas(sysCode, param, reload);
4080
4078
  });
4081
4079
  },
4082
4080
  created: function created() {
4083
4081
  this.bindEventBus();
4084
4082
  },
4085
- mounted: function mounted() {
4086
- if (this.wait) {
4087
- this.getData();
4088
- }
4089
- },
4083
+ mounted: function mounted() {},
4090
4084
 
4091
4085
  methods: {
4092
4086
  createOption: function createOption(_ref) {
@@ -3802,7 +3802,7 @@ module.exports = require("sortablejs");
3802
3802
  // ESM COMPAT FLAG
3803
3803
  __webpack_require__.r(__webpack_exports__);
3804
3804
 
3805
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=45642019&
3805
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=2c4cf752&
3806
3806
  var render = function () {
3807
3807
  var _vm = this
3808
3808
  var _h = _vm.$createElement
@@ -4052,7 +4052,7 @@ var staticRenderFns = []
4052
4052
  render._withStripped = true
4053
4053
 
4054
4054
 
4055
- // CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=45642019&
4055
+ // CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=2c4cf752&
4056
4056
 
4057
4057
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/tree.vue?vue&type=template&id=24ad732a&
4058
4058
  var treevue_type_template_id_24ad732a_render = function () {
@@ -5284,7 +5284,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5284
5284
  beforeCreate: function beforeCreate() {
5285
5285
  var _this2 = this;
5286
5286
 
5287
- this.ajaxActive = Object(external_throttle_debounce_["debounce"])(300, function (active) {
5287
+ this.ajaxActive = Object(external_throttle_debounce_["debounce"])(500, function (active) {
5288
5288
  _this2.getAjaxActive(active);
5289
5289
  });
5290
5290
  },
package/lib/steps.js CHANGED
@@ -3642,7 +3642,7 @@ module.exports = require("json-bigint");
3642
3642
  // ESM COMPAT FLAG
3643
3643
  __webpack_require__.r(__webpack_exports__);
3644
3644
 
3645
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/steps/src/main.vue?vue&type=template&id=029968af&
3645
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/steps/src/main.vue?vue&type=template&id=9b12a526&
3646
3646
  var render = function () {
3647
3647
  var _vm = this
3648
3648
  var _h = _vm.$createElement
@@ -3747,7 +3747,7 @@ var staticRenderFns = []
3747
3747
  render._withStripped = true
3748
3748
 
3749
3749
 
3750
- // CONCATENATED MODULE: ./packages/steps/src/main.vue?vue&type=template&id=029968af&
3750
+ // CONCATENATED MODULE: ./packages/steps/src/main.vue?vue&type=template&id=9b12a526&
3751
3751
 
3752
3752
  // EXTERNAL MODULE: ./src/utils/util.js
3753
3753
  var util = __webpack_require__(0);
@@ -3894,7 +3894,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3894
3894
  beforeCreate: function beforeCreate() {
3895
3895
  var _this = this;
3896
3896
 
3897
- this.getData = Object(external_throttle_debounce_["debounce"])(300, function () {
3897
+ this.getData = Object(external_throttle_debounce_["debounce"])(500, function () {
3898
3898
  _this.getDatas();
3899
3899
  });
3900
3900
  },