Browse Source

[fix]

基础资料 员工管理
修改新增员工页面,岗位下拉框添加必填属性;
dev
王晓迪 1 month ago
parent
commit
1ae1256e2e
  1. 4
      ruoyi-admin/src/main/resources/templates/system/user/add.html

4
ruoyi-admin/src/main/resources/templates/system/user/add.html

@ -103,9 +103,9 @@
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<div class="form-group"> <div class="form-group">
<label class="col-xs-2 control-label">岗位:</label> <label class="col-xs-2 control-label is-required">岗位:</label>
<div class="col-xs-4"> <div class="col-xs-4">
<select id="post" class="form-control select2-multiple" multiple> <select required name="post" id="post" class="form-control select2-multiple" multiple>
<option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}" th:disabled="${post.status == '1'}"></option> <option th:each="post:${posts}" th:value="${post.postId}" th:text="${post.postName}" th:disabled="${post.status == '1'}"></option>
</select> </select>
</div> </div>

Loading…
Cancel
Save