From 20c972a9f0a3abfc260b37c080c40a15d6ebeba6 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 10 四月 2025 16:28:19 +0800 Subject: [PATCH] Merge branch 'master' of ssh://114.215.109.124:29418/underway-vue --- src/api/gridApi.js | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/api/gridApi.js b/src/api/gridApi.js index 83a8c4d..f9f4dff 100644 --- a/src/api/gridApi.js +++ b/src/api/gridApi.js @@ -150,6 +150,16 @@ }); }, + 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( @@ -158,7 +168,7 @@ { params: { groupId: groupId, - searchLength: 4 + searchLength: searchLength } } ) -- Gitblit v1.9.3