1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| <!-- 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>
|
|