This commit is contained in:
唐明明
2023-02-23 09:53:12 +08:00
parent 53b9929480
commit df747b9f0a
4 changed files with 6 additions and 7 deletions

View File

@@ -15,11 +15,11 @@
<view class="nowrap name">{{item.nickname}}</view>
<view class="nowrap identitys">
<text class="identity certification-y" v-if="item.certification"><image src="@/static/icons/user_nav_03.png"></image>已实名</text>
<text class="identity identity-2" v-if="item.identity.order == 2">业务员</text>
<text class="identity identity-2" v-if="item.identity.order == 2">实习顾问</text>
<text class="identity identity-1" v-if="item.identity.order == 1">普通用户</text>
<text class="identity identity-3" v-if="item.identity.order == 3">顾问</text>
</view>
<view class="nowrap submit">联系电话{{item.real_username}}</view>
<view class="nowrap submit">联系电话{{item.username}}</view>
<view class="nowrap submit">注册时间{{item.created_at}}</view>
</view>
<view class="mobile">
@@ -74,8 +74,8 @@
page : this.page.current
}).then(res => {
let { users, count } = res;
this.count = count
let atList = users.page.current == 1 ? [] : this.users
this.count = count
this.users = atList.concat(users.data)
this.page = users.page
this.pagesShow = false