From 915424730f27445da2e8de13b62e77179cc1a15a Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 18 八月 2025 17:07:39 +0800
Subject: [PATCH] fix: 关闭移动充值渠道,打开电信充值渠道
---
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