doway-coms 2.10.46 → 2.10.48
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
|
@@ -675,7 +675,7 @@ export default {
|
|
|
675
675
|
inputKeydownEvent(event) {
|
|
676
676
|
if (event.keyCode === 9) {
|
|
677
677
|
//tab事件
|
|
678
|
-
if(this.allowAutoClear){
|
|
678
|
+
if(this.allowAutoClear!==false){
|
|
679
679
|
this.$refs.pulldownRef.hidePanel()
|
|
680
680
|
this.clearInputValue()
|
|
681
681
|
}
|
|
@@ -717,7 +717,7 @@ export default {
|
|
|
717
717
|
//造成当前行编辑装填变成关闭,并且取步到弹出组件,导致输入的值没有被清空
|
|
718
718
|
//所以这里需要判断是否有弹出组件,如果没有,则清空输入框
|
|
719
719
|
//davis20241129
|
|
720
|
-
if(vm.allowAutoClear){
|
|
720
|
+
if(vm.allowAutoClear!==false){
|
|
721
721
|
vm.clearInputValue()
|
|
722
722
|
}
|
|
723
723
|
}
|
|
@@ -901,7 +901,7 @@ export default {
|
|
|
901
901
|
* 面板隐藏事件
|
|
902
902
|
*/
|
|
903
903
|
pullDownHideEvent({ $event }) {
|
|
904
|
-
if(this.allowAutoClear){
|
|
904
|
+
if(this.allowAutoClear!==false){
|
|
905
905
|
this.clearInputValue()
|
|
906
906
|
}
|
|
907
907
|
},
|