forked from Gitlink/forgeplus-react
25 lines
607 B
JavaScript
25 lines
607 B
JavaScript
import fetch from '../Information/fetch'
|
|
|
|
//今日工作态势
|
|
export function todayWorkSituation() {
|
|
return fetch({
|
|
url: `/pms/specialArea/softwareFact/statis/todayWorkSituation`,
|
|
method: 'get',
|
|
});
|
|
}
|
|
|
|
//月、周工作态势
|
|
export function weekMonthWorkSituation(type) {
|
|
return fetch({
|
|
url: `/pms/specialArea/softwareFact/statis/weekMonthWorkSituation?type=${type}`,
|
|
method: 'get',
|
|
});
|
|
}
|
|
|
|
//项目研发状态
|
|
export function projectSituation() {
|
|
return fetch({
|
|
url: `/pms/specialArea/softwareFact/statis/projectSituation`,
|
|
method: 'get',
|
|
});
|
|
} |