hcong
2024-10-11 cf5d5ffc8350d86daaca952c24452b16e368c127
src/api/fysp/taskApi.js
@@ -34,13 +34,27 @@
  /**
   * 获取子任务问题详情
   */
  getProBySubtask(id) {
    return $fysp
  async getProBySubtask(id) {
    return await $fysp
      .get('problemlist/subtask', {
        params: {
          stGuid: id
        }
      })
      .then((res) => res.data);
  },
  /**
   * 通过总任务id和时间区间获取子任务列表
   */
  async getByTopTaskAndDate({startTime, endTime, sceneTypeId, topTaskId}) {
    const params = `?startTime=${startTime}&endTime=${endTime}&sceneTypeId=${sceneTypeId}&topTaskId=${topTaskId}`;
    return await $fysp.get(`subtask/getSubTask${params}`).then((res) => res.data);
  },
  /**
   * 获取某个场景的巡查任务
   */
  async getSubtaskByScene({startTime, endTime, sceneId}) {
    const params = `?startTime=${startTime}&endTime=${endTime}&sceneId=${sceneId}`;
    return await $fysp.get(`subtask/byScene${params}`).then((res) => res.data);
  }
};