当前位置:   article > 正文

uni-app——uniapp 实现倒计时功能_uniapp 倒计时

uniapp 倒计时

<view>{{ count }}s后自动返回</view>
  • 1
export default {
  data() {
    return {
      // 秒数
      count: 3,
      // 计时器
      timer: null,
    };
  },
  onShow() {
    this.countDown();
  },
  methods: {
    // 计时
    countDown() {
      let time_count = 3;
      if (!this.timer) {
        this.count = time_count;
        this.timer = setInterval(() => {
          if (this.count > 0 && this.count <= time_count) {
            this.count--;
          } else {
            clearInterval(this.timer);
            this.timer = null;
            // 倒计时完成后do something ...
          }
        }, 1000);
      }
    },
  },
};
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/671910
推荐阅读