|
|
|
@ -84,7 +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 value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -136,7 +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 value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -160,7 +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 value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -173,7 +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 value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|