Commit
d13e790a194d44e2e006ffec724acfcc6b6a5424
Authored by
xcq
快速出入库功能-数量输入框只能是数字
...
|
...
|
@@ -38,7 +38,7 @@ |
38
|
38
|
</a-col> |
39
|
39
|
<a-col :span="8"> |
40
|
40
|
<a-form-model-item> |
41
|
|
- <a-input placeholder="数量" v-model="item.shipQty"/> |
|
41
|
+ <a-input placeholder="数量" v-model="item.shipQty" type="number"/> |
42
|
42
|
</a-form-model-item> |
43
|
43
|
</a-col> |
44
|
44
|
<a-col :span="4"> |
...
|
...
|
|
...
|
...
|
@@ -44,7 +44,7 @@ |
44
|
44
|
</a-col> |
45
|
45
|
<a-col :span="8"> |
46
|
46
|
<a-form-model-item> |
47
|
|
- <a-input placeholder="数量" v-model="item.qty"/> |
|
47
|
+ <a-input placeholder="数量" v-model="item.qty" type="number"/> |
48
|
48
|
</a-form-model-item> |
49
|
49
|
</a-col> |
50
|
50
|
<a-col :span="4"> |
...
|
...
|
|