From 16c20014f4413c8eb50118e1c18db56a21bed9f6 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 03 Jun 2025 10:21:25 +0800
Subject: [PATCH] feat:日历任务跳转到任务管理

---
 src/views/wel/components/calendarBox.vue |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/src/views/wel/components/calendarBox.vue b/src/views/wel/components/calendarBox.vue
index 3b39e81..fdfdeaf 100644
--- a/src/views/wel/components/calendarBox.vue
+++ b/src/views/wel/components/calendarBox.vue
@@ -81,6 +81,8 @@
   });
 };
 const jumpcalendar = (event, day) => {
+
+
   if (event.name === '工单') {
     router.push({
       path: '/tickets/ticket',
@@ -89,7 +91,13 @@
       },
     });
   }else{
-     ElMessage.warning('加急开发中...')
+    router.push({
+      path: '/job/jobstatistics',
+      query: {
+        day: day,
+      },
+    });
+    //  ElMessage.warning('加急开发中...')
   }
 };
 onMounted(() => {

--
Gitblit v1.9.3