From 062fb1ed6efcaac5d75bbe184524c4929dff7fcd Mon Sep 17 00:00:00 2001 From: nickchange <126672920+nickchange@users.noreply.github.com> Date: 星期三, 18 十月 2023 15:25:35 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- cloud-server-management/src/main/webapp/WEB-INF/view/system/tGoods/TGoods_edit.html | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tGoods/TGoods_edit.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tGoods/TGoods_edit.html index 9ada062..7852f3e 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tGoods/TGoods_edit.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tGoods/TGoods_edit.html @@ -77,14 +77,14 @@ <div class="form-group"> <label class="col-sm-3 control-label">发放数量:</label> <div class="col-sm-9"> - <input class="form-control" id="quantityIssued" name="quantityIssued" type="text" value="${item.quantityIssued}"> + <input class="form-control" id="quantityIssued" name="quantityIssued" type="number" value="${item.quantityIssued}"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">限领数量:</label> <div class="col-sm-9"> - <input class="form-control" id="pickUpQuantity" name="pickUpQuantity" type="text" value="${item.pickUpQuantity}"> + <input class="form-control" id="pickUpQuantity" name="pickUpQuantity" type="number" value="${item.pickUpQuantity}"> </div> </div> @@ -98,7 +98,7 @@ <div class="form-group"> <label class="col-sm-3 control-label">排序:</label> <div class="col-sm-9"> - <input class="form-control" id="sort" name="sort" type="text" value="${item.sort}"> + <input class="form-control" id="sort" name="sort" type="number" value="${item.sort}"> </div> </div> </div> -- Gitblit v1.7.1