Compare commits

...

3 Commits

Author SHA1 Message Date
2a60563eaf Merge pull request 'pc-master' (#49) from pc-master into portal
Reviewed-on: #49
2023-11-21 08:34:50 +00:00
pangdundun
2ab755ab83 Merge branch 'pc-master' of https://git.lihe-control.com/xiaomeng/wszhyWx into pc-master 2023-11-21 16:31:37 +08:00
pangdundun
7578cf5629 ~ 2023-11-21 16:31:31 +08:00

View File

@ -220,7 +220,7 @@ export default {
left_: 2,
popContentList: [],
popContentCurrent: 0,
popContentCurrent: 1,
//
autoPlay: false, //false true
@ -666,8 +666,8 @@ export default {
localStorage.setItem("autoPlay", JSON.stringify(this.autoPlay));
this.timer2 = setInterval(() => {
this.popContentCurrent++;
if (this.popContentCurrent > 7) {
this.popContentCurrent = 0;
if (this.popContentCurrent > 6) {
this.popContentCurrent = 1;
// this.$router.push({ path: "/largeScreen" });
}
}, 3000);
@ -711,8 +711,8 @@ export default {
this.timer2 = setInterval(() => {
this.popContentCurrent++;
console.log('this.popContentCurrent', this.popContentCurrent);
if (this.popContentCurrent > 7) {
this.popContentCurrent = 0;
if (this.popContentCurrent > 6) {
this.popContentCurrent = 1;
// this.$router.push({ path: "/largeScreen" });
}
}, 3000);