hls_crm/pages/index/examineing.vue

42 lines
741 B
Vue

<template>
<view class="examine-warp">
<view class="exam-box">
<image :src="BASE_IMG_URL+'2.png'"class="examimg" mode="scaleToFill"></image>
<view class="exam-text">请耐心等待管理员通过审核</view>
</view>
</view>
</template>
<script>
import { BASE_IMG_URL } from '@/util/api.js'
export default{
data() {
return {
BASE_IMG_URL:BASE_IMG_URL,
}
},
}
</script>
<style lang="scss" scoped>
.examine-warp{
width:100%;
height:100vh;
display: flex;
justify-content: center;
align-items: center;
.exam-box{
text-align: center;
.examimg{
width:245rpx;
height:200rpx;
margin-bottom:20rpx;
}
.exam-text{
font-size:26rpx;
color:$uni-text-color;
}
}
}
</style>