From d13e790a194d44e2e006ffec724acfcc6b6a5424 Mon Sep 17 00:00:00 2001 From: xcq <1306458088@qq.com> Date: Wed, 3 Apr 2024 10:27:09 +0800 Subject: [PATCH] 快速出入库功能-数量输入框只能是数字 --- ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressDeliveryModal.vue | 2 +- ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressStorageModal.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressDeliveryModal.vue b/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressDeliveryModal.vue index 2014242..062a03d 100644 --- a/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressDeliveryModal.vue +++ b/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressDeliveryModal.vue @@ -38,7 +38,7 @@ </a-col> <a-col :span="8"> <a-form-model-item> - <a-input placeholder="数量" v-model="item.shipQty"/> + <a-input placeholder="数量" v-model="item.shipQty" type="number"/> </a-form-model-item> </a-col> <a-col :span="4"> diff --git a/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressStorageModal.vue b/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressStorageModal.vue index f2158fe..b8bb86e 100644 --- a/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressStorageModal.vue +++ b/ant-design-vue-jeecg/src/views/system/monitor/modules/ExpressStorageModal.vue @@ -44,7 +44,7 @@ </a-col> <a-col :span="8"> <a-form-model-item> - <a-input placeholder="数量" v-model="item.qty"/> + <a-input placeholder="数量" v-model="item.qty" type="number"/> </a-form-model-item> </a-col> <a-col :span="4"> -- libgit2 0.22.2