puzhibing
2024-02-02 e14a6debcb17348164f703fcb2a7b9b1c3608352
meiya-admin/src/main/webapp/WEB-INF/view/system/user/user_add.html
@@ -9,24 +9,31 @@
            <div class="col-sm-6 b-r">
               <#input id="account" name="账户" underline="true"/>
               <#input id="password" name="密码" underline="true" value="123456" type="password"/>
               <#input id="rePassword" name="确认密码" type="password" value="123456" underline="true"/>
               <#input id="citySel" name="部门" underline="true" readonly="readonly" hidden="deptid" clickFun="UserInfoDlg.showDeptSelectTree(); return false;" style="background-color: #ffffff !important;"/>
               <#input id="companyAddress" name="公司地址" type="text" underline="true"/>
            </div>
            <div class="col-sm-6">
               <div id="driverInfoContent">
                  <input id="birthday" name="birthday" type="hidden"/>
                  <#input id="name" name="姓名" underline="true"/>
                  <#input id="rePassword" name="确认密码" type="password" value="123456" underline="true"/>
                  <#input id="phone" name="联系电话" underline="true"/>
                  <#input id="citySel" name="部门" underline="true" readonly="readonly" hidden="deptid"
                  clickFun="UserInfoDlg.showDeptSelectTree(); return false;" style="background-color: #ffffff !important;"/>
                  <div class="form-group">
                     <label class="col-sm-3 control-label">选择省</label>
                     <label class="col-sm-3 control-label">所属城市</label>
                     <div class="col-sm-9">
                        <select class="form-control" id="provinceCode" name="provinceCode">
                           @for(cityArea in provinceList) {
                           <option value="${cityArea.provinceCode}">${cityArea.provinceName}</option>
                        <select class="form-control" id="cityCode1" name="cityCode1" onchange="Feng.selectCity1();">
                           <option value="-1">请选择</option>
                           @for(city in cityList) {
                           <option value="${city.code}">${city.name}</option>
                           @}
                        </select>
                        <select class="form-control" id="cityCode2" name="cityCode2" onchange="Feng.selectCity2();">
                           <option value="-1">请选择</option>
                        </select>
                        <select class="form-control" id="cityCode" name="cityCode">
                           <option value="-1">请选择</option>
                        </select>
                     </div>
                  </div>
               </div>