account.ts
288 Bytes
import { AccountParams } from './model/systemModel';
import { defHttp } from '/@/utils/http/axios';
enum Api {
TENANT_List = '/user/tenantt/page',
}
export const getTenantList = (params: AccountParams) => {
const url = Api.TENANT_List;
return defHttp.get({ url: url, params });
};