CountDown 倒计时

    1. Page({
    2. data: {},
    3. onLoad() {
    4. this.c1 = new $wuxCountDown({
    5. date: 'June 7, 2087 15:03:25',
    6. render(date) {
    7. const years = this.leadingZeros(date.years, 4) + ' 年 '
    8. const days = this.leadingZeros(date.days, 3) + ' 天 '
    9. const hours = this.leadingZeros(date.hours, 2) + ' 时 '
    10. const min = this.leadingZeros(date.min, 2) + ' 分 '
    11. const sec = this.leadingZeros(date.sec, 2) + ' 秒 '
    12. this.setData({
    13. c1: years + days + hours + min + sec,
    14. },
    15. })
    16. this.c3 = new $wuxCountDown({
    17. render(date) {
    18. const min = this.leadingZeros(date.min, 2) + ' 分 '
    19. const sec = this.leadingZeros(date.sec, 2) + ' 秒 '
    20. this.setData({
    21. c3: min + sec,
    22. })
    23. },
    24. })
    25. },
    26. vcode() {
    27. if (this.c2 && this.c2.interval) return !1
    28. this.c2 = new $wuxCountDown({
    29. date: +(new Date) + 60000,
    30. onEnd() {
    31. c2: '重新获取验证码',
    32. })
    33. },
    34. render(date) {
    35. date.sec !== 0 && this.setData({
    36. c2: sec,
    37. })
    38. },
    39. })
    40. },
    41. stop() {
    42. this.c3.stop()
    43. },
    44. start() {
    45. this.c3.start()
    46. },
    47. update() {
    48. this.c3.update(+(new Date) + 60000 * 30)
    49. },

    CountDown