Merge remote-tracking branch 'origin/pet' into pet
commit
77ffeafcdf
|
@ -150,7 +150,7 @@ export default {
|
||||||
// 定时器
|
// 定时器
|
||||||
start() {
|
start() {
|
||||||
console.log('定时器开启')
|
console.log('定时器开启')
|
||||||
this.timer = setInterval(this.getMeteorologicalinfo, 10000) // 注意: 第一个参数为方法名的时候不要加括号;
|
this.timer = setInterval(this.getMeteorologicalinfo, 90000) // 注意: 第一个参数为方法名的时候不要加括号;
|
||||||
},
|
},
|
||||||
over() {
|
over() {
|
||||||
clearInterval(this.timer)
|
clearInterval(this.timer)
|
||||||
|
|
|
@ -274,6 +274,7 @@ export default {
|
||||||
}
|
}
|
||||||
.app-container {
|
.app-container {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container print-work">
|
<div class="app-container print-work" style="width: 100%">
|
||||||
<div v-if= "type !== 'CAMERA'" class="level-title">
|
<div v-if= "type !== 'CAMERA'" class="level-title">
|
||||||
<h1>区域名称:{{ info.GATE_AREA_NAME }}</h1>
|
<h1>区域名称:{{ info.GATE_AREA_NAME }}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="width: 100%">
|
||||||
<div class="level-title">
|
<div class="level-title">
|
||||||
<h1>摄像头名称:{{ info.NAME }}</h1>
|
<h1>摄像头名称:{{ info.NAME }}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="width: 100%">
|
||||||
<div class="level-title">
|
<div class="level-title">
|
||||||
<h1>摄像头名称:{{ info.NAME }}</h1>
|
<h1>摄像头名称:{{ info.NAME }}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1401,7 +1401,7 @@ export default {
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
var _this = this
|
var _this = this
|
||||||
const collection = new Cesium.CustomDataSource('clickEntityCollection')
|
const collection = new Cesium.CustomDataSource('clickEntityCollection')
|
||||||
|
debugger
|
||||||
poin.forEach(item => {
|
poin.forEach(item => {
|
||||||
if (!this.poinEntity.hasOwnProperty(item.id)) {
|
if (!this.poinEntity.hasOwnProperty(item.id)) {
|
||||||
const entity = drag.addEntity(item)
|
const entity = drag.addEntity(item)
|
||||||
|
|
Loading…
Reference in New Issue