代码提交
This commit is contained in:
parent
01470cda34
commit
ce2c247386
|
@ -262,7 +262,7 @@ export default {
|
|||
#app {
|
||||
// width: 6144px;
|
||||
// height: 1920px;
|
||||
background: rgba(1, 1, 7, 0);
|
||||
background: rgba(1, 1, 7, 1);
|
||||
// overflow: hidden;
|
||||
.header {
|
||||
height: 11%;
|
||||
|
|
|
@ -388,6 +388,7 @@ export default {
|
|||
mouseOver() {
|
||||
let that = this;
|
||||
clearInterval(that.intervalTime);
|
||||
that.intervalTime = null
|
||||
},
|
||||
mouseLeave() {
|
||||
this.autoScroll2(67, 50, 0, document.getElementById("courtHouse"));
|
||||
|
@ -396,6 +397,7 @@ export default {
|
|||
mouseOver2() {
|
||||
let that = this;
|
||||
clearInterval(that.intervalTime1);
|
||||
that.intervalTime1 = null
|
||||
},
|
||||
mouseLeave2() {
|
||||
let name = 'courtHouse2'
|
||||
|
@ -405,6 +407,7 @@ export default {
|
|||
mouseOver3() {
|
||||
let that = this;
|
||||
clearInterval(that.intervalTime2);
|
||||
that.intervalTime2 = null
|
||||
},
|
||||
mouseLeave3() {
|
||||
let name = 'courtHouse3'
|
||||
|
|
|
@ -1113,9 +1113,12 @@ export default {
|
|||
mouseOver() {
|
||||
let that = this
|
||||
clearInterval(that.interval);
|
||||
that.interval = null
|
||||
},
|
||||
mouseLeave() {
|
||||
if (this.interval == null) {
|
||||
this.autoScroll(67, 50, 0, document.getElementById("equipmentWarnList"));
|
||||
}
|
||||
},
|
||||
},
|
||||
beforeDestroy() {
|
||||
|
|
|
@ -650,7 +650,7 @@ export default {
|
|||
buildingId: this.selectValue.value, //建筑id
|
||||
customerId: "12345678",
|
||||
date: this.value1,
|
||||
dateType: 1,
|
||||
dateType: 3,
|
||||
meterType: "1", //1.电,2.水
|
||||
pbuildingId: this.selectValue.parentId, //建组父id
|
||||
};
|
||||
|
@ -696,7 +696,7 @@ export default {
|
|||
buildingId: this.selectValue.value, //建筑id
|
||||
customerId: "12345678",
|
||||
date: this.value3,
|
||||
dateType: 3,
|
||||
dateType: 1,
|
||||
meterType: "1", //1.电,2.水
|
||||
pbuildingId: this.selectValue.parentId, //建组父id
|
||||
};
|
||||
|
@ -1743,9 +1743,12 @@ export default {
|
|||
mouseOver() {
|
||||
let that = this
|
||||
clearInterval(that.interval);
|
||||
that.interval = null
|
||||
},
|
||||
mouseLeave() {
|
||||
this.autoScroll(67, 50, 0, document.getElementById("warnList"));
|
||||
if (this.interval == null) {
|
||||
this.autoScroll(67, 50, 0, document.getElementById("warnList"));
|
||||
}
|
||||
},
|
||||
},
|
||||
beforeDestroy() {
|
||||
|
|
|
@ -809,6 +809,7 @@ export default {
|
|||
mouseOver() {
|
||||
let that = this;
|
||||
clearInterval(that.intervalTime);
|
||||
that.intervalTime = null
|
||||
},
|
||||
mouseLeave() {
|
||||
let name = 'fire'
|
||||
|
@ -818,10 +819,13 @@ export default {
|
|||
mouseOver1() {
|
||||
let that = this;
|
||||
clearInterval(that.intervalTime1);
|
||||
that.intervalTime1 = null
|
||||
},
|
||||
mouseLeave1() {
|
||||
let name = 'police'
|
||||
this.autoScroll(67, 50, 0, document.getElementById("police"),name);
|
||||
if (this.intervalTime1 == null) {
|
||||
let name = 'police'
|
||||
this.autoScroll(67, 50, 0, document.getElementById("police"),name);
|
||||
}
|
||||
},
|
||||
},
|
||||
beforeDestroy() {
|
||||
|
|
Loading…
Reference in New Issue