[锶源昆仑-寺庙捐赠活动]

This commit is contained in:
2023-05-15 13:53:32 +08:00
parent 1b6eb2668c
commit c9b18c9074
284 changed files with 9505 additions and 3822 deletions

62
pages/bond/tips.vue Normal file
View File

@@ -0,0 +1,62 @@
<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>