From 5af417d60d0cc3cd37afacead01c01ac2d7b6970 Mon Sep 17 00:00:00 2001 From: nickchange <126672920+nickchange@users.noreply.github.com> Date: 星期二, 24 十月 2023 16:58:27 +0800 Subject: [PATCH] 10.24。1 --- cloud-server-management/src/main/webapp/WEB-INF/view/system/tSite/TSite_edit.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tSite/TSite_edit.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tSite/TSite_edit.html index 7b51d0c..a3718c9 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tSite/TSite_edit.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tSite/TSite_edit.html @@ -85,11 +85,11 @@ </div> </div> <div class="form-group" id="siteType"> - <label class="col-sm-3 control-label">*场地类型:</label> + <label class="col-sm-3 control-label">*场地分类:</label> <div class="col-sm-9"> <select style="width: 300px" class="form-control" id="siteTypeId" name = "typeId"> @for(obj in siteType){ - <option value="${obj.id}">${obj.name}</option> + <option value="${obj.id}" ${obj.id == list.siteTypeId ? 'selected=selected' : ''}>${obj.name}</option> @} </select> </div> -- Gitblit v1.7.1