index.ts 247 B

123456789
  1. import { GetMemberIdByEncryptData } from '@/pagesCrm/service';
  2. export const useGetMemberIdByEncryptData = async (EncryptData) => {
  3. if (!EncryptData) return;
  4. const res = await GetMemberIdByEncryptData({
  5. EncryptData,
  6. });
  7. console.log(res);
  8. };