2025-07-29 10:56:26 +08:00

33 lines
488 B
Vue

<template>
<view class="container">
<view class="no-data">
<image src="/static/imgs/noData.png"></image>
<view class="">
暂无数据...
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
.no-data{
width: 300rpx;
height: 330rpx;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
image{
width:100%;
// margin-bottom: 20px;
}
view{
color: #666;
font-size: 20rpx;
}
}
</style>