index.ts 232 B

123456
  1. import request from '@/axios'
  2. import { REQUEST_BASE } from '@/constants'
  3. export const getLogList = (params: { page?: number; limit?: number }): Promise<IResponse> => {
  4. return request.get({ url: `${REQUEST_BASE}/log`, params })
  5. }