| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <view class="pay-success">
- <view class="success-icon">
- <image src="../static/pay-success.png" mode="aspectFit"></image>
- </view>
- <view class="success-title">支付成功</view>
- <view class="success-desc">您的书籍将邮寄,请耐心等待</view>
- <view class="action-buttons">
- <button class="btn-return" @click="handleReturn">返回首页</button>
- <button class="btn-view" @click="handleViewOrder">查看订单</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- orderId:''
- }
- },
- onLoad(options){
- this.orderId = options.orderId
- },
- methods: {
- handleReturn() {
- uni.switchTab({
- url: '/pages/home/index'
- })
- },
- handleViewOrder() {
- uni.navigateTo({
- url: '/pages-mine/pages/return-detail?orderId=' + this.orderId
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .pay-success {
- min-height: 100vh;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-top: 120rpx;
- .success-icon {
- width: 160rpx;
- height: 160rpx;
- margin-bottom: 40rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .success-title {
- font-size: 36rpx;
- font-weight: 500;
- color: #333;
- margin-bottom: 20rpx;
- }
- .success-desc {
- font-size: 28rpx;
- color: #999;
- margin-bottom: 80rpx;
- }
- .action-buttons {
- display: flex;
- gap: 30rpx;
- padding: 0 40rpx;
- width: 100%;
- box-sizing: border-box;
- button {
- flex: 1;
- height: 88rpx;
- border-radius: 10rpx;
- font-size: 32rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- &.btn-return {
- background: #f5f5f5;
- color: #666;
- }
- &.btn-view {
- background: #07c160;
- color: #fff;
- }
- }
- }
- }
- </style>
|