123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <view class="content">
- <image class="success-icon" src="../../static/img/paySuccess.png" mode=""></image>
- <text class="tit">订单支付成功</text>
- <view class="btn-group">
- <navigator url="/pages/order/order?state=1" open-type="redirect" class="mix-btn">查看订单</navigator>
- <navigator url="/pages/index/index" open-type="switchTab" class="mix-btn hollow">返回首页</navigator>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- type: 2 //1为兑换支付成功2为预购成功
- };
- },
- onLoad(opt) {
- // 保存订单号
- // if ('type' in opt) {
- // this.type = opt.type;
- // }
- // if (this.type == 1) {
- // uni.setNavigationBarTitle({
- // title: '兑换成功'
- // });
- // }
- // if (this.type == 2) {
- // uni.setNavigationBarTitle({
- // title: '预约成功'
- // });
- // }
- },
- methods: {}
- };
- </script>
- <style lang="scss">
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .success-icon {
- margin-top: 100rpx;
- width: 302rpx;
- height: 320rpx;
- }
- .tit {
- margin-top: 40rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .btn-group {
- padding-top: 130rpx;
- display: flex;
- justify-content: flex-start;
- }
- .mix-btn {
- margin-top: 30upx;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 301rpx;
- height: 78rpx;
- background: #EF0E74;
- border-radius: 10rpx;
- font-size: $font-lg;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- &.hollow {
- margin-left: 36rpx;
- background: #fff;
- color: #EF0E74;
- border: 1px solid #EF0E74;
- }
- }
- </style>
|