状态查询

This commit is contained in:
majian314
2025-09-26 17:47:27 +08:00
parent bc10632f5f
commit c9d8681199
2 changed files with 9 additions and 3 deletions

View File

@ -45,7 +45,7 @@
</select>
</li>
<li>
<label>车辆状态:</label>
<label>状态:</label>
<select name="status" th:with="type=${@dict.getType('key_car_status')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>

View File

@ -55,7 +55,13 @@
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>状态:</label>
<select name="status" th:with="type=${@dict.getType('key_company_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>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>