This commit is contained in:
唐明明
2022-01-20 17:22:25 +08:00
parent 4395397c23
commit 09c5f0d0b4
6 changed files with 172 additions and 109 deletions

View File

@@ -1,19 +1,28 @@
import {
request
} from '../index'
const getImToken = () => { /**
return request({ * Web唐明明
url: 'im/token', * 匆匆数载恍如梦,岁月迢迢华发增。
}, true) * 碌碌无为枉半生,一朝惊醒万事空。
} * moduleName: 聊聊
*/
import { request } from '../index'
// 获取好友列表
const getFriends = () => { const getFriends = () => {
return request({ return request({
url: 'im/friends', url: 'im/friends',
}, true) }, true)
} }
// 获取融云token
const getImToken = () => {
return request({
url: 'im/token',
}, true)
}
// 获取用户信息
const getUserInfo = (targetId) => { const getUserInfo = (targetId) => {
return request({ return request({
url: 'im/userInfo/' + targetId, url: 'im/userInfo/' + targetId,
@@ -29,7 +38,6 @@ const getPedings = () => {
}) })
} }
export { export {
getImToken, getImToken,
getFriends, getFriends,

View File

@@ -420,14 +420,28 @@
"path": "pages/im/friends/index", "path": "pages/im/friends/index",
"name": "imFriends", "name": "imFriends",
"style": { "style": {
"navigationBarTitleText": "我的好友" "navigationBarTitleText": "我的好友",
"app-plus": {
"titleNView": {
"type": "default",
"buttons": [
{
"float": "right",
"fontSrc": "/static/iconfont.ttf",
"text": "\ue603",
"fontSize": "20px"
}
]
}
}
} }
}, },
{ {
"path": "pages/im/friends/pending", "path": "pages/im/friends/pending",
"name": "imFriendsPending", "name": "imFriendsPending",
"style": { "style": {
"navigationBarTitleText": "新的朋友" "navigationBarTitleText": "新的朋友",
"navigationBarBackgroundColor":"#FFFFFF"
} }
}, },
{ {

View File

@@ -6,15 +6,15 @@
<text class="list__item__user-name">新的朋友</text> <text class="list__item__user-name">新的朋友</text>
</view> </view>
<u-line></u-line> <u-line></u-line>
<view class="list__item" @click="toGroup"> <view class="list__item" @click="showToast">
<u-avatar size="35" icon="account-fill" fontSize="26" bg-color="#4cd964"></u-avatar> <u-avatar size="35" icon="account-fill" fontSize="26" bg-color="#4cd964"></u-avatar>
<text class="list__item__user-name">我的群聊</text> <text class="list__item__user-name">我的群聊</text>
</view> </view>
<u-line></u-line> <u-line></u-line>
</view> </view>
<block v-if="friendsArr.length > 0">
<u-index-list :indexList="indexList" activeColor="#34CE98"> <u-index-list activeColor="#34CE98">
<template v-for="(item, index) in itemArr"> <template v-for="(item, index) in friendsArr">
<!-- #ifdef APP-NVUE --> <!-- #ifdef APP-NVUE -->
<u-index-anchor bgColor="#F3F6FB" color="#666" :text="indexList[index]" :key="index"></u-index-anchor> <u-index-anchor bgColor="#F3F6FB" color="#666" :text="indexList[index]" :key="index"></u-index-anchor>
<!-- #endif --> <!-- #endif -->
@@ -36,100 +36,80 @@
<text class="list__footer">共305位好友</text> <text class="list__footer">共305位好友</text>
</view> </view>
</u-index-list> </u-index-list>
</block>
<block v-else>
<u-empty
class="pages-null"
mode="data"
icon="http://cdn.uviewui.com/uview/empty/data.png"
text="暂未添加好友"
>
</u-empty>
</block>
</view> </view>
</template> </template>
<script> <script>
const indexList = () => { import { getFriends } from '@/apis/interfaces/im'
const indexList = []
const charCodeOfA = 'A'.charCodeAt(0)
indexList.push("↑")
indexList.push("☆")
for (let i = 0; i < 26; i++) {
indexList.push(String.fromCharCode(charCodeOfA + i))
}
indexList.push('#')
return indexList
}
export default { export default {
data() { data() {
return { return {
indexList: indexList(), friendsArr: []
urls: [
'https://cdn.uviewui.com/uview/album/1.jpg',
'https://cdn.uviewui.com/uview/album/2.jpg',
'https://cdn.uviewui.com/uview/album/3.jpg',
'https://cdn.uviewui.com/uview/album/4.jpg',
'https://cdn.uviewui.com/uview/album/5.jpg',
'https://cdn.uviewui.com/uview/album/6.jpg',
'https://cdn.uviewui.com/uview/album/7.jpg',
'https://cdn.uviewui.com/uview/album/8.jpg',
'https://cdn.uviewui.com/uview/album/9.jpg',
'https://cdn.uviewui.com/uview/album/10.jpg',
],
names: ["勇往无敌", "疯狂的迪飙", "磊爱可", "梦幻梦幻梦", "枫中飘瓢", "飞翔天使",
"曾经第一", "追风幻影族长", "麦小姐", "胡格罗雅", "Red磊磊", "乐乐立立", "青龙爆风", "跑跑卡叮车", "山里狼", "supersonic超"
]
} }
}, },
onShow() {
getFriends().then(res => {
this.friendsArr = res
console.log(res)
})
},
computed: { computed: {
itemArr() {
return this.indexList.map(item => {
const arr = []
for (let i = 0; i < 10; i++) {
arr.push({
name: this.names[uni.$u.random(0, this.names.length - 1)],
url: this.urls[uni.$u.random(0, this.urls.length - 1)]
})
}
return arr
})
}
}, },
methods: { methods: {
// 扫码提示
showToast(){
uni.showToast({
title: "群聊功能暂未开放,敬请期待",
icon : "none"
})
},
// 新朋友
toPending() { toPending() {
uni.navigateTo({ uni.navigateTo({
url: '/pages/im/friends/pending' url: '/pages/im/friends/pending'
}) })
}, },
toGroup() { // 用户资料
uni.navigateTo({
url: '/pages/im/group/index',
fail: (err) => {
console.log(err);
}
})
},
toInfo(targetId) { toInfo(targetId) {
uni.navigateTo({ uni.navigateTo({
url: '/pages/im/friends/info?targeId=' + targetId url: '/pages/im/friends/info?targeId=' + targetId
}) })
} }
},
onNavigationBarButtonTap(e) {
this.toPending()
} }
} }
</script> </script>
<style lang="scss"> <style lang="scss">
.list { .list {
&__item { &__item {
@include flex; @include flex;
padding: 6px 12px; padding: 6px 12px;
align-items: center; align-items: center;
&__avatar { &__avatar {
height: 35px; height: 35px;
width: 35px; width: 35px;
border-radius: 50%; border-radius: 50%;
} }
&__user-name { &__user-name {
font-size: 16px; font-size: 16px;
margin-left: 10px; margin-left: 10px;
color: $u-main-color; color: $u-main-color;
} }
} }
&__footer { &__footer {
color: $u-tips-color; color: $u-tips-color;
font-size: 14px; font-size: 14px;
@@ -137,4 +117,9 @@
margin: 15px 0; margin: 15px 0;
} }
} }
// 页面空
.pages-null{
height: 70vh;
}
</style> </style>

View File

@@ -1,14 +1,69 @@
<template> <template>
<div> <view>
<search></search> <!-- 搜索 -->
<view class="header-search">
<list></list> <u-search placeholder="输入手机号码搜索" v-model="searchValue"></u-search>
好友搜索好友申请列表 都会在这个页面 </view>
</div> <!-- 新朋友 -->
<view class="lists">
<view class="lists-item" v-for="(item, index) in 10" :key="index">
<image class="lists-item-cover" src="" mode="aspectFill"></image>
<view class="">好友</view>
<view class="">
<text>通过</text>
<text>拒绝</text>
</view>
</view>
</view>
<!-- 空列表 -->
<view class="">
空列表
</view>
</view>
</template> </template>
<script> <script>
export default{
data(){
return{
searchValue: "",
listsArr: []
}
}
}
</script> </script>
<style> <style lang="scss" scoped>
.header-search{
padding: $padding/2 $padding;
background: white;
}
// 好友列表
.lists{
.lists-item{
padding: 20rpx $padding;
position: relative;
display: flex;
align-items: center;
&::after{
content: " ";
position: absolute;
left: $margin;
right: 0;
bottom: 0;
height: 1rpx;
background-color: $border-color;
}
&:last-child::after{
display: none;
}
.lists-item-cover{
width: 98rpx;
height: 98rpx;
border-radius: 50%;
background: $window-color;
}
}
}
</style> </style>

View File

@@ -91,10 +91,12 @@
}) })
} }
if (e.index == 1) { if (e.index == 1) {
if(this.toLogin()){
this.$Router.push({ this.$Router.push({
name: 'imFriends' name: 'imFriends'
}) })
} }
}
}, },
watch: { watch: {
'$store.getters.newMessage': function(n, o) { '$store.getters.newMessage': function(n, o) {

View File

@@ -1,7 +1,6 @@
<template> <template>
<view class="chat-content"> <view class="chat-content">
<scroll-view class="chat-scrool" :scroll-y="true" :scroll-into-view="scrollIntoID" <scroll-view class="chat-scrool" :scroll-y="true" :scroll-into-view="scrollIntoID" :scroll-with-animation="false">
:scroll-with-animation="false">
<!-- 聊天窗口 --> <!-- 聊天窗口 -->
<view class="chat-item" v-for="(item,index) in messages" :key="index" :id="'chatId_'+index"> <view class="chat-item" v-for="(item,index) in messages" :key="index" :id="'chatId_'+index">
<view class="chat-item-time"> <view class="chat-item-time">