浏览代码

角色岗位禁用显示置灰

RuoYi 6 年之前
父节点
当前提交
95b5b12c4d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/resources/templates/system/user/add.html

+ 1 - 1
src/main/resources/templates/system/user/add.html

@@ -67,7 +67,7 @@
 				<label class="col-sm-3 control-label">岗位:</label>
 				<div class="col-sm-8">
 					<select id="post" name="post" class="form-control select2-hidden-accessible" multiple="">
-						<option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}"></option>
+						<option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}" th:disabled="${post.status == '1'}"></option>
 					</select>
 					
 				</div>