From 0886e91fdfe3b5528f80d2b6742083aa11d16ebb Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 02 四月 2025 15:54:15 +0800
Subject: [PATCH] fix: 四期bug

---
 apps/taro/src/hooks/lifepay.ts |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/apps/taro/src/hooks/lifepay.ts b/apps/taro/src/hooks/lifepay.ts
index 574a36c..28090cd 100644
--- a/apps/taro/src/hooks/lifepay.ts
+++ b/apps/taro/src/hooks/lifepay.ts
@@ -1,5 +1,6 @@
 import { useQuery } from '@tanstack/vue-query';
 import { useLifeRechargeContext, CreateEditPayChannelsInput } from '@life-payment/core-vue';
+import { MaybeRef } from 'vue';
 
 export function useOnlineService() {
   const { blLifeRecharge } = useLifeRechargeContext();
@@ -20,11 +21,12 @@
 }
 
 type UseLifePayChannlesAllListOptions = {
+  params?: MaybeRef<API.QueryLifePayChannlesInput>;
   onSuccess?: (data: API.CreateEditPayChannelsInput[]) => any;
 };
 
 export function useLifePayChannlesAllList(options: UseLifePayChannlesAllListOptions = {}) {
-  const { onSuccess } = options;
+  const { onSuccess, params = {} } = options;
 
   const { blLifeRecharge } = useLifeRechargeContext();
 
@@ -33,9 +35,9 @@
     isLoading,
     refetch,
   } = useQuery({
-    queryKey: ['blLifeRecharge/getLifePayChannlesAllList'],
+    queryKey: ['blLifeRecharge/getLifePayChannlesAllList', params],
     queryFn: async () => {
-      return await blLifeRecharge.services.getLifePayChannlesAllList({
+      return await blLifeRecharge.services.getLifePayChannlesAllList(unref(params), {
         showLoading: false,
       });
     },

--
Gitblit v1.9.1