index.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. uni.redirectTo({
  15. url: "/pages_module/financial/index",
  16. });
  17. },
  18. },
  19. };
  20. </script>
  21. <style lang="scss" scoped>
  22. .changeSuccess {
  23. width: 100vw;
  24. min-height: 100vh;
  25. background-color: #ffffff;
  26. position: relative;
  27. .container {
  28. position: absolute;
  29. top: 200rpx;
  30. left: 50%;
  31. transform: translateX(-50%);
  32. @include flex(center, column, 52rpx);
  33. image {
  34. width: 280rpx;
  35. height: 280rpx;
  36. display: block;
  37. }
  38. .text {
  39. font-size: 28rpx;
  40. color: #666666;
  41. }
  42. .back {
  43. width: 226rpx;
  44. height: 88rpx;
  45. text-align: center;
  46. line-height: 88rpx;
  47. font-size: 28rpx;
  48. color: rgba(0, 0, 0, 0.9);
  49. border: 2rpx solid #e7e7e7;
  50. border-radius: 200rpx;
  51. }
  52. }
  53. }
  54. </style>