You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
536 B
26 lines
536 B
import request from '@/utils/request'
|
|
|
|
// 查询车流量
|
|
export function getTrafficVolume(tunnelId,direction) {
|
|
var query = {
|
|
tunnelId:tunnelId,
|
|
direction:direction
|
|
}
|
|
return request({
|
|
url: '/statistics/bigscreenStatisticsList',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
// 查询传感数据
|
|
export function getSensorData(tunnelId,direction) {
|
|
var query = {
|
|
tunnelId:tunnelId,
|
|
direction:direction
|
|
}
|
|
return request({
|
|
url: '/statistics/bigscreenCgqList',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|