|
|
|
@ -84,6 +84,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">用户性别:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="sex" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_sex')}">
|
|
|
|
|
<option value="">请选择用户性别</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -115,7 +116,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">角色:</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:disabled="${role.status == '1'}" >
|
|
|
|
|
<input name="role" type="checkbox" th:value="${role.roleId}" th:text="${role.roleName}" th:disabled="${role.status == '1'}" >
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -135,6 +136,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">民族:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="nation" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_nation')}">
|
|
|
|
|
<option value="">请选择民族</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -158,6 +160,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label">政治面貌:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="politics" class="form-control m-b" th:with="type=${@dict.getType('sys_user_politics')}">
|
|
|
|
|
<option value="">请选择政治面貌</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -170,6 +173,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">涉密程度:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="shemichengdu" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_shemi')}">
|
|
|
|
|
<option value="">请选择涉密程度</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|