注意:
- 设置一个时间段,几点到几点倒计时
- 比如第一次进入页面是10秒,你出页面后3秒,第二次进入页面也在继续倒计时,这时候的时间是7秒,继续倒计时
<view class='tui-countdown-content' wx:for="{{countDownList}}" wx:key="countDownList"> <!-- <text class='tui-conutdown-box'>{{item.day}}</text>天 --> <text class='tui-conutdown-box'>{{item.hou}}</text>: <text class='tui-conutdown-box'>{{item.min}}</text>: <text class='tui-conutdown-box tui-countdown-bg'>{{item.sec}}</text> </view>
let goodsList = [ { actEndTime: '2019/03/26 20:00:00' } ] Page({ /** * 页面的初始数据 */ data: { countDownList: [], actEndTimeList: [] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { let endTimeList = []; // 将活动的结束时间参数提成一个单独的数组,方便操作 goodsList.forEach(o => { endTimeList.push(o.actEndTime) }) this.setData({ actEndTimeList: endTimeList }); // 执行倒计时函数 this.countDown(); }, timeFormat(param) {//小于10的格式化函数 return param < 10 ? '0' + param : param; }, countDown() {//倒计时函数 // 获取当前时间,同时得到活动结束时间数组 let newTime = new Date().getTime(); let endTimeList = this.data.actEndTimeList; let countDownArr = []; // 对结束时间进行处理渲染到页面 endTimeList.forEach(o => { let endTime = new Date(o).getTime(); let obj = null; // 如果活动未结束,对时间进行处理 if (endTime - newTime > 0) { let time = (endTime - newTime) / 1000; // 获取天、时、分、秒 let day = parseInt(time / (60 * 60 * 24)); let hou = parseInt(time % (60 * 60 * 24) / 3600); let min = parseInt(time % (60 * 60 * 24) % 3600 / 60); let sec = parseInt(time % (60 * 60 * 24) % 3600 % 60); obj = { day: this.timeFormat(day), hou: this.timeFormat(hou), min: this.timeFormat(min), sec: this.timeFormat(sec) } } else {//活动已结束,全部设置为'00' obj = { day: '00', hou: '00', min: '00', sec: '00' } } countDownArr.push(obj); }) // 渲染,然后每隔一秒执行一次倒计时函数 this.setData({ countDownList: countDownArr }) setTimeout(this.countDown, 1000); },