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

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> <ul>
<li> <li>
<label class="font-noraml">当前状态:</label> <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 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 class="font-noraml">是否签收:</label>
<select class="form-control" name="lastResultIsCheck"> <select name="lastResultIsCheck">
<option value="">---所有---</option> <option value="">---所有---</option>
<option value="0">未签收</option> <option value="0">未签收</option>
<option value="1">已签收</option> <option value="1">已签收</option>
@ -28,7 +28,7 @@
</li> </li>
<li> <li>
<label class="font-noraml">快递公司:</label> <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 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>

View File

@ -13,8 +13,8 @@
<div class="select-list"> <div class="select-list">
<ul> <ul>
<li> <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 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>
@ -33,7 +33,7 @@
</li> </li>
<li> <li>
<label>订阅结果:</label> <label>订阅结果:</label>
<select class="form-control" name="result"> <select name="result">
<option value="">---所有---</option> <option value="">---所有---</option>
<option value="true">成功</option> <option value="true">成功</option>
<option value="false">失败</option> <option value="false">失败</option>