63 lines
1.5 KiB
Vue
63 lines
1.5 KiB
Vue
<template>
|
|
<view class="content">
|
|
<view class="examine">
|
|
<image src="@/static/imgs/payImg.jpg" mode="widthFix"></image>
|
|
<view class="text">
|
|
<view class="title">支付成功</view>
|
|
</view>
|
|
<view class="return" @click="$router.back()">知道了</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { } from '@/apis/interfaces/gout'
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onShow() {
|
|
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.examine {
|
|
padding: $padding * 8 0 $padding;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
image {
|
|
width: 45%;
|
|
margin: 0 auto $margin;
|
|
}
|
|
.text {
|
|
.title {
|
|
font-weight: 600;
|
|
font-size: $title-size + 10;
|
|
margin-bottom: $margin;
|
|
}
|
|
.time {
|
|
color: #999999;
|
|
line-height: 50rpx;
|
|
}
|
|
}
|
|
.return {
|
|
display: inline-block;
|
|
margin-top: 80rpx;
|
|
background-color: #1d37e2;
|
|
padding: 0 $padding * 6;
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
border-radius: $radius-m;
|
|
box-shadow: 0 3rpx 6rpx 4rpx rgba(6,34,214,.6);
|
|
color: #FFFFFF;
|
|
font-size: $title-size + 2;
|
|
}
|
|
}
|
|
</style>
|