|
@@ -1629,6 +1629,9 @@ export default {
|
|
|
}
|
|
|
if (type != 'sxt') {
|
|
|
fireControlViewPoint(param).then(res => {
|
|
|
+ if(res.data.pointList!=null&&res.data.pointList.length==0){
|
|
|
+ this.$message.warning("设定范围内无该资源信息!")
|
|
|
+ }
|
|
|
if (res.data != null && res.data.pointList.length > 0) {
|
|
|
this.resourcesListCheck.push(type)
|
|
|
var markersList = []
|
|
@@ -1707,6 +1710,9 @@ export default {
|
|
|
url: `/center-monitor/camera/findNearbyCameras/${param.longitude}/${param.latitude}/${param.radius}`,
|
|
|
method: 'get'
|
|
|
}).then(res => {
|
|
|
+ if(res.data!=null&&res.data.length==0){
|
|
|
+ this.$message.warning("设定范围内无该资源信息!")
|
|
|
+ }
|
|
|
if (res.data != null && res.data.length > 0) {
|
|
|
this.resourcesListCheck.push(type)
|
|
|
var markersList = []
|