From da2a4e58ecc7c5da0a3ec726708a16c21e7f60e3 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Mon, 07 Apr 2025 15:34:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/views/SignMachineNest/MachineRight/MachineTableDetails/DeviceJob/DeviceJob.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/SignMachineNest/MachineRight/MachineTableDetails/DeviceJob/DeviceJob.vue b/src/views/SignMachineNest/MachineRight/MachineTableDetails/DeviceJob/DeviceJob.vue
index 922d82c..29e661e 100644
--- a/src/views/SignMachineNest/MachineRight/MachineTableDetails/DeviceJob/DeviceJob.vue
+++ b/src/views/SignMachineNest/MachineRight/MachineTableDetails/DeviceJob/DeviceJob.vue
@@ -32,8 +32,8 @@
</template>
<script setup>
import { useStore } from 'vuex'
-import { getDeviceJobList } from '@/api/home/machineNest'
import DeviceJobDetails from './DeviceJobDetails/DeviceJobDetails.vue';
+import { getDeviceJobList } from '@/api/home/task'
const list = ref([])
const params = ref({
@@ -47,10 +47,10 @@
const device_sn = computed(() => store.state.home.singleUavHome.device_sn)
const total = ref(0)
const deviceJobDetailsShow = ref(false)
-const jobId = ref(null)
-provide('jobId', jobId)
+const wayLineJodInfoId = ref(null)
+provide('wayLineJodInfoId', wayLineJodInfoId)
const viewJob = (row) => {
- jobId.value = row.id
+ wayLineJodInfoId.value = row.id
deviceJobDetailsShow.value = true
}
--
Gitblit v1.9.3