| 12345678910111213141516 |
- import { get } from 'store';
- import { getRequest, postRequest } from '/src/lib/axios';
- export const clientManageApi = {
- /**
- * 查询委托方表头数据 @author wzs
- */
- getQueryList: (id) => {
- return getRequest(`/supports/clue/query/${id}`);
- },
- // 上传附件
- uploadDocument: (params) => {
- return postRequest(`social/upload`, params);
- },
- };
|