xs-common-plugins 1.0.9 → 1.0.10

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/README.md CHANGED
@@ -234,3 +234,7 @@
234
234
  1.0.9
235
235
  1. 新增Search组件input元素change事件回调
236
236
  ```
237
+ ```
238
+ 1.0.10
239
+ 1. 新增Search组件input元素change事件回调
240
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xs-common-plugins",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "private": false,
5
5
  "description": "向上公共代码部分",
6
6
  "author": "祝玲云 <1902733517@qq.com>",
@@ -52,7 +52,7 @@
52
52
  <el-form-item :label="optionItem.displayName" v-if="optionItem.conditionType == $enum.conditionType.input"
53
53
  :style="{ width: optionItem.itemWidth }">
54
54
  <el-input v-model="inputValue[optionItem.fieldName]" :placeholder="optionItem.defaultValue" @change="(value)=>{
55
- optionItem&&optionItem.change(value)
55
+ optionItem.change&&optionItem.change(value)
56
56
  }"></el-input>
57
57
  </el-form-item>
58
58
  <!--下拉单选通过接口-->