|
|
|
@ -15,12 +15,22 @@
|
|
|
|
|
<input type="text" name="id"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>设备品牌:</label>
|
|
|
|
|
<input type="text" name="propertyBrand"/>
|
|
|
|
|
<label>名称:</label>
|
|
|
|
|
<input type="text" name="name"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>密品型号:</label>
|
|
|
|
|
<input type="text" name="propertyNo"/>
|
|
|
|
|
<label>维修状态:</label>
|
|
|
|
|
<select name="maintainState" th:with="type=${@dict.getType('sys_maintain_state')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<label>报废状态:</label>
|
|
|
|
|
<select name="destoryType" th:with="type=${@dict.getType('sys_baofei_type')}">
|
|
|
|
|
<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>
|
|
|
|
|