1.text.vue 页面代码

<view class="will-back-after">Will back after<text>{{countdownTime}}s</text></view>

2.data()里面声明countdownTime:

data() {
		return {
			countdownTime: 5
		}
	}

3.methods里面写方法:
我这里是倒计时5秒后返回首页。

getCountdownTime() {
				this.countdownTime = 5
				let timer = setInterval(() => {
					this.countdownTime--;
					if (this.countdownTime < 1) {
						clearInterval(timer)
						this.countdownTime = 0
						uni.redirectTo({
							url: '../../home/home'
						})
					}
				}, 1000)
			}

4.进入界面就开始倒计时:

created() {
			this.getCountdownTime()
		},
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐