From 3f4c60630a161bcc0e1abf2a298522d19a56c938 Mon Sep 17 00:00:00 2001
From: czt <czt18638530771@163.com>
Date: 星期五, 13 二月 2026 14:04:50 +0800
Subject: [PATCH] 客户问题优化调整11

---
 fzzy-igdss-web/src/main/resources/templates/system/user/edit.html |   30 ++++++++++++++++--------------
 1 files changed, 16 insertions(+), 14 deletions(-)

diff --git a/fzzy-igdss-web/src/main/resources/templates/system/user/edit.html b/fzzy-igdss-web/src/main/resources/templates/system/user/edit.html
index 8b3ed71..4a0601a 100644
--- a/fzzy-igdss-web/src/main/resources/templates/system/user/edit.html
+++ b/fzzy-igdss-web/src/main/resources/templates/system/user/edit.html
@@ -77,13 +77,14 @@
                 </div>
             </div>
             <div class="row">
+
                 <div class="col-sm-6">
                     <div class="form-group">
-                        <label class="col-sm-4 control-label">宀椾綅锛�</label>
+                        <label class="col-sm-4 control-label">瑙掕壊锛�</label>
                         <div class="col-sm-8">
-                            <select id="post" class="form-control select2-multiple" multiple>
-								<option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}" th:selected="${post.flag}" th:disabled="${post.status == '1'}"></option>
-							</select>
+                            <label th:each="role:${roles}" class="check-box">
+                                <input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}">
+                            </label>
                         </div>
                     </div>
                 </div>
@@ -98,14 +99,14 @@
                     </div>
                 </div>
             </div>
-            <div class="row">
-            	<div class="col-sm-6">
+            <div class="row" style="display: none">
+                <div class="col-sm-6">
                     <div class="form-group">
-                        <label class="col-sm-4 control-label">瑙掕壊锛�</label>
+                        <label class="col-sm-4 control-label">宀椾綅锛�</label>
                         <div class="col-sm-8">
-                            <label th:each="role:${roles}" class="check-box">
-								<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:checked="${role.flag}" th:disabled="${role.status == '1'}">
-							</label>
+                            <select id="post" class="form-control select2-multiple" multiple>
+                                <option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}" th:selected="${post.flag}" th:disabled="${post.status == '1'}"></option>
+                            </select>
                         </div>
                     </div>
                 </div>
@@ -128,8 +129,8 @@
                     <div class="form-group">
                         <label class="col-sm-4 control-label">鐢ㄦ埛绫诲瀷锛�</label>
                         <div class="col-sm-8">
-                            <select name="type" class="form-control m-b" th:with="type=${@dict.getType('sys_user_type')}">
-                                <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{type}"></option>
+                            <select name="userType" class="form-control m-b" th:with="type=${@dict.getType('sys_user_type')}">
+                                <option th:each="dict:${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{userType}"></option>
                             </select>
                         </div>
                     </div>
@@ -139,8 +140,9 @@
                     <div class="form-group">
                         <label class="col-sm-4 control-label">鎵�灞為摱琛岋細</label>
                         <div class="col-sm-8">
-                            <select id="userData" class="form-control select2-multiple" multiple>
-                                <option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}" th:selected="${post.flag}" th:disabled="${post.status == '1'}"></option>
+                            <select name="userData" class="form-control m-b">
+                                <option value="">璇烽�夋嫨鎵�灞為摱琛�</option>
+                                <option th:each="bank:${banks}" th:value="${bank.id}" th:text="${bank.name}"  th:field="*{userData}"></option>
                             </select>
                         </div>
                     </div>

--
Gitblit v1.9.3