|
@@ -1799,7 +1799,8 @@ import {
|
|
|
joinConferences
|
|
|
} from "@/api/meeting";
|
|
|
import findUserByDept from '@/views/findUserByDept'
|
|
|
-import Cookies from "js-cookie"; //责任人选择弹框
|
|
|
+import Cookies from "js-cookie";
|
|
|
+import request from "@/utils/request"; //责任人选择弹框
|
|
|
export default {
|
|
|
dicts: ['task_source'],
|
|
|
watch: {
|
|
@@ -2549,7 +2550,13 @@ export default {
|
|
|
type: type,
|
|
|
radius: this.radius
|
|
|
}
|
|
|
- listResourceByWz(param).then(res => {
|
|
|
+ request({
|
|
|
+ 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 = []
|