1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="wrapper">
- <image :src="`${$imgUrl}common/reharge-success.png`" class="pic-status" mode="widthFix"></image>
- <view class="text-result">修复成功</view>
- <view class="sub-text">您办理的账户充值业务已生成订单</view>
- <view class="btn btn-primary" @click="view">返回查看</view>
- </view>
- </template>
-
- <script lang="ts" setup>
- const view = () => {
- uni.navigateBack({
- delta: 3
- })
- }
- </script>
-
- <style>
- .wrapper {
- display: flex;
- flex-direction: column;
- justify-content: center;
- text-align: center;
- }
-
- .text-result {
- font-size: 36rpx;
- color: #333;
- font-weight: 400;
- }
-
- .sub-text {
- font-size: 26rpx;
- font-weight: 400;
- color: #999999;
- padding-top: 40rpx;
- }
-
- .pic-status {
- width: 690rpx;
- height: 300rpx;
- margin: 98rpx 30rpx 25rpx;
- }
-
- .btn-primary {
- width: 670rpx;
- height: 80rpx;
- line-height: 80rpx;
- background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
- border-radius: 40rpx;
- font-size: 32rpx;
- color: #ffffff;
- margin: 300rpx 40rpx 0;
- text-align: center;
- }
- </style>
|