| 12345678910111213141516171819202122 |
- import { getRequest, postRequest } from '/src/lib/axios';
- export const pendingApi = {
- /**
- * 获取项目板块 @author DCCloud
- */
- initCategory: (params) => {
- return postRequest(`/deliver/project/category/list`);
- },
- /**
- * 获取施工公司 @author DCCloud
- */
- initCompanyList: (params) => {
- return getRequest(`/department/listAll`);
- },
- submitDistribution: (data) => {
- return postRequest(`/deliver/allocation/project/create`, data);
- },
- };
|