index.js 394 B

12345678910111213141516
  1. import { get } from 'store';
  2. import { getRequest, postRequest } from '/src/lib/axios';
  3. export const clientManageApi = {
  4. /**
  5. * 查询委托方表头数据 @author wzs
  6. */
  7. getQueryList: (id) => {
  8. return getRequest(`/supports/clue/query/${id}`);
  9. },
  10. // 上传附件
  11. uploadDocument: (params) => {
  12. return postRequest(`social/upload`, params);
  13. },
  14. };