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.
39 lines
689 B
39 lines
689 B
<!-- z-paging自定义的没有更多数据view -->
|
|
<template>
|
|
<view class="nomore">
|
|
<!-- 这里的图片请换成自己项目的图片 -->
|
|
<image class="nomore-image" mode="aspectFit" src="@/static/no_more.png"></image>
|
|
<text class="nomore-text">已经到达宇宙尽头啦~</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.nomore{
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20rpx 0px;
|
|
}
|
|
.nomore-image{
|
|
width: 200rpx;
|
|
height: 130rpx;
|
|
}
|
|
.nomore-text{
|
|
margin-top: 10rpx;
|
|
font-size: 24rpx;
|
|
color: #222963;
|
|
}
|
|
</style>
|
|
|