import { defHttp } from '/@/utils/http/axios'; import { PageParams, ListGetResultModel } from './model'; enum Api { pageList = '/zfb-api/zfb/shop/sys/user/staffList', } /** * @description: Get sample list value */ export const ListApi = (params: PageParams) => defHttp.post({ url: Api.pageList, params, headers: { // @ts-ignore ignoreCancelToken: true, }, });