From adb18caa714692ccabf111ae3ab3481bf04844d4 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期二, 28 二月 2023 18:03:01 +0800 Subject: [PATCH] 订单管理,优惠券管理 --- management/guns-admin/src/main/webapp/WEB-INF/view/system/tDriver/tDriver_add.html | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tDriver/tDriver_add.html b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tDriver/tDriver_add.html index f65db61..2d4d775 100644 --- a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tDriver/tDriver_add.html +++ b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tDriver/tDriver_add.html @@ -5,7 +5,7 @@ <div class="ibox-title"> <h5>添加</h5> </div> - <div class="ibox-content"> + <div class="ibox-content" id="driverInfoForm"> <div class="row row-lg"> <div class="col-sm-12"> <input hidden id="areaId"> @@ -22,12 +22,12 @@ <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >姓名:</label> - <input id="name" type="text" style="height: 30px" required> + <input id="name" name="name" type="text" style="height: 30px" required="required"> </div> <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >手机号:</label> - <input id="phone" type="number" style="height: 30px" required> + <input id="phone" name="phone" type="number" style="height: 30px" required="required"> </div> </div> @@ -35,12 +35,12 @@ <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >紧急联系人姓名:</label> - <input id="emergencyContact" type="text" style="height: 30px" required> + <input id="emergencyContact" name="emergencyContact" type="text" style="height: 30px" required> </div> <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >紧急联系人电话:</label> - <input id="emergencyPhone" type="number" style="height: 30px" required> + <input id="emergencyPhone" name="emergencyPhone" type="number" style="height: 30px" required> </div> </div> @@ -77,7 +77,7 @@ <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >身份证号码:</label> - <input id="idcard" type="text" style="height: 30px" required> + <input id="idcard" name="idcard" type="text" style="height: 30px" required> </div> </div> -- Gitblit v1.7.1