41 lines
827 B
Vue
41 lines
827 B
Vue
<template>
|
|
<view class="main">
|
|
<view class="noDataBox">
|
|
<image class="waitIcon" src="/static/images/home/funWaitIcon.svg" />
|
|
<text class="waitText">模块开发中...</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.main {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: #f8f8f8;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.noDataBox {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
.waitIcon {
|
|
width: 176rpx;
|
|
height: 176rpx;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
.waitText {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: #6c737a;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
}
|
|
</style>
|