2025-03-19 19:25:16 +08:00

42 lines
858 B
Vue

<template>
<view class="main">
<view class="noDataBox">
<image class="waitIcon" src="https://eshangtech.com/wanmeiyizhanImg/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>