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.
 
 
 

66 lines
1.2 KiB

import request from '@/utils/request'
export default {
// 左侧数据总览
getProjectDaily: function(data) {
return request({
url: '/datacenter/getProjectDailyNew',
method: 'post',
data: data
});
},
// 库存分析图 ,
getReportInventory: function(data) {
return request({
url: '/datacenter/getReportInventoryNew',
method: 'post',
data: data
});
},
// 获取基础信息 ,
getProjectBySid: function(data) {
return request({
url: '/datacenter/getProjectBySid?projectSid='+data,
method: 'get',
data: data
});
},
// 获取仓库sid,
getProjectIsJk: function(data) {
return request({
url: '/datacenter/getProjectIsJk?projectSid='+data,
method: 'get'
});
},
// 获取摄像头 设备列表,
getOtherList: function(data) {
return request({
url: '/datacenter/getOtherList?type=1&ckId='+data,
method: 'get'
});
},
// 实时监控 ,
getVedioPcLiveById: function(data) {
return request({
url: '/datacenter/getVedioPcLiveByIdNew?id=' + data,
method: 'get'
});
},
// 回放监控 ,
getVedioPcRecById: function(data) {
return request({
url: '/datacenter/getVedioPcRecByIdNew?id=' + data,
method: 'get'
});
},
}