succ.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <view>
  3. <view class="u-flex-col" style="justify-content: flex-end;align-items: center;margin-top: 100rpx;">
  4. <image src="/static/images/success.png" style="width: 86rpx;height: 86rpx;" mode=""></image>
  5. <view class="success">恭喜!密码重置成功</view>
  6. <view class="fonta" style="margin-top: 26rpx;">
  7. <text>请牢记新密码,</text>
  8. <text style="color:rgba(6, 169, 113, 1) ;">{{num}}s</text>
  9. <text>后自动跳转至首页</text>
  10. </view>
  11. <view class="button" @click="accomplish">
  12. 返回首页
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. id: '',
  22. bookid: '',
  23. order_on: '',
  24. total_price: '',
  25. num: 3,
  26. timer: null,
  27. };
  28. },
  29. onLoad(options) {
  30. this.setTime()
  31. },
  32. beforeDestroy() {
  33. clearInterval(this.timer);  // 清除定时器
  34. this.timer = null;
  35. },
  36. methods: {
  37. accomplish() {
  38. uni.switchTab({
  39. url: '/pages/index/index'
  40. })
  41. },
  42. setTime() {
  43. this.timer = setInterval(() => {
  44. this.num--
  45. if (this.num == 0) {
  46. this.accomplish()
  47. }
  48. }, 1000)
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. .fonta {
  55. font-size: 24rpx;
  56. font-family: PingFangSC, PingFang SC;
  57. font-weight: 400;
  58. color: #929292;
  59. margin-top: 36px;
  60. }
  61. .one {
  62. font-size: 26rpx;
  63. font-family: SFPro, SFPro;
  64. font-weight: 400;
  65. color: #222222;
  66. }
  67. .button {
  68. width: 286rpx;
  69. height: 88rpx;
  70. background: #F5F5F5;
  71. border-radius: 8rpx;
  72. border: 2rpx solid rgba(151, 151, 151, 0.3);
  73. font-size: 32rpx;
  74. font-family: PingFangSC, PingFang SC;
  75. font-weight: 500;
  76. color: #333333;
  77. margin-top: 168rpx;
  78. line-height: 88rpx;
  79. text-align: center;
  80. }
  81. .order {
  82. margin-top: 62rpx;
  83. }
  84. .success {
  85. font-size: 36rpx;
  86. font-family: PingFangSC, PingFang SC;
  87. font-weight: 500;
  88. color: #222222;
  89. margin-top: 60rpx;
  90. }
  91. .money {
  92. font-size: 26rpx;
  93. font-family: JDZhengHT, JDZhengHT;
  94. font-weight: 400;
  95. color: #222222;
  96. }
  97. </style>