wupengfei
4 天以前 5b0401fea3c339aa45feb0d165f36b1b7a76fdaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import * as externalSystemServices from '@/services/api/ExternalSystem';
import { useQuery } from '@tanstack/vue-query';
 
export function useGetCurrentExternalSystem() {
  const { data } = useQuery({
    queryKey: ['externalSystemServices/getCurrentExternalSystem'],
    queryFn: async () => {
      return await externalSystemServices.getCurrentExternalSystem({ showLoading: false });
    },
    initialData: () => ({} as API.GetCurrentExternalSystemOutput),
  });
 
  const isSignWallet = computed(() => data.value?.isSignWallet);
 
  return {
    isSignWallet,
  };
}