From 69c5a8f656c24c4989db30cb1c96e2e970d094d4 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 06 Jan 2026 15:25:59 +0800
Subject: [PATCH] feat:界面优化

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

diff --git a/src/subPackages/taskDetail/execution/index.vue b/src/subPackages/taskDetail/execution/index.vue
index 41d5b69..8a11578 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,18 +28,18 @@
     });
   } 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({
-      url: `/subPackages/workDetail/index?eventNum=${data.eventNum}&wLJobInfoId=${data.wLJobInfoId}`
+      url: `/subPackages/workDetail/index?eventNum=${data.eventNum}&wLJobInfoId=${data.wLJobInfoId}&current=${data.current}`
     });
   }
 }
 
 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