75 lines
1.4 KiB
Vue
75 lines
1.4 KiB
Vue
<template>
|
||
<view class="content">
|
||
<view class="point">
|
||
<img class="point-img" src="@/static/imgs/payImg.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> |