|
|
|
@ -14,10 +14,6 @@
|
|
|
|
|
<label style="width: 80px">姓名:</label>
|
|
|
|
|
<input type="text" name="name"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>性别:</label>
|
|
|
|
|
<input type="text" name="sex"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>身份证号:</label>
|
|
|
|
|
<input type="text" name="cerno"/>
|
|
|
|
@ -26,6 +22,12 @@
|
|
|
|
|
<label>联系方式:</label>
|
|
|
|
|
<input type="text" name="phone"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
状态:<select name="applyStatus" th:with="type=${@dict.getType('sys_user_apply_status')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
|
|
|
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
|
|
|
|