zhengyiming
2025-04-02 0886e91fdfe3b5528f80d2b6742083aa11d16ebb
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,
      });
    },