riku
2025-03-07 2592dc279ec82bf3649a4dbe644c6416263a10ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { $http } from './index';
import moment from 'moment';
 
export default {
  fetchAOD(groupId, dataTime) {
    return $http
      .get(`air/satellite/grid/aod`, {
        params: {
          groupId,
          dataTime
        }
      })
      .then((res) => res.data);
  },
 
  fetchAODDetail(aodId, groupId, cellId) {
    return $http
      .get(`air/satellite/aod/data/detail`, {
        params: {
          aodId,
          groupId,
          cellId
        }
      })
      .then((res) => res.data);
  },
};