|
@@ -124,6 +124,10 @@
|
|
|
selectCameraByDeptId,
|
|
|
getSensorListByDeptId,
|
|
|
getDlblistBydeptId,
|
|
|
+ getCamerasByDeptId_direct,
|
|
|
+ getDlblistBydeptId_direct,
|
|
|
+ selectCameraByDeptId_direct,
|
|
|
+ selectKeyAreaList_direct,
|
|
|
selectKeyAreaList,
|
|
|
getRegionalFlag,
|
|
|
getCamerasByDeptId,
|
|
@@ -411,7 +415,8 @@
|
|
|
// this.findCameraByDept(data.id)
|
|
|
if (that.localMark == 'she') {
|
|
|
that.selectCameraByDeptId(data.id);
|
|
|
- getCamerasByDeptId(data.id).then(res => {
|
|
|
+ let deptProtype = null;
|
|
|
+ getCamerasByDeptId_direct(data.id,deptProtype).then((res) => {
|
|
|
that.$refs.TVWalls.showTVWall(res.data, {
|
|
|
longitude: data.deptLongitude,
|
|
|
latitude: data.deptLatitude
|
|
@@ -461,7 +466,7 @@
|
|
|
getDlblistBydeptId(deptId) {
|
|
|
let that = this;
|
|
|
let markersList = [];
|
|
|
- getDlblistBydeptId(that.deptId).then(function(res) {
|
|
|
+ getDlblistBydeptId_direct(that.deptId).then(function(res) {
|
|
|
// that.loudspeakerNum = res.data.length
|
|
|
that.visuForestCloudCameraBOListSearch = []
|
|
|
that.tempList = []
|
|
@@ -553,7 +558,7 @@
|
|
|
getDlblistBydeptIds() {
|
|
|
let that = this;
|
|
|
|
|
|
- getDlblistBydeptId(that.deptId).then(function(res) {
|
|
|
+ getDlblistBydeptId_direct(that.deptId).then(function(res) {
|
|
|
that.loudspeakerNum = res.data.length
|
|
|
})
|
|
|
.catch(function(error) {
|
|
@@ -1050,7 +1055,7 @@
|
|
|
this.keyAreaList = []
|
|
|
//获取重点区域列表
|
|
|
let that = this
|
|
|
- selectKeyAreaList().then(res => {
|
|
|
+ selectKeyAreaList_direct().then(res => {
|
|
|
that.keyAreaList = res.data
|
|
|
})
|
|
|
},
|
|
@@ -1312,7 +1317,7 @@
|
|
|
let that = this
|
|
|
that.cameraMarkersList = []
|
|
|
that.visuForestCloudCameraBOList = []
|
|
|
- selectCameraByDeptId(depId).then(res => {
|
|
|
+ selectCameraByDeptId_direct(depId).then((res) => {
|
|
|
//根据设备类型查看列表
|
|
|
that.visuForestCloudCameraBOList = res.data
|
|
|
that.visuForestCloudCameraBOListSearch = res.data
|