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.
83 lines
1.5 KiB
83 lines
1.5 KiB
<template> |
|
<view class="container"> |
|
<!-- <view class="zhanwei"></view> --> |
|
<view class="content"> |
|
<image src="../../static/cg.png"></image> |
|
<text style="line-height: 90upx;font-size: 36upx;">订单支付成功!</text> |
|
<text style="color: #bbbbbb;font-size: 28upx;">您可在"我-我的订单"中查看详情</text> |
|
</view> |
|
<view class="button" @click="wancheng"> |
|
完成 |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
} |
|
}, |
|
onLoad: function() { |
|
|
|
}, |
|
methods: { |
|
wancheng(){ |
|
|
|
uni.reLaunch({ |
|
url:"../index/index" |
|
}) |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.container{ |
|
box-sizing: border-box; |
|
padding-top: 300rpx; |
|
} |
|
.content{ |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
color: #ffffff; |
|
// margin-top: 330upx; |
|
>image{ |
|
width: 150upx; |
|
height: 150upx; |
|
margin-bottom: 25upx; |
|
} |
|
} |
|
.button { |
|
position: fixed; |
|
bottom: 20upx; |
|
left: 50%; |
|
transform: translateX(-50%); |
|
width: 290upx; |
|
height: 80upx; |
|
margin: auto; |
|
margin-top: 40upx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-weight: 500; |
|
border-radius: 40upx; |
|
background: #77A1D3; |
|
/* fallback for old browsers */ |
|
background: -webkit-linear-gradient(to right, #e4b3e8, #5dfef4); |
|
/* Chrome 10-25, Safari 5.1-6 */ |
|
background: linear-gradient(to right, #e4b3e8, #5dfef4); |
|
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ |
|
font-size: 30upx; |
|
} |
|
|
|
|
|
.zhanwei { |
|
margin-top: 150upx; |
|
} |
|
|
|
page { |
|
background-color: #1a1a1a; |
|
} |
|
</style>
|
|
|