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.
73 lines
1.5 KiB
73 lines
1.5 KiB
![]()
1 year ago
|
<template>
|
||
|
<view class="content">
|
||
|
<view
|
||
|
style="width: 122rpx; height: 122rpx; background-color: #09BB07; border-radius: 80rpx;overflow: hidden; margin-bottom: 25rpx;"
|
||
|
class="flex ac jc">
|
||
|
<uni-icons type="checkmarkempty" color="#ffffff" size="30"></uni-icons>
|
||
|
</view>
|
||
|
<text style=" font-weight: 700; font-size: 36rpx;" class="tit">支付成功</text>
|
||
|
<text style="margin-top: 50rpx; color: #666666; font-size: 26rpx;">自提订单请尽快到自提油站提货,感谢您的使用!</text>
|
||
|
<view class="btn-group">
|
||
|
<navigator url="/Order/pages/index/index" open-type="redirect" class="mix-btn">查看订单</navigator>
|
||
|
<navigator url="/pages/home/index" open-type="switchTab" class="mix-btn hollow">返回首页</navigator>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss'>
|
||
|
.content {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.success-icon {
|
||
|
font-size: 160upx;
|
||
|
color: #fa436a;
|
||
|
margin-top: 100upx;
|
||
|
}
|
||
|
|
||
|
.tit {
|
||
|
font-size: 38upx;
|
||
|
color: #303133;
|
||
|
}
|
||
|
|
||
|
.btn-group {
|
||
|
padding-top: 100upx;
|
||
|
}
|
||
|
|
||
|
.mix-btn {
|
||
|
margin-top: 30upx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
width: 600upx;
|
||
|
height: 80upx;
|
||
|
font-size: $font-lg;
|
||
|
color: #fff;
|
||
|
background-color: $base-color;
|
||
|
border-radius: 50rpx;
|
||
|
|
||
|
&.hollow {
|
||
|
background: #fff;
|
||
|
color: #303133;
|
||
|
border: 1px solid #ccc;
|
||
|
}
|
||
|
}
|
||
|
</style>
|