From 753c4aede53b07041841d9aa94859b59e366bd5d Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期一, 14 八月 2023 18:47:39 +0800 Subject: [PATCH] Merge branch '1.1' of http://120.76.84.145:10101/gitblit/r/java/SuperSaveDriving --- management/guns-admin/src/main/webapp/WEB-INF/view/system/tAgent/tAgentArea.html | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tAgent/tAgentArea.html b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tAgent/tAgentArea.html index ef237ec..b3d0394 100644 --- a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tAgent/tAgentArea.html +++ b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tAgent/tAgentArea.html @@ -9,8 +9,8 @@ <label class="col-sm-1" style="width: 20px;">省:</label> <select class="input-group col-sm-2 " onclick="TAgent.areaProvince()" id="province" style="width: 200px;height: 33px" name="province"> <option value="">请选择</option> - @for(i in province){ - <option id="${i.id}" value="${i.name}"${i.name == provinceName ? 'selected=selected' : ''}>${i.name}</option> + @for(i in provinceList){ + <option id="${i.id}" value="${i.id}"${i.name == provinceName ? 'selected=selected' : ''}>${i.name}</option> @} </select> </div> @@ -19,7 +19,7 @@ <select class="input-group col-sm-2" id="city" style="width: 200px;height: 33px" name="city"> <option value="">请选择</option> @for(city in cityList){ - <option id="${city.id}" value="${city.name}"${city.name == cityName ? 'selected=selected' : ''}>${city.name}</option> + <option id="${city.id}" value="${city.id}"${city.name == cityName ? 'selected=selected' : ''}>${city.name}</option> @} </select> </div> -- Gitblit v1.7.1