|
@@ -1002,8 +1002,9 @@ export default {
|
|
|
this.$errorMsg('请选择现金钱包')
|
|
|
return
|
|
|
}
|
|
|
- if (!this.multipleSelection[i].qty) {
|
|
|
- this.$errorMsg('请输入数量')
|
|
|
+
|
|
|
+ if (!Number(this.multipleSelection[i].qty)) {
|
|
|
+ this.$errorMsg(`不允许数量为0`)
|
|
|
return
|
|
|
}
|
|
|
if (this.multipleSelection[i].qty > this.multipleSelection[i].enginNum) {
|