import { defHttp } from '/@/utils/http/axios'; enum Api { // The address does not exist Error = '/service/manage/operLog/pageOperLog', } /** * @description: Trigger ajax error */ export const fireErrorApi = (params) => defHttp.post({ url: Api.Error, params: params, headers: { // @ts-ignore ignoreCancelToken: true, }, });