Parcourir la source

展示邀请人数

lifanagju_citu il y a 6 mois
Parent
commit
19c89b7730
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      pagesB/inviteRecord/index.vue

+ 5 - 1
pagesB/inviteRecord/index.vue

@@ -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>