Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9619d8f84d | ||
|
|
cfb5ff334d | ||
|
|
be73fea618 | ||
|
|
cf6df19182 | ||
| 84809068c9 | |||
|
|
67a2f91b36 | ||
|
|
ba89cc726f |
@@ -61,6 +61,7 @@
|
||||
this.$store.commit('setToken', res.token_type + ' ' + res.access_token);
|
||||
this.onBack()
|
||||
}).catch(err => {
|
||||
console.log(err)
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon : 'none'
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</view>
|
||||
|
||||
<block v-if="users.length > 0">
|
||||
<view class="team-item" v-for="(item, index) in users" :key="index" @click="onCallPhone(item.real_username)">
|
||||
<view class="team-item" v-for="(item, index) in users" :key="index">
|
||||
<u-avatar :src="item.avatar" size="48"></u-avatar>
|
||||
<view class="team-content">
|
||||
<view class="nowrap name">{{item.nickname}}</view>
|
||||
@@ -23,7 +23,7 @@
|
||||
<view class="nowrap submit">联系电话:{{item.username}}</view>
|
||||
<view class="nowrap submit">注册时间:{{item.created_at}}</view>
|
||||
</view>
|
||||
<view class="mobile">
|
||||
<view class="mobile" @click="onCallPhone(item.real_username)">
|
||||
<uni-icons class="mobile-icon" type="phone-filled" size="18" color="white"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user