本文实例为大家分享了uniapp实现一个页面多个倒计时的具体代码,供大家参考,具体内容如下
设计图(需求)
结构
<view class="group-list" v-for="item in message" :key="item.productId"> <view class="group-img" @click="navTo"> <image :src="/UploadFiles/2021-04-02/item.productPicture">js
export default { data() { return { timeData: '', //存放每条数据的处理好的倒计时 timer: '', //用来清除定时器 message: [] //接口请求返回的数据 } }, onUnload(){ //卸载页面清除定时器 clearInterval(this.timer) }, methods: { getTimeList(){ let that = this that.message.forEach((item) =>{ var nowdate = new Date().getTime() //获取当前时间毫秒数 var time = item.productExpiredTime.replace(new RegExp("-", "gm"), "/") //ios不能识别日期格式中的 "-" ; .productExpiredTime是接口返回的名称 var timesp = time.split('.')[0] //此处是因为我们接口返回的时间格式是这样:"2019-12-31 11:00:00.0" var enddate = new Date(timesp).getTime() //处理好格式之后获取结束时间的毫秒数 var totaltime = enddate - nowdate //获取时间差 that.totaltime(totaltime) //这是下面封装的方法,将毫秒数处理成"xx时xx分xx秒" item.end_time1 = that.timeData //处理好的单个时间安排到item上(重要) }) this.message = that.message //全部处理好的数据重新赋值 }, totaltime(a){ //计算单个剩余时间 let totaltime = a let that = this var h, m, s, d function test(num) { if (num < 10) { num = "0" + num } return num } if (totaltime > 0) { d = Math.floor(totaltime / 1000 / 60 / 60 / 24) * 24 h = Math.floor(totaltime / 1000 / 60 / 60 % 24) m = Math.floor(totaltime / 1000 / 60 % 60) s = Math.floor(totaltime / 1000 % 60) //获取时分秒 h = d + h h = test(h) m = test(m) s = test(s) this.timeData =`${h}时 : ${m}分 : ${s}秒` // 每个时间的显示格式 } else { this.timeData = `00 : 00 : 00` } }, //以下请求此页面需要的数据 getUserGroupList(接口参数) { this.$ajax({ url: 'xxx/xxx/xxxxxx', data: {接口参数}, success: res => { var that = this let data = res.data.groups if (data.length === 0) { this.$api.msg('暂时您还没有参团信息!') setTimeout (function() { uni.navigateBack({ //返回上一页 delta: 1 }) },1500) } else { this.message = [...that.message, ...res.data.groups] //合并 //数据返回成功之后再调计时器,防止异步 //that.getTimeList() var timer = setInterval(function () { that.getTimeList() }, 1000) this.timer = timer } } } }至此,一个页面多个倒计时就完成了, 记录学习。
为大家推荐现在关注度比较高的微信小程序教程一篇:《微信小程序开发教程》小编为大家精心整理的,希望喜欢。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月18日
2024年11月18日
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】