Files
douhuo-h5/pages/index/sortPoint.vue
2023-06-09 17:59:05 +08:00

75 lines
1.5 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="content">
<view class="point">
<img class="point-img" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/4af6ad82d1e472ce1297feec0b7bebce.png">
<view class="point-text">
<view class="point-name">
支付成功
</view>
<view class="point-tips">
<text>尊敬的客户已经成功支付咨询费用请保持电话畅通相关负责人将会与您联系感谢您的支持</text>
</view>
<view class="point-btn">
<view class="btn" @click="$Router.push({name: 'User'})">
我知道了
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.point {
text-align: center;
padding: 40% 0;
.point-img {
width: 240rpx;
height: 240rpx;
margin: 0 auto 10rpx;
}
.point-text {
.point-name {
color: $mian-color;
font-size: $title-size + 14;
}
.point-tips{
margin: $margin + 20 0 $margin*3;
padding: 0 $padding * 4;
box-sizing: border-box;
line-height: 52rpx;
font-size: $title-size-m;
text {
display: block;
color: #999999;
}
}
}
.point-btn {
text-align: center;
.btn {
display: inline-block;
border: 2rpx solid $mian-color;
color: $mian-color;
border-radius: $radius * 4;
padding: 0 $padding * 2.5;
line-height: 90rpx;
}
}
}
</style>