update
This commit is contained in:
@@ -13,17 +13,17 @@
|
||||
<u-line></u-line>
|
||||
</view>
|
||||
|
||||
<u-index-list :indexList="indexList">
|
||||
<u-index-list :indexList="indexList" activeColor="#34CE98">
|
||||
<template v-for="(item, index) in itemArr">
|
||||
<!-- #ifdef APP-NVUE -->
|
||||
<u-index-anchor :text="indexList[index]" :key="index"></u-index-anchor>
|
||||
<u-index-anchor bgColor="#F3F6FB" color="#666" :text="indexList[index]" :key="index"></u-index-anchor>
|
||||
<!-- #endif -->
|
||||
<u-index-item :key="index">
|
||||
<!-- #ifndef APP-NVUE -->
|
||||
<u-index-anchor :text="indexList[index]"></u-index-anchor>
|
||||
<u-index-anchor :text="indexList[index]" bgColor="#F3F6FB" color="#666"></u-index-anchor>
|
||||
<!-- #endif -->
|
||||
<view class="list" v-for="(item1, index1) in item" :key="index1">
|
||||
<view class="list__item" @click="toInfo">
|
||||
<view class="list__item" @click="toInfo(10047)">
|
||||
<image class="list__item__avatar" :src="item1.url"></image>
|
||||
<!-- <u-avatar size="35" icon="chrome-circle-fill" fontSize="26" randomBgColor></u-avatar> -->
|
||||
<text class="list__item__user-name">{{item1.name}}</text>
|
||||
@@ -100,9 +100,9 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
toInfo() {
|
||||
toInfo(targetId) {
|
||||
uni.navigateTo({
|
||||
url: '/pages/im/friends/info'
|
||||
url: '/pages/im/friends/info?targeId=' + targetId
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,46 @@
|
||||
<template>
|
||||
<view>
|
||||
好友资料,
|
||||
<u-button @click="toPrivate">发送消息</u-button>
|
||||
</view>
|
||||
<template>
|
||||
<view class="content">
|
||||
<!-- 用户信息 -->
|
||||
<view class="user-info">
|
||||
<u-avatar
|
||||
src="https://cdn.uviewui.com/uview/album/1.jpg"
|
||||
size="58"
|
||||
></u-avatar>
|
||||
<view class="nickname">{{ userInfo.name }}</view>
|
||||
<view class="sex">
|
||||
<u-tag text="男" color="#fff" borderColor="#5db6ee" size="mini" icon="man" bgColor="#5db6ee"></u-tag>
|
||||
<!-- <u-tag text="女" color="#fff" borderColor="#e4867a" size="mini" icon="woman" bgColor="#e4867a"></u-tag> -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="user-lists">
|
||||
<view class="user-lists-item">
|
||||
<label>地区</label>
|
||||
<text>黑龙江 哈尔滨</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 发送消息 -->
|
||||
<view class="info-footer">
|
||||
<button class="open-btn" @click="toPrivate">发送消息</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
getUserInfo
|
||||
} from '@/apis/interfaces/im.js'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
userInfo: {}
|
||||
}
|
||||
},
|
||||
onLoad(e) {
|
||||
getUserInfo(e.targetId).then(res => {
|
||||
this.userInfo = res
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
toPrivate() {
|
||||
uni.navigateTo({
|
||||
@@ -17,5 +51,72 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
<style lang="scss" scoped>
|
||||
.content{
|
||||
min-height: 100vh;
|
||||
background: $window-color;
|
||||
}
|
||||
// 用户信息
|
||||
.user-info{
|
||||
padding: $padding*3 $padding;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: white;
|
||||
.nickname{
|
||||
font-size: 42rpx;
|
||||
padding-top: $padding;
|
||||
color: $text-color;
|
||||
}
|
||||
.sex{
|
||||
padding-top: $padding/2;
|
||||
text{
|
||||
font-size: $title-size-sm;
|
||||
background: #303133;
|
||||
padding: 0 10rpx;
|
||||
color: white;
|
||||
border-radius: $radius-m;
|
||||
line-height: 30rpx;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
.user-lists{
|
||||
margin-top: $margin;
|
||||
background: white;
|
||||
.user-lists-item{
|
||||
padding: 0 $padding;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
line-height: 90rpx;
|
||||
font-size: $title-size-lg;
|
||||
label{
|
||||
color: $text-color;
|
||||
}
|
||||
text{
|
||||
color: $text-gray;
|
||||
}
|
||||
}
|
||||
}
|
||||
// 发送消息
|
||||
.info-footer{
|
||||
padding: $padding;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
.open-btn{
|
||||
width: 100%;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
background: $main-color;
|
||||
border-radius: $radius-lg;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
color: white;
|
||||
font-size: $title-size;
|
||||
&::after{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
<template>
|
||||
<div>
|
||||
<search></search>
|
||||
|
||||
<list></list>
|
||||
好友搜索,好友申请列表 都会在这个页面
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -1,11 +1,31 @@
|
||||
<template>
|
||||
<view>
|
||||
会话设置 {{ targetId}}
|
||||
<view @click="setStatus">免打扰开关 {{status}}</view>
|
||||
<view @click="setTop">置顶会话 {{isTop}}</view>
|
||||
|
||||
<u-button @click="toIndex">会首页</u-button>
|
||||
</view>
|
||||
<template>
|
||||
<view class="content">
|
||||
<!-- 聊天信息 -->
|
||||
<view class="set-user">
|
||||
<u-avatar
|
||||
src="https://cdn.uviewui.com/uview/album/1.jpg"
|
||||
size="48"
|
||||
></u-avatar>
|
||||
<view class="set-user-nickname">唐明明</view>
|
||||
</view>
|
||||
<!-- 聊天设置 -->
|
||||
<view class="set-group">
|
||||
<view class="group-flex">
|
||||
<label>消息免打扰</label>
|
||||
<u-switch activeColor="#34CE98" size="22"></u-switch>
|
||||
</view>
|
||||
<view class="group-flex">
|
||||
<label>置顶会话</label>
|
||||
<u-switch v-model="isTop" activeColor="#34CE98" size="22"></u-switch>
|
||||
</view>
|
||||
</view>
|
||||
<view class="set-group">
|
||||
<view class="group-flex" @click="cleanConversation">
|
||||
<label>清空聊天记录</label>
|
||||
<u-icon name="arrow-right" color="#999" size="16"></u-icon>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -37,11 +57,6 @@
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
toIndex() {
|
||||
uni.switchTab({
|
||||
url: '/pages/im/index'
|
||||
})
|
||||
},
|
||||
setStatus() {
|
||||
RongIMLib.setConversationNotificationStatus(this.conversationType, this.targetId, this.status, ({
|
||||
status
|
||||
@@ -59,11 +74,62 @@
|
||||
this.isTop = conversation.isTop
|
||||
})
|
||||
})
|
||||
},
|
||||
// 清空聊天记录
|
||||
cleanConversation() {
|
||||
RongIMLib.deleteMessages(this.conversationType, this.targetId, ({code}) => {
|
||||
if (code === 0) {
|
||||
console.log('chenggong ');
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.content{
|
||||
min-height: 100vh;
|
||||
background: $window-color;
|
||||
// 用户信息
|
||||
.set-user{
|
||||
background: white;
|
||||
padding: $padding;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.set-user-nickname{
|
||||
padding-left: $padding;
|
||||
flex: 1;
|
||||
line-height: 70rpx;
|
||||
font-size: $title-size + 6;
|
||||
}
|
||||
}
|
||||
// 聊天设置
|
||||
.set-group{
|
||||
margin: $margin 0;
|
||||
background: white;
|
||||
.group-flex{
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
padding: 0 $padding;
|
||||
font-size: $title-size;
|
||||
align-items: center;
|
||||
&::after{
|
||||
content: " ";
|
||||
position: absolute;
|
||||
left: $margin;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 1rpx;
|
||||
background-color: $border-color;
|
||||
}
|
||||
&:last-child::after{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user