chore: update center page

This commit is contained in:
vben
2020-11-15 13:46:16 +08:00
parent 661db0c767
commit abb0cfae06
7 changed files with 35 additions and 46 deletions

View File

@@ -3,14 +3,12 @@ import { GetAccountInfoModel } from './model/accountModel';
enum Api {
ACCOUNT_INFO = '/account/getAccountInfo',
SECURE_LIST = '/account/getSecureList',
}
// 获取个人中心--基础设置内容
export function accountInfoApi(params: any) {
export function accountInfoApi() {
return defHttp.request<GetAccountInfoModel>({
url: Api.ACCOUNT_INFO,
method: 'GET',
params,
});
}