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

This commit is contained in:
bo.yang 2021-07-15 17:42:54 +08:00
parent 396dffefac
commit cb68414e83
1 changed files with 3 additions and 3 deletions

View File

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