新增一行重新绑定数字输入框事件

master
xxssyyyyssxx 2021-11-24 20:22:07 +08:00
parent b1f06ebe21
commit 4aed851b31
3 changed files with 6 additions and 0 deletions

View File

@ -140,6 +140,8 @@ function appendTrCost() {
bindChangeableInput();
//绑定采购明细中select联动事件
bindTypeSelectChange();
//绑定数字输入框保留两位小数
bindNumberInput();
}
/**
* 更新页面收入的数据累加

View File

@ -51,6 +51,8 @@ function appendTrCostProjectManage() {
//重新绑定删除事件和input修改事件
bindDeleteBtn();
bindChangeableInputProjectManage();
//绑定数字输入框保留两位小数
bindNumberInput();
}
function bindChangeableInputProjectManage() {

View File

@ -90,4 +90,6 @@ function appendTrIncome() {
//重新绑定删除事件和input修改事件
bindDeleteBtn();
bindChangeableInput();
//绑定数字输入框保留两位小数
bindNumberInput();
}