From b81c160c3a7b3bdf487406f5c1f8fb6524b2f82e Mon Sep 17 00:00:00 2001
From: jiazx0107 <jiazx0107@163.com>
Date: 星期三, 19 十一月 2025 21:59:04 +0800
Subject: [PATCH] 用户增加类型和所属银行
---
fzzy-igdss-web/src/main/resources/templates/system/user/edit.html | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 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 d4136fc..8b3ed71 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
@@ -120,6 +120,36 @@
</div>
</div>
+
+
+ <!--鏂板瀛楁 -->
+ <div class="row">
+ <div class="col-sm-6">
+ <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>
+ </div>
+ </div>
+ </div>
+
+ <div class="col-sm-6">
+ <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>
+ </div>
+ </div>
+ </div>
+
+ </div>
+ <!--鏂板瀛楁缁撴潫 -->
+
+
<h4 class="form-header h4">鍏朵粬淇℃伅</h4>
<div class="row">
<div class="col-sm-12">
--
Gitblit v1.9.3