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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { $http } from './index';
import {
  Base64
} from 'js-base64';
/**
 * 卫星遥测网格相关接口API
 */
export default {
  fetchGridGroup(area, page, perPage) {
    return $http
      .post(`air/satellite/grid/group`, area, {
        params: {
          page: page,
          per_page: perPage
        }
      })
      .then((res) => res.data);
  },
 
  fetchGridCell(groupId) {
    return $http
      .get(`air/satellite/grid/cell`, {
        params: {
          groupId
        }
      })
      .then((res) => res.data);
  },
 
  /**
   * 获取网格组下的遥测数据
   * @param {*} groupId
   * @param {*} dataTime
   * @param {number} type 遥测数据类型,0:原始卫星数据,1:融合数据
   * @returns
   */
  fetchGridData(groupId, dataTime, type) {
    return $http
      .get(`air/satellite/grid/data`, {
        params: {
          groupId,
          dataTime,
          type
        }
      })
      .then((res) => res.data);
  },
 
  fetchGridDataDetail(dataId, groupId, cellId) {
    return $http
      .get(`air/satellite/grid/data/detail`, {
        params: {
          dataId,
          groupId,
          cellId
        }
      })
      .then((res) => res.data);
  },
  downloadTemplate() {
    return $http
      .get(`air/satellite/import/grid/data/download/template`, {
        responseType: 'blob'
      })
      .then((res) => {
        const name = Base64.decode(res.headers.get('fileName'));
        const blob = new Blob([res.data], {
          type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
        });
        const url = window.URL.createObjectURL(blob);
        const link = document.createElement('a');
        link.href = url;
        link.download = name;
        document.body.appendChild(link);
        link.click();
        document.body.removeChild(link);
        window.URL.revokeObjectURL(url);
      });
  },
  importData(dataForm) {
    return $http
      .post(`air/satellite/import/grid/data`, dataForm)
      .then((res) => res.data);
  }
};