ci-plus 1.9.3 → 1.9.4

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
@@ -1,6 +1,8 @@
1
1
  ## 历史更新
2
2
 
3
3
  ```js
4
+ 1.9.4
5
+ 1、优化表头筛选组件 headerInput.vue 中筛选条件的重置逻辑bug
4
6
  1.9.3
5
7
  1、优化uploadV5.vue组件添加必填标识
6
8
  1.9.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ci-plus",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
@@ -695,6 +695,7 @@ watch(
695
695
  // 判断是否是当前列的筛选条件
696
696
  if (filter.value || filter) {
697
697
  hasValue.value = true
698
+ value.value = filter.value // 上面 if (newVal && typeof newVal == 'string')为else的时候会重置了 value.value的值
698
699
  } else {
699
700
  hasValue.value = false
700
701
  value.value = '' // 重置value的值