pull/49/head
parent
ac738959dc
commit
7578cf5629
|
@ -220,7 +220,7 @@ export default {
|
||||||
left_: 2,
|
left_: 2,
|
||||||
|
|
||||||
popContentList: [],
|
popContentList: [],
|
||||||
popContentCurrent: 0,
|
popContentCurrent: 1,
|
||||||
|
|
||||||
// 自动跳转和手动跳转切换
|
// 自动跳转和手动跳转切换
|
||||||
autoPlay: false, //false 手动切换 true 自动切换
|
autoPlay: false, //false 手动切换 true 自动切换
|
||||||
|
@ -666,8 +666,8 @@ export default {
|
||||||
localStorage.setItem("autoPlay", JSON.stringify(this.autoPlay));
|
localStorage.setItem("autoPlay", JSON.stringify(this.autoPlay));
|
||||||
this.timer2 = setInterval(() => {
|
this.timer2 = setInterval(() => {
|
||||||
this.popContentCurrent++;
|
this.popContentCurrent++;
|
||||||
if (this.popContentCurrent > 7) {
|
if (this.popContentCurrent > 6) {
|
||||||
this.popContentCurrent = 0;
|
this.popContentCurrent = 1;
|
||||||
// this.$router.push({ path: "/largeScreen" });
|
// this.$router.push({ path: "/largeScreen" });
|
||||||
}
|
}
|
||||||
}, 3000);
|
}, 3000);
|
||||||
|
@ -711,8 +711,8 @@ export default {
|
||||||
this.timer2 = setInterval(() => {
|
this.timer2 = setInterval(() => {
|
||||||
this.popContentCurrent++;
|
this.popContentCurrent++;
|
||||||
console.log('this.popContentCurrent', this.popContentCurrent);
|
console.log('this.popContentCurrent', this.popContentCurrent);
|
||||||
if (this.popContentCurrent > 7) {
|
if (this.popContentCurrent > 6) {
|
||||||
this.popContentCurrent = 0;
|
this.popContentCurrent = 1;
|
||||||
// this.$router.push({ path: "/largeScreen" });
|
// this.$router.push({ path: "/largeScreen" });
|
||||||
}
|
}
|
||||||
}, 3000);
|
}, 3000);
|
||||||
|
|
Loading…
Reference in New Issue