33 lines
488 B
Vue
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> |