From 04a86a4520e1f1f42e62383f4bebf7e384d9a4d2 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 14 八月 2025 16:38:13 +0800
Subject: [PATCH] fix: 灵工管理

---
 apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue b/apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue
index 2405fab..d1963e7 100644
--- a/apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue
+++ b/apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue
@@ -13,7 +13,7 @@
         :isRealName="item.isRealName"
         :arrangeCount="item.arrangeCount"
         :educationalLevel="item.educationalLevel"
-        @contact="handleContact"
+        @click="goFlexJobDetail(item)"
       >
       </FlexJobCard>
     </template>
@@ -26,6 +26,7 @@
 import { useInfiniteLoading } from '@12333/hooks';
 import { OrderInputType } from '@12333/constants';
 import * as flexWorkerServices from '@12333/services/api/FlexWorker';
+import Taro from '@tarojs/taro';
 
 defineOptions({
   name: 'InnerPage',
@@ -52,9 +53,9 @@
   }
 );
 
-function handleContact() {}
+function goFlexJobDetail(item: API.GetUserResumesQueryResultItem) {
+  Taro.navigateTo({
+    url: `${RouterPath.flexJobDetail}?userId=${item.id}`,
+  });
+}
 </script>
-
-<style lang="scss">
-@import '@/styles/common.scss';
-</style>

--
Gitblit v1.9.1