|
|
@@ -3092,6 +3092,11 @@ export default {
|
|
|
if (Number(val) > Number(this.tableData1[index].inventoryNum)) {
|
|
|
this.$toast('请输入小于等于销售部库存量');
|
|
|
this.tableData1[index].value = '';
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (Number(val) > Number(this.tableData1[index].maxValue)) {
|
|
|
+ this.$toast('请输入小于等于最大发放量');
|
|
|
+ this.tableData1[index].value = '';
|
|
|
}
|
|
|
} else if (!this.insert) {
|
|
|
if (
|