11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { requestClient } from '#/api/request';
|
||
|
||
const prefix = 'account-able-change-log/';
|
||
|
||
/** 平台审计全量列表(audit=1) */
|
||
export async function getAccountAbleChangeLogAuditList(data: any) {
|
||
return requestClient.get<any>(`${prefix}list`, {
|
||
params: { ...data, audit: 1 },
|
||
});
|
||
}
|