| | |
| | | <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> |
| | |
| | | <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> |