1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| import axios from 'axios';
| export default {
| /**
| * 查询事件总览列表
| *
| * @param {[Object]} data 查询条件
| * 参数:{"province":"省","city":"市","county":"县","event_type":0,"dev_id":618500002,"record_time":"2000-01-01 00:00:00","record_time1":"2020-09-27 00:00:00","page":{"pageCurr":1,"pageSize":10,"pageAll":0},"pageCurr":1}
| *
| */
| elentSearch(data) {
| return axios({
| method: 'post',
| url: 'Btsstaechange_infAction!serchByCondition',
| data: 'json='+JSON.stringify(data),
| });
| },
| }
|
|