快递:修正点击重置按钮多选下拉框不重置的问题。

This commit is contained in:
bo.yang 2021-07-15 17:37:55 +08:00
parent c49935cb6c
commit 396dffefac
2 changed files with 6 additions and 6 deletions

View File

@ -13,14 +13,14 @@
<ul>
<li>
<label class="font-noraml">当前状态:</label>
<select class="form-control select" name="lastResultState" th:with="type=${@dict.getType('express_stats')}">
<select name="lastResultState" th:with="type=${@dict.getType('express_stats')}">
<option value="">---所有---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label class="font-noraml">是否签收:</label>
<select class="form-control" name="lastResultIsCheck">
<select name="lastResultIsCheck">
<option value="">---所有---</option>
<option value="0">未签收</option>
<option value="1">已签收</option>
@ -28,7 +28,7 @@
</li>
<li>
<label class="font-noraml">快递公司:</label>
<select class="form-control" name="lastResultCom" th:with="type=${@dict.getType('express_company')}">
<select name="lastResultCom" th:with="type=${@dict.getType('express_company')}">
<option value="">---所有---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>

View File

@ -13,8 +13,8 @@
<div class="select-list">
<ul>
<li>
<label class="font-noraml">快递公司:</label>
<select class="form-control" name="company" th:with="type=${@dict.getType('express_company')}">
快递公司:
<select name="company" th:with="type=${@dict.getType('express_company')}">
<option value="">---所有---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
@ -33,7 +33,7 @@
</li>
<li>
<label>订阅结果:</label>
<select class="form-control" name="result">
<select name="result">
<option value="">---所有---</option>
<option value="true">成功</option>
<option value="false">失败</option>