common.ts 499 B

123456789101112131415161718
  1. import { ApiInstance } from '../type'
  2. /*
  3. * 性别 gender
  4. 民族 nation
  5. 婚姻状况 marriage
  6. 政治面貌 political_status
  7. 健康状况 health_status
  8. 学历 educational
  9. 银行 bank_info
  10. * */
  11. const commonApi = (axiosInstance: ApiInstance) => ({
  12. personInfo: (data: string) => axiosInstance.get(`/dict/get?dictCode=${data}`),
  13. fileUpload: (data: any) => axiosInstance.post('/file/upload', data, {}), // 文件上传
  14. })
  15. export default commonApi