From 2592dc279ec82bf3649a4dbe644c6416263a10ef Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期五, 07 三月 2025 17:10:25 +0800 Subject: [PATCH] 各模块功能新增 --- src/api/gridApi.js | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/api/gridApi.js b/src/api/gridApi.js index 2e9469f..8abfe14 100644 --- a/src/api/gridApi.js +++ b/src/api/gridApi.js @@ -5,10 +5,11 @@ * 鍗槦閬ユ祴缃戞牸鐩稿叧鎺ュ彛API */ export default { - fetchGridGroup(area, page, perPage) { + fetchGridGroup(area, type, page, perPage) { return $http .post(`air/satellite/grid/group`, area, { params: { + type, page: page, per_page: perPage } @@ -141,5 +142,11 @@ return $http .post(`air/satellite/grid/data/mix`, dataIdList) .then((res) => res.data); + }, + + buildUnderwayProduct(missionCode, groupId) { + return $http.get(`air/satellite/import/grid/aod/download/template`, { + responseType: 'blob' + }); } }; -- Gitblit v1.9.3