| | |
| | | <div class="select-list"> |
| | | <ul> |
| | | <li> |
| | | <p>工单号:</p> |
| | | <input type="text" name="code"/> |
| | | </li> |
| | | <li> |
| | | <p>名称:</p> |
| | | <input type="text" name="deviceName"/> |
| | | </li> |
| | | <li> |
| | | <p>类型:</p> |
| | | <select name="type" th:with="type=${@dict.getType('device_log_type')}"> |
| | | <option value="">所有</option> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> |
| | | </select> |
| | | </li> |
| | | |
| | | <li> |
| | | <p>经办人:</p> |
| | | <input type="text" name="optUser"/> |
| | |
| | | title : '工单号', |
| | | sortable:true |
| | | }, |
| | | { |
| | | field : 'projectName', |
| | | title : '场地名称', |
| | | visible: false |
| | | }, |
| | | |
| | | { |
| | | field : 'deviceCode', |
| | | title : '编号', |
| | |
| | | field : 'deviceName', |
| | | title : '名称' |
| | | }, |
| | | { |
| | | field : 'type', |
| | | title : '设备/材料', |
| | | sortable:true, |
| | | formatter: function(value, row, index) { |
| | | return $.table.selectDictLabel(typeDatas, value); |
| | | } |
| | | }, |
| | | |
| | | { |
| | | field : 'inboundDate', |
| | | title : '入库时间', |