From 2094025ea62c340b6ba908a7f749c2bab321ce6f Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期三, 26 七月 2023 18:23:36 +0800 Subject: [PATCH] 后台代码城市管理 --- cloud-server-management/src/main/webapp/WEB-INF/view/system/tCity/TCity_add.html | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCity/TCity_add.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCity/TCity_add.html index e9a3212..9827bfe 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCity/TCity_add.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tCity/TCity_add.html @@ -8,8 +8,11 @@ <div class="form-group" id="provinceCode"> <label class="col-sm-3 control-label">所在省:</label> <div class="col-sm-9"> - <select class="form-control" id="pCode" name="pCode"> + <select class="form-control" id="pCode" name="pCode" onchange="TCarInfoDlg.oneChange(this)"> <option value="">选择省</option> + @for(obj in list){ + <option value="${obj.code}">${obj.name}</option> + @} </select> </div> </div> -- Gitblit v1.7.1