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