You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
589 B
38 lines
589 B
<template>
|
|
<view class="noDate">
|
|
<view class="img">
|
|
<image src="@/static/images/nodata.png" mode=""></image>
|
|
</view>
|
|
<view class="text">
|
|
<slot>
|
|
<text>暂无数据</text>
|
|
</slot>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.noDate {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
padding: 40rpx 0;
|
|
}
|
|
.img {
|
|
width: 396rpx;height: 227rpx;
|
|
image {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.text {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
margin-top: 60rpx;
|
|
}
|
|
</style>
|