|
@@ -1,6 +1,7 @@
|
|
|
<template>
|
|
|
<layout-page>
|
|
|
- <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore" style="height: calc(100vh - 72rpx);">
|
|
|
+ <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore" style="height: calc(100vh - 102rpx);">
|
|
|
+ <view v-if="total" class="totalShow">恭喜你,已经邀请了{{ total }}个新用户啦!</view>
|
|
|
<view v-if="items.length" class="listBox">
|
|
|
<!-- <m-list :items="items"></m-list> -->
|
|
|
<uni-table ref="table" :loading="loading" border stripe emptyText="暂无更多数据" style="width: 100%;">
|
|
@@ -107,4 +108,7 @@ function loadingMore () {
|
|
|
.listBox {
|
|
|
padding: 30rpx;
|
|
|
}
|
|
|
+.totalShow {
|
|
|
+ margin: 30rpx 0 0 30rpx;
|
|
|
+}
|
|
|
</style>
|