riku
2025-07-10 2cffd9c7db5c3191cf172641c800e5a328d6f3af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { $http } from './index';
 
export default {
  /**
   * 污染溯源分析
   * @param {String} missionCode
   * @returns
   */
  pollutionTrace(missionCode) {
    return $http
      .get(`air/analysis/pollution/trace`, { params: { missionCode } })
      .then((res) => res.data);
  },
 
  fetchPollutionTraceHistory(missionCode) {
    return $http
      .get(`air/analysis/pollution/trace/history`, { params: { missionCode } })
      .then((res) => res.data);
  }
};