app.ts 297 B

123456789101112
  1. import { ApiInstance } from '../type'
  2. const toolApi = (axiosInstance: ApiInstance) => ({
  3. //上传接口
  4. fileupload: (data: any) => axiosInstance.post('file/upload', data, {}),
  5. //字典接口
  6. dictType: (params: any) => axiosInstance.get('dict/get', {params}),
  7. })
  8. export default toolApi