32 lines
603 B
Vue
32 lines
603 B
Vue
<template>
|
||
<view class="noData">
|
||
<image src="/static/images/shop/noData.png" class="noData-img" mode="widthFix"></image>
|
||
<text class="noData-text">暂无数据哦~</text>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.noData{
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
flex-wrap: wrap;
|
||
.noData-img{
|
||
margin-top: 100rpx;
|
||
width: 348rpx;
|
||
height: 348rpx;
|
||
}
|
||
.noData-text{
|
||
width: 100%;
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #666666;
|
||
line-height: 40rpx;
|
||
text-align: center;
|
||
font-style: normal;
|
||
}
|
||
}
|
||
</style> |