|
|
@@ -3106,6 +3106,11 @@ export default {
|
|
|
) {
|
|
|
this.$toast('请输入小于等于销售部库存量+发放量');
|
|
|
this.tableData1[index].value = this.tableData1[index].contrastValue;
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (Number(val) > Number(this.tableData1[index].maxValue)) {
|
|
|
+ this.$toast('请输入小于等于最大发放量');
|
|
|
+ this.tableData1[index].value = '';
|
|
|
}
|
|
|
} else {
|
|
|
this.tableData1[index].value = val.replace(/[^\d.]/g, ''); //清除"数字"和"."以外的字符
|