vben
2020-11-18 46e087537415a91f8a656e1d7a83359d616d1b91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defHttp } from '/@/utils/http/axios';
import { GetAccountInfoModel } from './model/accountModel';
 
enum Api {
  ACCOUNT_INFO = '/account/getAccountInfo',
}
 
// Get personal center-basic settings
export function accountInfoApi() {
  return defHttp.request<GetAccountInfoModel>({
    url: Api.ACCOUNT_INFO,
    method: 'GET',
  });
}