pull/42/head
parent
ede0dba799
commit
0b2d16e194
|
@ -679,9 +679,7 @@ export default {
|
||||||
|
|
||||||
this.drag_boxHandler()
|
this.drag_boxHandler()
|
||||||
|
|
||||||
this.timer_ = setTimeout(() => {
|
|
||||||
this.$router.push({ path: '/largeScreen1' })
|
|
||||||
}, 8000);
|
|
||||||
|
|
||||||
|
|
||||||
this.login()
|
this.login()
|
||||||
|
@ -938,6 +936,10 @@ export default {
|
||||||
let userInfo = JSON.parse(localStorage.getItem('userInfo'));
|
let userInfo = JSON.parse(localStorage.getItem('userInfo'));
|
||||||
this.dataInit(userInfo.userid)
|
this.dataInit(userInfo.userid)
|
||||||
this.get_sel_eqbyid(userInfo.userid)
|
this.get_sel_eqbyid(userInfo.userid)
|
||||||
|
|
||||||
|
this.timer_ = setTimeout(() => {
|
||||||
|
this.$router.push({ path: '/largeScreen1' })
|
||||||
|
}, 30000);
|
||||||
},
|
},
|
||||||
|
|
||||||
createVideoNew(accessToken, url, index) {
|
createVideoNew(accessToken, url, index) {
|
||||||
|
|
|
@ -185,7 +185,7 @@ export default {
|
||||||
left_: 2,
|
left_: 2,
|
||||||
|
|
||||||
popContentList: [],
|
popContentList: [],
|
||||||
popContentCurrent: 5,
|
popContentCurrent: 0,
|
||||||
|
|
||||||
typeList: [{
|
typeList: [{
|
||||||
label: '无意义的传感器',
|
label: '无意义的传感器',
|
||||||
|
@ -546,11 +546,6 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.drag_boxHandler()
|
this.drag_boxHandler()
|
||||||
|
|
||||||
this.timer1 = setTimeout(() => {
|
|
||||||
this.$router.push({ path: '/largeScreen' })
|
|
||||||
}, 24000);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// this.timer = setInterval(() => {
|
// this.timer = setInterval(() => {
|
||||||
// this.dialogVisible = !this.dialogVisible
|
// this.dialogVisible = !this.dialogVisible
|
||||||
|
@ -562,11 +557,12 @@ export default {
|
||||||
this.popContentCurrent++
|
this.popContentCurrent++
|
||||||
if (this.popContentCurrent > 5) {
|
if (this.popContentCurrent > 5) {
|
||||||
this.popContentCurrent = 0
|
this.popContentCurrent = 0
|
||||||
|
this.$router.push({ path: '/largeScreen' })
|
||||||
}
|
}
|
||||||
}, 3000)
|
}, 3000)
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
clearInterval(this.timer1) && this.timer1
|
// clearInterval(this.timer1) && this.timer1
|
||||||
clearInterval(this.timer2) && this.timer2
|
clearInterval(this.timer2) && this.timer2
|
||||||
// this.timer = null;
|
// this.timer = null;
|
||||||
// this.timer1 = null;
|
// this.timer1 = null;
|
||||||
|
@ -605,27 +601,27 @@ export default {
|
||||||
if (name == '二号') {
|
if (name == '二号') {
|
||||||
// this.top_ = 1;
|
// this.top_ = 1;
|
||||||
// this.left_ = 6.2
|
// this.left_ = 6.2
|
||||||
return 'top:1rem;left:8rem'
|
return 'top:1rem;left:6.2rem'
|
||||||
} else if (name == '一号') {
|
} else if (name == '一号') {
|
||||||
// this.top_ = 3.5;
|
// this.top_ = 3.5;
|
||||||
// this.left_ = 3.8
|
// this.left_ = 3.8
|
||||||
return 'top:3.5rem;left:4.8rem'
|
return 'top:3.5rem;left:3.8rem'
|
||||||
} else if (name == '3号') {
|
} else if (name == '3号') {
|
||||||
// this.top_ = 2;
|
// this.top_ = 2;
|
||||||
// this.left_ = 9
|
// this.left_ = 9
|
||||||
return 'top:2rem;left:11.5rem'
|
return 'top:2rem;left:9rem'
|
||||||
} else if (name == '4号') {
|
} else if (name == '4号') {
|
||||||
// this.top_ = 2;
|
// this.top_ = 2;
|
||||||
// this.left_ = 9.3
|
// this.left_ = 9.3
|
||||||
return 'top:2rem;left:14rem'
|
return 'top:2rem;left:9.3rem'
|
||||||
} else if (name == '5') {
|
} else if (name == '5') {
|
||||||
// this.top_ = 3.5;
|
// this.top_ = 3.5;
|
||||||
// this.left_ = 6.5
|
// this.left_ = 6.5
|
||||||
return 'top:6.5rem;left:10.5rem'
|
return 'top:3.5rem;left:6.5rem'
|
||||||
} else if (name == '6') {
|
} else if (name == '6') {
|
||||||
// this.top_ = 0.8;
|
// this.top_ = 0.8;
|
||||||
// this.left_ = 7.2
|
// this.left_ = 7.2
|
||||||
return 'top:0.8rem;left:11rem'
|
return 'top:0.8rem;left:7.2rem'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue