You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.0 KiB
101 lines
2.0 KiB
<template>
|
|
<view>
|
|
<view class="success">
|
|
<image src="../../static/img/success.png" mode=""></image>
|
|
<text class="success_title">Payment is successful</text>
|
|
<view>
|
|
This order will be rewarded with
|
|
<text class="success_span">10 points</text>
|
|
after receipt.
|
|
</view>
|
|
<view class="success_button">
|
|
<button class="details">Order details</button>
|
|
<button class="shop">Continue shopping</button>
|
|
</view>
|
|
</view>
|
|
<view class="recommend">
|
|
<view class="recommend_title">RECOMMEND</view>
|
|
<view class="recommend_content">
|
|
<view class="recommend_content_item" v-for="(item,index) in 2 " :key="index">
|
|
<view class="recommend_content_item_image"></view>
|
|
<text>Adidas Yeezy Boost 350 DazzlingBlue Black</text>
|
|
<view class="recommend_content_item_pric">US$314.00</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page{
|
|
border-top: 14.67rpx #F7F7F7 solid;
|
|
}
|
|
</style>
|
|
<style lang="scss" scoped>
|
|
|
|
.success{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 72rpx;
|
|
font-size: 24rpx;
|
|
color: #555555;
|
|
font-weight: 400;
|
|
flex-direction: column;
|
|
border-bottom: 14.67rpx #F7F7F7 solid;
|
|
padding-bottom: 81.33rpx;
|
|
image{
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
margin-bottom: 46.67rpx;
|
|
}
|
|
.success_title{
|
|
font-size: 32rpx;
|
|
color: black;
|
|
font-weight: 500;
|
|
margin-bottom: 13.33rpx;
|
|
}
|
|
.success_span{
|
|
color: #B22234;
|
|
display: inline-block;
|
|
margin: 0 5rpx;
|
|
}
|
|
.success_button{
|
|
display: flex;
|
|
margin-top: 70.67rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
button{
|
|
height: 63.33rpx;
|
|
font-size: 24rpx;
|
|
margin: 0;
|
|
font-weight: 500;
|
|
}
|
|
.details{
|
|
background-color: white;
|
|
border: 1px solid #CBCBCB;
|
|
color: black;
|
|
}
|
|
.shop{
|
|
color: white;
|
|
background-color: black;
|
|
margin-left: 48rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|