50 lines
881 B
Vue
50 lines
881 B
Vue
<template>
|
||
<view class="main_div max_page">
|
||
<view class="empty_div">
|
||
<image class="img" src="/static/images/common/default_img.png"></image>
|
||
<view class="text">
|
||
学习功能建设中,敬请期待…
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<script setup>
|
||
|
||
</script>
|
||
<style scoped lang="scss">
|
||
.main_div {
|
||
background-color: #f9faff;
|
||
// background-color: red;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: space-around;
|
||
}
|
||
|
||
.empty_div {
|
||
// margin-top: 40%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
|
||
//
|
||
.img {
|
||
width: 388rpx;
|
||
height: 335rpx;
|
||
}
|
||
|
||
.text {
|
||
|
||
margin-top: 20rpx;
|
||
height: 40rpx;
|
||
|
||
font-family: PingFangSC, PingFang SC;
|
||
font-weight: 400;
|
||
font-size: 29rpx;
|
||
color: #4375C9;
|
||
line-height: 40rpx;
|
||
text-align: center;
|
||
font-style: normal;
|
||
}
|
||
}
|
||
</style> |