Vben
2021-02-26 11d3f395caf7e2268630090eb34f4e5c114a96b7
提交 | 用户 | age
7ad4ce 1 import { defHttp } from '/@/utils/http/axios';
C 2 import { GetAccountInfoModel } from './model/accountModel';
3
4 enum Api {
5   ACCOUNT_INFO = '/account/getAccountInfo',
6 }
7
46e087 8 // Get personal center-basic settings
a821d9 9
11d3f3 10 export const accountInfoApi = () => defHttp.get<GetAccountInfoModel>({ url: Api.ACCOUNT_INFO });