|
|
@@ -72,7 +72,7 @@
|
|
|
><van-field
|
|
|
v-model="scope.row.value"
|
|
|
placeholder="请输入"
|
|
|
- type="number"
|
|
|
+ type="digit"
|
|
|
@blur="inputbluwl(scope.row.value, scope.$index, '2')"
|
|
|
/></template>
|
|
|
</el-table-column>
|
|
|
@@ -3092,7 +3092,7 @@ export default {
|
|
|
if (Number(val) > Number(this.tableData1[index].inventoryNum)) {
|
|
|
this.$toast('请输入小于等于销售部库存量');
|
|
|
this.tableData1[index].value = '';
|
|
|
- return
|
|
|
+ return;
|
|
|
}
|
|
|
if (Number(val) > Number(this.tableData1[index].maxValue)) {
|
|
|
this.$toast('请输入小于等于最大发放量');
|
|
|
@@ -3106,7 +3106,7 @@ export default {
|
|
|
) {
|
|
|
this.$toast('请输入小于等于销售部库存量+发放量');
|
|
|
this.tableData1[index].value = this.tableData1[index].contrastValue;
|
|
|
- return
|
|
|
+ return;
|
|
|
}
|
|
|
if (Number(val) > Number(this.tableData1[index].maxValue)) {
|
|
|
this.$toast('请输入小于等于最大发放量');
|