把单据中文本框的keyup事件改为change事件

This commit is contained in:
季圣华
2023-01-27 17:31:31 +08:00
parent bfee389629
commit 3d0efac242
12 changed files with 35 additions and 35 deletions

View File

@@ -212,7 +212,7 @@ export const FinancialModalMixin = {
});
},
//改变优惠金额
onKeyUpDiscountMoney(e) {
onChangeDiscountMoney(e) {
const value = e.target.value-0
let totalPrice = this.form.getFieldValue('totalPrice')-0
let changeAmount = (totalPrice-value).toFixed(2)