From cd1f367b9e0f50133e2b3e15b98d5301eb9a1606 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Wed, 22 Apr 2026 16:08:56 +0800
Subject: [PATCH] feat:增加心跳机制

---
 src/subPackages/taskDetail/execution/index.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/subPackages/taskDetail/execution/index.vue b/src/subPackages/taskDetail/execution/index.vue
index 41d5b69..2d6071c 100644
--- a/src/subPackages/taskDetail/execution/index.vue
+++ b/src/subPackages/taskDetail/execution/index.vue
@@ -8,7 +8,7 @@
 import WebViewPlus from "@/components/WebViewPlus.vue";
 import {getWebViewUrl} from "@/utils/index.js";
 
-const wayLineJodInfoId = ref(null)
+const wayLineJobInfoId = ref(null)
 const viewUrl = ref('')
 // const viewUrl = ref(getWebViewUrl('/execution'))
 
@@ -28,7 +28,7 @@
     });
   } else if (data.type === 'control') {
     uni.redirectTo({
-      url: `/pages/inspectionTask/execution/index?wayLineJodInfoId=${wayLineJodInfoId.value}`
+      url: `/pages/inspectionTask/execution/index?wayLineJobInfoId=${wayLineJobInfoId.value}`
     });
   } else if(data.type === 'workid') {
     uni.navigateTo({
@@ -38,8 +38,8 @@
 }
 
 onLoad((options) => {
-  wayLineJodInfoId.value = options.wayLineJodInfoId
-  viewUrl.value = getWebViewUrl('/execution', {wayLineJodInfoId: wayLineJodInfoId.value, waylineJobId: options.waylineJobId, batch_no: options.batch_no})
+  wayLineJobInfoId.value = options.wayLineJobInfoId
+  viewUrl.value = getWebViewUrl('/execution', {wayLineJobInfoId: wayLineJobInfoId.value, waylineJobId: options.waylineJobId, batch_no: options.batch_no})
 })
 const isApp = ref(false)
 onShow(() => {

--
Gitblit v1.9.3