修改报警请求间隔

master
夜笙歌 2 years ago
parent 6ac8e99b93
commit 40b67a09ca

@ -111,9 +111,9 @@
</el-footer> </el-footer>
</el-container> </el-container>
<el-aside <el-aside
style="background-color: rgba(0,0,0,0.3);overflow: hidden;margin-bottom: 0;height: calc(100vh - 84px);;padding:12px 0 " style="background-color: rgba(0,0,0,0.3);overflow-y: auto;overflow-x: hidden;margin-bottom: 0;height: calc(100vh - 84px);;padding:12px 0 "
width="350px"> width="350px">
<div ref="warningRefP" style="height:100%;padding:0 24px">i <div ref="warningRefP" style="height:100%;padding:0 24px">
<TransitionGroup class="container" name="fade" tag="div"> <TransitionGroup class="container" name="fade" tag="div">
<div v-for="(i,index) in warringList" :key='i' ref="warningRef" <div v-for="(i,index) in warringList" :key='i' ref="warningRef"
style="position:relative;color:#fff;height: 120px;"> style="position:relative;color:#fff;height: 120px;">
@ -223,40 +223,33 @@ export default {
this.warringList = [] this.warringList = []
let i = 1 let i = 1
let timeout = null let timeout = null
let first = false let first = true
let timeoutF = () => { this.warringList = this.warringWaitList
timeout = setInterval(() => { // let timeoutF = () => {
if (i >= listLength) { // timeout = setInterval(() => {
first = true // if (i >= listLength) {
clearInterval(timeout) // first = true
} // clearInterval(timeout)
if (this.warringWaitList.length > 0) { // }
this.warringList.splice(this.warringList.length, 0, this.warringWaitList.splice(0, 1)[0]) // if (this.warringWaitList.length > 0) {
} // this.warringList.splice(this.warringList.length, 0, this.warringWaitList.splice(0, 1)[0])
i++ // }
}, 1000) // i++
} // }, 1000)
timeoutF() // }
// timeoutF()
setInterval(() => { setInterval(() => {
console.log(1)
if (first && this.warringWaitList.length > 0) { if (first && this.warringWaitList.length > 0) {
if (this.warringList.length >= listLength) { let lastData = this.warringList.splice(0, 1)
this.warringList.splice(0, 1) setTimeout(()=>{
} this.warringList.splice(this.warringList.length, 0, lastData[0] || this.warringWaitList.splice(0, 1)[0])
setTimeout(() => { },200)
this.warringList.splice(this.warringList.length, 0, this.warringWaitList.splice(0, 1)[0])
}, 500)
} }
}, 1000) }, 2000)
// console.log(this.warringList)
// console.log(domList.at(-1))
// domParent.scrollTop += 100
}) })
setInterval(() => { setInterval(() => {
this.setInfo() this.setInfo()
}, 10 * 1000) }, 60 * 1000)
// }) // })
}, },
beforeDestroy() { beforeDestroy() {

Loading…
Cancel
Save