Compare commits

..

No commits in common. "76d13c5a71828b3c1e30ed24d5dac3b3b6a06bdb" and "0d96af99e15d065e93f0b9c36c55fd8eda6ab941" have entirely different histories.

2 changed files with 12 additions and 13 deletions

View File

@ -50,8 +50,8 @@
data() {
return {
remaining: 7,
type: false,
banner: true,
type: true,
banner: false,
protocol: false,
heightOut: '',
imgurl: [],
@ -116,18 +116,18 @@
},
// 3
remaining_time() {
// this.timer = setInterval(() => {
// this.remaining--;
// if (this.remaining <= 0) {
// clearInterval(this.timer);
// console.log("")
// // this.type = !this.type;
// // this.banner = !this.banner;
// }
// }, 1000);
this.timer = setInterval(() => {
this.remaining--;
if (this.remaining <= 0) {
clearInterval(this.timer);
console.log("完了")
this.type = !this.type;
this.banner = !this.banner;
}
}, 1000);
},
leap_over() {
// this.type = !this.type
this.type = !this.type
this.banner = !this.banner;
clearInterval(this.timer)
//

View File

@ -56,7 +56,6 @@
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"backgroundColorBottom":"#000000",
"app-plus": {
"titleNView": false
}