easypay-app/pages/users/faceBack/index.vue
2024-03-13 14:47:41 +08:00

49 lines
919 B
Vue

<template>
<view class="cont">
<image src="https://api.yruibao.com/crmebimage/public/store/2024/03/13/890e232fe2134c59af708047981d905f3rcqj6uvey.png" mode=""></image>
<div class="text">验证成功</div>
<view class="button">
完成
</view>
</view>
</template>
<script>
</script>
<style lang="scss">
.cont{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
image{
margin-top: 190rpx;
width: 302rpx;
height: 302rpx;
}
.text{
margin-top: 58rpx;
width: 100%;
text-align: center;
font-weight: 500;
font-size: 48rpx;
color: #279EFB;
}
.button{
margin-top: 160rpx;
display: flex;
justify-content: center;
align-items: center;
width: 500rpx;
height: 82rpx;
background: #409EFF;
border-radius: 10rpx 10rpx 10rpx 10rpx;
font-weight: 500;
font-size: 32rpx;
color: #FFFFFF;
line-height: 44rpx;
}
}
</style>