riku
2023-12-18 356f54467f525f437f41271fb62f6be66f2ab1e5
src/api/fysp/taskApi.js
@@ -5,33 +5,29 @@
   * 获取顶层任务
   */
  getTopTask() {
    return $fysp.get('task/alltask/0').then((res) => res.data);
    return $fysp.get('task/alltask/0');
  },
  /**
   * 获取子任务统计信息
   */
  getSubtaskSummary({ topTaskId = undefined, sceneTypeId = undefined }) {
    return $fysp
      .get('subtask/summary', {
    return $fysp.get('subtask/summary', {
        params: {
          topTaskId: topTaskId,
          sceneTypeId: sceneTypeId,
        },
      })
      .then((res) => res.data);
        sceneTypeId: sceneTypeId
      }
    });
  },
  /**
   * 获取子任务问题详情
   */
  getProBySubtask(id) {
    return $fysp
      .get('problemlist/subtask', {
    return $fysp.get('problemlist/subtask', {
        params: {
          stGuid: id,
        },
      })
      .then((res) => res.data);
  },
        stGuid: id
      }
    });
  }
};