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