1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| import {$http} from '@/api/index.js';
|
| export default{
| /**
| * 根据站点信或月份,类型 查询风险值
| * @param:
| * @returns:
| */
|
|
| queryRiskValue(siteName,month,type){
| const params = {
| month:month,
| type:type,
| }
|
| if(siteName != '' || siteName != null){
| params.siteName = siteName
| }
|
| return $http.post('/dust/risk/riskValue',params)
| },
| }
|
|