From c5b68eac572de42861cceb43437063f0b9d66355 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Wed, 19 Jun 2024 10:00:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:license=E8=AE=A4=E8=AF=81=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/system/user/edit.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/user/edit.html b/ruoyi-admin/src/main/resources/templates/system/user/edit.html index 3e8f6bb..32a3da8 100644 --- a/ruoyi-admin/src/main/resources/templates/system/user/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/user/edit.html @@ -125,7 +125,7 @@ <div class="col-sm-8"> <select name="nation" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_nation')}"> <option value="">---请选择---</option> - <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> + <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{nation}"></option> </select> </div> </div> @@ -149,7 +149,7 @@ <div class="col-sm-8"> <select name="politics" class="form-control m-b" th:with="type=${@dict.getType('sys_user_politics')}"> <option value="">---请选择---</option> - <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> + <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{politics}"></option> </select> </div> </div> @@ -162,7 +162,7 @@ <div class="col-sm-8"> <select name="shemichengdu" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_shemi')}"> <option value="">---请选择---</option> - <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> + <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{shemichengdu}"></option> </select> </div> </div>