奇点
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.
 
 
 
 

80 lines
1.5 KiB

<template>
<view>
<view class="zhanwei"></view>
<view class="content">
<image src="../../static/jycg.png"></image>
<text style="line-height: 90upx;font-size: 36upx;">订单支付中...</text>
<text style="color: #bbbbbb;font-size: 28upx;line-height: 40rpx;">
如果您已完成支付您可在我的订单中查看详情\n
如果您支付失败请在我的订单中重新发起支付</text>
</view>
<view class="button" @click="wancheng">
确认
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad: function() {
},
methods: {
wancheng(){
uni.reLaunch({
url:'../index/index'
})
// window.location.href='http://' + document.domain
}
}
}
</script>
<style lang="scss">
.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;
color: #fff !important;
/* fallback for old browsers */
background: linear-gradient(351deg, #9735DC 0%, #570CDC 100%);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
font-size: 30upx;
}
.zhanwei {
margin-top: 150upx;
}
page {
background-color: #141417;
}
</style>