forked from drone/command-center-dashboard

罗广辉
2025-04-17 3474bf6c487acc87d5964fa2121bb856d29756b6
feat: 历史任务详情改造,移入到公共组件,传入id即可使用
2 files renamed
5 ■■■■■ changed files
src/components/DeviceJobDetails/DeviceJobDetailsMap.vue patch | view | raw | blame | history
src/components/DeviceJobDetails/JobRelatedEvents.vue 5 ●●●●● patch | view | raw | blame | history
src/components/DeviceJobDetails/DeviceJobDetailsMap.vue
src/components/DeviceJobDetails/JobRelatedEvents.vue
File was renamed from src/views/SignMachineNest/MachineRight/MachineStatus/MachineTableDetails/DeviceJob/DeviceJobDetails/JobRelatedEvents.vue
@@ -20,7 +20,7 @@
                    <div class="processing" v-if="scope.row.status === 3">处理中</div>
                    <div class="done" v-if="scope.row.status === 4">已完成</div>
                    <div class="ended" v-if="scope.row.status === 5">已完结</div>
                </template>
            </el-table-column>
            <el-table-column label="操作" width="80">
@@ -67,13 +67,14 @@
}
const wayLineJodInfoId = inject('wayLineJodInfoId')
const getList = () => {
    params.value.wayLineJodInfoId = wayLineJodInfoId.value
    getDeviceEventList(params.value, sizeParams.value).then(res => {
        const resData = res?.data?.data || {}
        list.value = resData.records
        total.value = resData.total
    })
}