From 61bd03c3b83cdb5be0eb0e8badcdf0f75e3c43fc Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 01 十二月 2025 16:32:10 +0800
Subject: [PATCH] feat: 页面

---
 apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue |   84 ++++++++++++++++++++++++-----------------
 1 files changed, 49 insertions(+), 35 deletions(-)

diff --git a/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue b/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
index 7591634..d81634d 100644
--- a/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
+++ b/apps/cMiniApp/src/subpackages/task/taskDetail/InnerPage.vue
@@ -75,7 +75,7 @@
         v-if="
           from === 'hire' &&
           !(
-            detail?.checkReceiveMethod === EnumTaskCheckReceiveMethod.CheckIn &&
+            isContainCheckIn &&
             detail?.hireButton === GetTaskInfoQueryResultHireButton.ApplyCheckReceive
           )
         "
@@ -126,8 +126,11 @@
   GetTaskInfoQueryResultHireButton,
   GetTaskInfoQueryResultApplyButton,
   EnumTaskCheckReceiveMethod,
+  subscribeMessageTemplateIds,
 } from '@12333/constants';
 import { useAccessLogin } from '@/hooks';
+import { useTaskInfo } from '@12333/hooks';
+import _ from 'lodash';
 
 defineOptions({
   name: 'InnerPage',
@@ -141,26 +144,7 @@
 const id = router.params?.id ?? '';
 const from = router.params?.from ?? '';
 
-const {
-  isLoading,
-  isError,
-  data: detail,
-  refetch,
-} = useQuery({
-  queryKey: ['taskServices/getTaskInfo', id],
-  queryFn: async () => {
-    return await taskServices.getTaskInfo(
-      { id: id },
-      {
-        showLoading: false,
-      }
-    );
-  },
-  placeholderData: () => ({} as API.GetTaskInfoQueryResult),
-  onSuccess(data) {
-    // if (data.isExistTradeChatRecord) setTrue();
-  },
-});
+const { isLoading, isError, detail, refetch, isContainCheckIn } = useTaskInfo({ id });
 
 const { isCollapse, setTrue } = useToggle();
 
@@ -180,20 +164,50 @@
   }
 });
 
-const handleApply = useAccessReal(
-  async () => {
-    try {
-      let params: API.ApplyTaskCommand = {
-        ids: [id],
-      };
-      let res = await taskUserServices.applyTask(params);
-      if (res) {
-        Message.success('鎶ュ悕鎴愬姛');
-        refetch({ type: 'inactive' });
-      }
-    } catch (error) {}
-  },
-  { message: '瀹炲悕鎴愬姛鍚庢墠鍙姤鍚嶏紝璇峰墠寰�瀹炲悕璁よ瘉' }
+const tmplIds = ['T7Gta6H6TROZjcqeSWVTG2wWGGInWh0fGTOgCCgVBuk'];
+
+const handleApply = _.debounce(
+  useAccessReal(
+    async () => {
+      try {
+        // if (!Taro.requestSubscribeMessage) {
+        //   await Message.confirm({ message: '浣犵殑寰俊鐗堟湰杩囦綆锛屼笉鏀寔璁㈤槄娑堟伅锛屾槸鍚︾户缁姤鍚�' });
+        // }
+        // const res = await Taro.getSetting({
+        //   withSubscriptions: true,
+        // });
+        // let setting: boolean[] = [];
+        // if (res.subscriptionsSetting && res.subscriptionsSetting.itemSettings) {
+        //   setting = tmplIds
+        //     .map((id) => res.subscriptionsSetting.itemSettings[id] !== 'accept')
+        //     .filter(Boolean);
+        // }
+        // console.log('setting: ', setting);
+        // if (setting.length > 0) {
+        //   Taro.requestSubscribeMessage({
+        //     tmplIds: tmplIds,
+        //     success: function (res) {
+        //       console.log('res: ', res);
+        //     },
+        //   });
+        // }
+        let params: API.ApplyTaskCommand = {
+          ids: [id],
+        };
+        let res = await taskUserServices.applyTask(params);
+        if (res) {
+          Message.success('鎶ュ悕鎴愬姛');
+          refetch({ type: 'inactive' });
+        }
+      } catch (error) {}
+    },
+    { message: '瀹炲悕鎴愬姛鍚庢墠鍙姤鍚嶏紝璇峰墠寰�瀹炲悕璁よ瘉' }
+  ),
+  1000,
+  {
+    leading: true,
+    trailing: false,
+  }
 );
 
 const handleAttention = useAccessLogin(async () => {

--
Gitblit v1.9.1