eoss-ui 0.5.52 → 0.5.53

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.5.52",
3
+ "version": "0.5.53",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -153,7 +153,7 @@ export default {
153
153
  },
154
154
  watch: {
155
155
  opinion(val) {
156
- this.value = val;
156
+ this.form.value = val;
157
157
  this.changeOpinion();
158
158
  }
159
159
  },
@@ -176,7 +176,7 @@ export default {
176
176
  * @date 2022年10月28日
177
177
  **/
178
178
  changeOpinion() {
179
- this.$emit('change', this.value);
179
+ this.$emit('change', this.form.value);
180
180
  },
181
181
  /**
182
182
  * getCommonOpion
@@ -236,10 +236,10 @@ export default {
236
236
  .then((res) => {
237
237
  if (res.status == 'success') {
238
238
  res.data == 2
239
- ? (that.value = that.value + val)
240
- : (that.value = val);
239
+ ? (that.form.value = that.form.value + val)
240
+ : (that.form.value = val);
241
241
  } else {
242
- that.value = val;
242
+ that.form.value = val;
243
243
  }
244
244
  this.$emit('change', that.value);
245
245
  });
package/src/index.js CHANGED
@@ -119,7 +119,7 @@ if (typeof window !== 'undefined' && window.Vue) {
119
119
  }
120
120
 
121
121
  export default {
122
- version: '0.5.52',
122
+ version: '0.5.53',
123
123
  install,
124
124
  Button,
125
125
  ButtonGroup,