riku
2025-04-11 5e059c9c17a6d63b6c017d2d2beb25ae227071d1
src/api/gridApi.js
@@ -148,5 +148,30 @@
    return $http.get(`air/satellite/import/grid/aod/download/template`, {
      responseType: 'blob'
    });
  },
  mixUnderwayGridData(groupId, dataIdList) {
    return $http
      .post(`air/satellite/product/underway/mix`, dataIdList, {
        params: {
          groupId
        }
      })
      .then((res) => res.data);
  },
  buildUnderwayHeatmap(groupId, gridDataDetailList, searchLength) {
    return $http
      .post(
        `air/satellite/product/underway/heatmap/build`,
        gridDataDetailList,
        {
          params: {
            groupId: groupId,
            searchLength: searchLength
          }
        }
      )
      .then((res) => res.data);
  }
};