123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <view class="content">
- <image class="success-icon" src="../../static/img/paySuccess.png" mode=""></image>
- <text class="tit" v-if="type == 1">订单支付成功</text>
- <text class="tit" v-else>订单预约成功</text>
- <view class="btn-group">
- <navigator url="/pages/user/fulilist" open-type="redirect" class="mix-btn" v-if="type == 1">继续兑换</navigator>
- <navigator url="/pages/assets/myPing" open-type="redirect" class="mix-btn" v-else>我的拼购</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: #59BAB0;
- 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: #59BAB0;
- border: 1px solid #59BAB0;
- }
- }
- </style>
|