新增一行重新绑定数字输入框事件
parent
b1f06ebe21
commit
4aed851b31
|
@ -140,6 +140,8 @@ function appendTrCost() {
|
||||||
bindChangeableInput();
|
bindChangeableInput();
|
||||||
//绑定采购明细中select联动事件
|
//绑定采购明细中select联动事件
|
||||||
bindTypeSelectChange();
|
bindTypeSelectChange();
|
||||||
|
//绑定数字输入框保留两位小数
|
||||||
|
bindNumberInput();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 更新页面收入的数据【累加】
|
* 更新页面收入的数据【累加】
|
||||||
|
|
|
@ -51,6 +51,8 @@ function appendTrCostProjectManage() {
|
||||||
//重新绑定删除事件和input修改事件
|
//重新绑定删除事件和input修改事件
|
||||||
bindDeleteBtn();
|
bindDeleteBtn();
|
||||||
bindChangeableInputProjectManage();
|
bindChangeableInputProjectManage();
|
||||||
|
//绑定数字输入框保留两位小数
|
||||||
|
bindNumberInput();
|
||||||
}
|
}
|
||||||
|
|
||||||
function bindChangeableInputProjectManage() {
|
function bindChangeableInputProjectManage() {
|
||||||
|
|
|
@ -90,4 +90,6 @@ function appendTrIncome() {
|
||||||
//重新绑定删除事件和input修改事件
|
//重新绑定删除事件和input修改事件
|
||||||
bindDeleteBtn();
|
bindDeleteBtn();
|
||||||
bindChangeableInput();
|
bindChangeableInput();
|
||||||
|
//绑定数字输入框保留两位小数
|
||||||
|
bindNumberInput();
|
||||||
}
|
}
|
Loading…
Reference in New Issue