import { $fysp } from '../index' export default { /** * 获取顶层任务 */ getTopTask() { return $fysp.get('task/alltask/0').then((res) => res.data) }, /** * 查询总任务 * @param {Object} area * @returns */ fetchTopTasks(area) { return $fysp.post('task/find', area).then((res) => res.data) }, /** * 获取子任务统计信息 */ fetchSubtaskSummary({ topTaskId = undefined, sceneTypeId = undefined }) { return $fysp .get('subtask/summary', { params: { topTaskId: topTaskId, sceneTypeId: sceneTypeId } }) .then((res) => res.data) }, /** * 获取子任务统计信息 */ fetchSubtaskSummaryArea(area) { return $fysp.post('subtask/summary/area', area).then((res) => res.data) }, /** * 获取子任务问题详情 */ getProBySubtask(id) { return $fysp .get('problemlist/subtask', { params: { stGuid: id } }) .then((res) => res.data) } }