1
0

account.ts 320 B

123456789101112
  1. import { defHttp } from '/@/utils/http/axios';
  2. import { GetAccountInfoModel } from './model/accountModel';
  3. const { get } = defHttp;
  4. enum Api {
  5. ACCOUNT_INFO = '/account/getAccountInfo',
  6. }
  7. // Get personal center-basic settings
  8. export const accountInfoApi = () => get<GetAccountInfoModel>({ url: Api.ACCOUNT_INFO });