盘点明细bug

This commit is contained in:
蔡玲
2024-12-06 09:29:07 +08:00
parent aca9748717
commit 9d6b1eb11c
2 changed files with 9 additions and 7 deletions

View File

@@ -33,9 +33,9 @@
methods: {
handleFocus () {
this.focusState = true
setTimeout(() => {
uni.hideKeyboard()
}, 300)
// setTimeout(() => {
// uni.hideKeyboard()
// }, 300)
},
handleBlur (e) {
this.$emit('input', e.target.value)
@@ -51,6 +51,9 @@
this.$emit('input', e.target.value)
if (e.target.value.length) {
this.$emit('handleChange', e.target.value)
setTimeout(() => {
uni.hideKeyboard()
}, 300)
}
}
}