微信小程序 30分钟倒计时功能

ps:凑个数
getTimeDiff(date) {
   
    let _this = this;
    let curTime = new Date(date)
    _this.countDown(_this.timeFormatConvert(new Date(curTime.setMinutes(curTime.getMinutes() + 30))))
  },
  timeFormatConvert(e) {
   
    const Y = e.getFullYear(); // 年
    const M = this.prefixZero(e.getMonth() + 1); // 月
    const D 

你可能感兴趣的:(小程序,微信小程序,小程序)