index.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="changeSuccess">
  3. <view class="container">
  4. <image class="" src="@/static/image/code/success.png" />
  5. <view class="text">密码修改成功!!!</view>
  6. <view class="back" @click="goLogin">返回登陆</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. methods: {
  13. goLogin() {
  14. // 清除本地缓存所有的数据
  15. uni.clearStorageSync();
  16. // 跳转回登陆页面
  17. uni.redirectTo({
  18. url: "/pages/login/index",
  19. });
  20. },
  21. },
  22. };
  23. </script>
  24. <style lang="scss" scoped>
  25. .changeSuccess {
  26. width: 100vw;
  27. min-height: 100vh;
  28. background-color: #ffffff;
  29. position: relative;
  30. .container {
  31. position: absolute;
  32. top: 200rpx;
  33. left: 50%;
  34. transform: translateX(-50%);
  35. @include flex(center, column, 52rpx);
  36. image {
  37. width: 280rpx;
  38. height: 280rpx;
  39. display: block;
  40. }
  41. .text {
  42. font-size: 28rpx;
  43. color: #666666;
  44. }
  45. .back {
  46. width: 226rpx;
  47. height: 88rpx;
  48. text-align: center;
  49. line-height: 88rpx;
  50. font-size: 28rpx;
  51. color: rgba(0, 0, 0, 0.9);
  52. border: 2rpx solid #e7e7e7;
  53. border-radius: 200rpx;
  54. }
  55. }
  56. }
  57. </style>