You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
986 B
25 lines
986 B
6 months ago
|
import { defHttp } from '@/utils/http/axios';
|
||
|
|
||
|
export enum Api {
|
||
|
getSuperLeaderApproveInfo = '/workflow/getSuperLeaderApproveInfo',
|
||
|
|
||
|
getURTUnApprovedDaysPage = "/workflow/getURTUnApprovedDaysPage",
|
||
|
showCountBoardByAdminDivision = "/huzhouProject/showCountBoardByAdminDivision",
|
||
|
|
||
|
countStageByRefrom= "/huzhouProject/countStageByRefrom",
|
||
|
getStagePage = "/huzhouProject/getStagePage",
|
||
|
}
|
||
|
/**
|
||
|
* 总体看板
|
||
|
*/
|
||
|
|
||
|
export const countStageByRefrom = (params?) => defHttp.get({ url: Api.countStageByRefrom,params})
|
||
|
export const getStagePage = (params?) => defHttp.get({ url: Api.getStagePage,params})
|
||
|
// export const getDimensionPageSorted = (params) => defHttp.get({ url: Api.getDgetStagePageimensionPageSorted,params })
|
||
|
// export const getPageSorted = (params) => defHttp.get({ url: Api.getPageSorted,params })
|
||
|
|
||
|
// export const submitplaninfoUploadFile = (params?) =>defHttp.post({ url: Api.submitplaninfoUploadFile,headers:{ "Content-Type": "multipart/form-data" }, params })
|
||
|
|
||
|
|
||
|
|