From 796736ab48f23e50e1f95a939e54b5eba9729d7a Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期六, 08 十一月 2025 17:00:32 +0800
Subject: [PATCH] fix: bug

---
 apps/underTakeMiniApp/src/subpackages/task/components/TaskCheckCard.vue |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/apps/underTakeMiniApp/src/subpackages/task/components/TaskCheckCard.vue b/apps/underTakeMiniApp/src/subpackages/task/components/TaskCheckCard.vue
index 4465026..a04fedf 100644
--- a/apps/underTakeMiniApp/src/subpackages/task/components/TaskCheckCard.vue
+++ b/apps/underTakeMiniApp/src/subpackages/task/components/TaskCheckCard.vue
@@ -109,23 +109,23 @@
 
 const menuList = computed(() => {
   let _menuList = [];
-  if (props.checkReceiveMethod === EnumTaskCheckReceiveMethod.CheckIn) {
+  // if (props.checkReceiveMethod === EnumTaskCheckReceiveMethod.CheckIn) {
+  _menuList.push({
+    name: '鏈埌宀�',
+    value: ManageActions.OutWork,
+  });
+  if (!props.checkInTime) {
     _menuList.push({
-      name: '鏈埌宀�',
-      value: ManageActions.OutWork,
+      name: '绛惧埌',
+      value: ManageActions.CheckIn,
     });
-    if (!props.checkInTime) {
-      _menuList.push({
-        name: '绛惧埌',
-        value: ManageActions.CheckIn,
-      });
-    } else if (!props.checkOutTime) {
-      _menuList.push({
-        name: '绛惧嚭',
-        value: ManageActions.CheckOut,
-      });
-    }
+  } else if (!props.checkOutTime) {
+    _menuList.push({
+      name: '绛惧嚭',
+      value: ManageActions.CheckOut,
+    });
   }
+  // }
 
   return _menuList;
 });

--
Gitblit v1.9.1