From 5cb1979f05446792cc33a8cb6b7aaae906da5a70 Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期三, 16 八月 2023 09:32:38 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- 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