报工查询

This commit is contained in:
2023-06-09 09:12:14 +08:00
parent c195e29835
commit 478a5b217c

View File

@@ -60,7 +60,7 @@
<th width="6%">操作工</th> <th width="6%">操作工</th>
<th width="5%">状态</th> <th width="5%">状态</th>
</tr> </tr>
<tr v-for="e in dataList" :key="e.macoperate_id" :class="{'selected_icon': pkId === e.workorder_id}" @click="toRadio(e)"> <tr v-for="e in dataList" :key="e.macoperate_id" :class="{'selected_icon': pkId === e.macoperate_id}" @click="toRadio(e)">
<!-- <td> <!-- <td>
<button class="iconfont select_icon" :class="{'selected_icon': pkId === e.macoperate_id}" @click="toRadio(e)"></button> <button class="iconfont select_icon" :class="{'selected_icon': pkId === e.macoperate_id}" @click="toRadio(e)"></button>
</td> --> </td> -->
@@ -126,7 +126,7 @@ export default {
return { return {
options: [], options: [],
value: '', value: '',
value1: [], value1: [new Date((new Date().getTime() - 24 * 60 * 60 * 1000)), new Date((new Date().getTime() + 24 * 60 * 60 * 1000))],
workorder: '', workorder: '',
disabled1: false, disabled1: false,
disabled2: false, disabled2: false,
@@ -150,6 +150,7 @@ export default {
}, },
created () { created () {
this._deviceList() this._deviceList()
this.getDatas()
this.debouncedgetDatas = this.debounce(this.getDatas, 500) this.debouncedgetDatas = this.debounce(this.getDatas, 500)
}, },
methods: { methods: {