Files
tra-app/pages/study/index.vue
T
2025-06-13 18:00:28 +08:00

46 lines
872 B
Vue
Raw 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="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>
</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>