123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="changeSuccess">
- <view class="container">
- <image class="" src="@/static/image/code/success.png" />
- <view class="text">已成功申请提现!!!</view>
- <view class="back" @click="goLogin">返回</view>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- methods: {
- goLogin() {
- uni.redirectTo({
- url: "/pages_module/financial/index",
- });
- },
- },
- };
- </script>
-
- <style lang="scss" scoped>
- .changeSuccess {
- width: 100vw;
- min-height: 100vh;
- background-color: #ffffff;
- position: relative;
- .container {
- position: absolute;
- top: 200rpx;
- left: 50%;
- transform: translateX(-50%);
- @include flex(center, column, 52rpx);
- image {
- width: 280rpx;
- height: 280rpx;
- display: block;
- }
- .text {
- font-size: 28rpx;
- color: #666666;
- }
- .back {
- width: 226rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.9);
- border: 2rpx solid #e7e7e7;
- border-radius: 200rpx;
- }
- }
- }
- </style>
-
|