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 +2 -0
- package/package.json +1 -1
- package/src/sortableTable/headerInput.vue +1 -0
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -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的值
|