125 lines
4.2 KiB
Vue
125 lines
4.2 KiB
Vue
<template>
|
|
<view>
|
|
<u-index-list :index-list="indexs" inactiveColor="#666" activeColor="#34CE98">
|
|
<view>
|
|
<view class="friend-flex u-border-bottom" @click="toPending">
|
|
<u-avatar class="cover" size="40" shape="square" :src="require('@/static/im/im_01.png')"></u-avatar>
|
|
<view class="name">
|
|
新的朋友 ({{ pendingCount }})
|
|
</view>
|
|
</view>
|
|
<view class="friend-flex" @click="showToast">
|
|
<u-avatar class="cover" size="40" shape="square" :src="require('@/static/im/im_00.png')"></u-avatar>
|
|
<view class="name">我的群聊</view>
|
|
</view>
|
|
</view>
|
|
<block v-if="friends.length > 0">
|
|
<template v-for="(item, fkey) in friends">
|
|
<!-- #ifdef APP-NVUE -->
|
|
<u-index-anchor :text="indexs[fkey]" bgColor="#F3F6FB" height="20" size="12" color="#666">
|
|
</u-index-anchor>
|
|
<!-- #endif -->
|
|
<u-index-item>
|
|
<!-- #ifndef APP-NVUE -->
|
|
<u-index-anchor :text="indexs[fkey]" bgColor="#F3F6FB" height="20" size="12" color="#666">
|
|
</u-index-anchor>
|
|
<!-- #endif -->
|
|
<view v-for="(friendItem, index) in item" :key="friendItem.userId"
|
|
class="friend-flex u-border-bottom" @click="toFriend(friendItem.userId)">
|
|
<u-avatar size="40" shape="square" :src="friend(friendItem.userId).portraitUrl" />
|
|
<view class="name">{{ friend(friendItem.userId).name }}</view>
|
|
</view>
|
|
</u-index-item>
|
|
</template>
|
|
</block>
|
|
<block v-else>
|
|
<u-empty class="pages-null" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png" text="暂无好友">
|
|
</u-empty>
|
|
</block>
|
|
</u-index-list>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getFriendsLetter,
|
|
getPendingCount
|
|
} from '@/apis/interfaces/im';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
indexs: [],
|
|
friends: [],
|
|
pendingCount: 0
|
|
};
|
|
},
|
|
computed: {
|
|
friend() {
|
|
return function(targetId) {
|
|
return this.$store.getters.userInfo(targetId)
|
|
}
|
|
}
|
|
},
|
|
onLoad() {
|
|
getFriendsLetter().then(res => {
|
|
this.indexs = res.indexList
|
|
this.friends = res.itemArr
|
|
})
|
|
getPendingCount().then(res => {
|
|
console.log(res);
|
|
this.pendingCount = res
|
|
})
|
|
},
|
|
methods: {
|
|
showToast() {
|
|
uni.showToast({
|
|
title: '群聊功能暂未开放,敬请期待',
|
|
icon: 'none'
|
|
});
|
|
},
|
|
toFriend(targetId) {
|
|
uni.navigateTo({
|
|
url: '/pages/im/friends/info?targetId=' + targetId
|
|
})
|
|
},
|
|
// 新朋友
|
|
toPending() {
|
|
uni.navigateTo({
|
|
url: '/pages/im/friends/pending'
|
|
});
|
|
}
|
|
},
|
|
onNavigationBarButtonTap(e) {
|
|
uni.navigateTo({
|
|
url: '/pages/im/friends/search'
|
|
});
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
// 页面空
|
|
.pages-null {
|
|
height: 70vh;
|
|
}
|
|
|
|
// 好友列表
|
|
.friend-flex {
|
|
position: relative;
|
|
padding: 20rpx $padding;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.name {
|
|
flex: 1;
|
|
padding-left: $padding;
|
|
font-size: $title-size + 2;
|
|
font-size: $title-size + 2;
|
|
color: #454545 !important;
|
|
@extend .nowrap;
|
|
}
|
|
}
|
|
</style>
|