h大健康群公告列表页面重构,详情页处理接口及样式兼容,群消息页面的群公告显示重构,群聊邀请审核扫码模式处理接口及样式;
This commit is contained in:
@@ -126,13 +126,13 @@ const getGroupUsers = (groupId, limit) => {
|
|||||||
url: 'im/groups/' + groupId + '/users?limit=' + limit
|
url: 'im/groups/' + groupId + '/users?limit=' + limit
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 公告列表
|
||||||
const getGroupAnnouncements = (groupId) => {
|
const getGroupAnnouncements = (groupId) => {
|
||||||
return request({
|
return request({
|
||||||
url: 'im/groups/' + groupId + '/announcements'
|
url: 'im/groups/' + groupId + '/announcements'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 创建公告
|
||||||
const createGroupAnnouncement = (groupId, content) => {
|
const createGroupAnnouncement = (groupId, content) => {
|
||||||
return request({
|
return request({
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
@@ -142,13 +142,27 @@ const createGroupAnnouncement = (groupId, content) => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 查看该公告详情
|
||||||
|
const getGroupAnnouncement = (groupId, announcementId) => {
|
||||||
|
return request({
|
||||||
|
method: 'GET',
|
||||||
|
url: 'im/groups/' + groupId + '/announcements/' + announcementId
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 删除该公告
|
||||||
const deleteGroupAnnouncement = (groupId, announcementId) => {
|
const deleteGroupAnnouncement = (groupId, announcementId) => {
|
||||||
return request({
|
return request({
|
||||||
method: 'DELETE',
|
method: 'DELETE',
|
||||||
url: 'im/groups/' + groupId + '/announcements/' + announcementId
|
url: 'im/groups/' + groupId + '/announcements/' + announcementId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 置顶群公告
|
||||||
|
const topGroupAnnouncement = (groupId, announcementId) => {
|
||||||
|
return request({
|
||||||
|
method: 'POST',
|
||||||
|
url: 'im/groups/' + groupId + '/announcements/' + announcementId+'/top',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建群聊
|
* 创建群聊
|
||||||
@@ -267,19 +281,16 @@ const transferGroupOwner = (groupId, userId) => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// //群成员待审核表 -- 废弃
|
|
||||||
// const getGroupMakeSure = (groupId) => {
|
// 通过审核验证群成员
|
||||||
// return request({
|
const groupMakeSure = (groupId,user) => {
|
||||||
// url:`im/groups/${groupId}/makesure`
|
return request({
|
||||||
// })
|
url:`im/groups/${groupId}/makesure/${user}`,
|
||||||
// }
|
method:'POST'
|
||||||
// // 群成员审核通过
|
})
|
||||||
// const getGroupMakeSureAllow = (groupId, userId) => {
|
}
|
||||||
// return request({
|
|
||||||
// method: 'POST',
|
|
||||||
// url: 'im/groups/' + groupId + '/owner/' + userId
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
getImToken,
|
getImToken,
|
||||||
@@ -300,8 +311,10 @@ export {
|
|||||||
getGroupBase,
|
getGroupBase,
|
||||||
getGroupUsers,
|
getGroupUsers,
|
||||||
getGroupAnnouncements,
|
getGroupAnnouncements,
|
||||||
|
getGroupAnnouncement,
|
||||||
createGroupAnnouncement,
|
createGroupAnnouncement,
|
||||||
deleteGroupAnnouncement,
|
deleteGroupAnnouncement,
|
||||||
|
topGroupAnnouncement,
|
||||||
searchGroup,
|
searchGroup,
|
||||||
joinGroupPre,
|
joinGroupPre,
|
||||||
joinGroup,
|
joinGroup,
|
||||||
@@ -311,6 +324,5 @@ export {
|
|||||||
removeGroupUser,
|
removeGroupUser,
|
||||||
setGroupAdmin,
|
setGroupAdmin,
|
||||||
removeGroupAdmin,
|
removeGroupAdmin,
|
||||||
// transferGroupOwner, // -废弃待审核列表
|
groupMakeSure, // 通过审核
|
||||||
// getGroupMakeSure // -废弃待审核列表
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,16 @@
|
|||||||
<view :class="['user', {'active': item.targetId === currentUser.targetId}]" @longpress="showAction(item)"
|
<view :class="['user', {'active': item.targetId === currentUser.targetId}]" @longpress="showAction(item)"
|
||||||
v-for="(item, index) in users" :key="index" @click="toUser(item)">
|
v-for="(item, index) in users" :key="index" @click="toUser(item)">
|
||||||
<view class="avatar">
|
<view class="avatar">
|
||||||
<u-avatar :size="avatarSize" shape="square" :src="contact(item.targetId).portraitUrl" />
|
<u-avatar :size="avatarSize" shape="square"
|
||||||
|
:src="contact(item.targetId).portraitUrl || require('@/static/user/cover.png')" />
|
||||||
<view class="admin" v-if="item.is_admin === 1">管理</view>
|
<view class="admin" v-if="item.is_admin === 1">管理</view>
|
||||||
<view class="owner" v-if="item.is_admin === 2">群主</view>
|
<view class="owner" v-if="item.is_admin === 2">群主</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="name">{{ item.name }}</view>
|
<view class="name">{{ item.name }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="user" v-if="isAdmin">
|
<view class="user" v-if="isAdmin">
|
||||||
<u-avatar @click="inviteUser" :size="avatarSize" shape="square" icon="plus" bgColor="#f9f9f9" color="#c7c7c7" />
|
<u-avatar @click="inviteUser" :size="avatarSize" shape="square" icon="plus" bgColor="#f9f9f9"
|
||||||
|
color="#c7c7c7" />
|
||||||
<view class="name">邀请好友</view>
|
<view class="name">邀请好友</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@@ -1,25 +1,53 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="create">
|
<view class="create">
|
||||||
<view class="create-title">公告内容</view>
|
<view class="create-title">公告内容</view>
|
||||||
|
<block v-if="type !== 'cheack'">
|
||||||
<u--textarea v-model="content" count height="240" maxlength="240" placeholder="请输入公告内容" />
|
<u--textarea v-model="content" count height="240" maxlength="240" placeholder="请输入公告内容" />
|
||||||
<u-button type="primary" text="发布" :disabled="disabled" @click="onCreate" color="#34CE98" />
|
<u-button type="primary" text="发布" :disabled="disabled" @click="onCreate" color="#34CE98" />
|
||||||
|
</block>
|
||||||
|
<block v-if="type === 'cheack'">
|
||||||
|
<view class="content-a"> {{content}} </view>
|
||||||
|
</block>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
createGroupAnnouncement
|
createGroupAnnouncement,
|
||||||
|
getGroupAnnouncement
|
||||||
} from '@/apis/interfaces/im.js'
|
} from '@/apis/interfaces/im.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
targetId: '',
|
targetId: '',
|
||||||
content: ''
|
content: '',
|
||||||
|
aId: '',
|
||||||
|
type: '' // check ' 查看详情'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
this.targetId = e.targetId
|
this.targetId = e.targetId
|
||||||
|
if (e.type) {
|
||||||
|
this.type = e.type
|
||||||
|
console.log(this.type)
|
||||||
|
|
||||||
|
}
|
||||||
|
if (e.aId) {
|
||||||
|
this.aId = e.aId
|
||||||
|
getGroupAnnouncement(this.targetId, this.aId).then(res => {
|
||||||
|
console.log(res.content)
|
||||||
|
this.content = res.content
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon: 'none',
|
||||||
|
mask: true
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
disabled() {
|
disabled() {
|
||||||
@@ -52,15 +80,16 @@
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.create {
|
.create {
|
||||||
padding: $padding;
|
padding: $padding;
|
||||||
.create-title{
|
|
||||||
|
.create-title {
|
||||||
font-size: $title-size + 4;
|
font-size: $title-size + 4;
|
||||||
padding: $padding - 10 0 $padding - 10 $padding - 10 ;
|
padding: $padding - 10 0 $padding - 10 $padding - 10;
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&::before{
|
&::before {
|
||||||
content:"";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 10rpx;
|
width: 10rpx;
|
||||||
height: 34rpx;
|
height: 34rpx;
|
||||||
@@ -69,6 +98,13 @@
|
|||||||
top: 26rpx;
|
top: 26rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content-a {
|
||||||
|
color: $text-color;
|
||||||
|
font-size: $title-size;
|
||||||
|
line-height: 1.7;
|
||||||
|
}
|
||||||
|
|
||||||
.u-button {
|
.u-button {
|
||||||
margin-top: $padding;
|
margin-top: $padding;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="announce">
|
<view class="announce" :style="`background-color:${bg};`">
|
||||||
<!-- 有列表 -->
|
<!-- 有列表 -->
|
||||||
<u-skeleton rows="2" :loading="loading" avatar :rows="5" v-if="announcements.length>0">
|
<u-skeleton rows="2" :loading="loading" avatar :rows="5" v-if="announcements.length>0">
|
||||||
<view v-for="(item,index) in announcements" :key="index" class="item" @longpress="actions(item.announcement_id)">
|
<view v-for="(item,index) in announcements" :key="index" class="item"
|
||||||
<view class="content-a"><span>置顶</span>{{ item.content }}</view>
|
@longpress="actions(item.announcement_id)" @click="tabA(item.announcement_id)">
|
||||||
|
<view class="content-a"><span v-if="item.is_top">置顶</span>{{ item.content }}</view>
|
||||||
<view class="user">
|
<view class="user">
|
||||||
<u-avatar :src="item.user.portraitUrl" size="40rpx" />
|
<u-avatar :src="item.user.portraitUrl" size="40rpx" />
|
||||||
<view class="name">{{ item.user.name }}</view>
|
<view class="name">{{ item.user.name }}</view>
|
||||||
@@ -15,12 +16,14 @@
|
|||||||
|
|
||||||
<!-- 没有列表 -->
|
<!-- 没有列表 -->
|
||||||
<view class="no-lists" v-else>
|
<view class="no-lists" v-else>
|
||||||
<u-image class="cover" radius="4" width="400rpx" height="400rpx" :src="require('@/static/imgs/no-level-list.png')" :lazy-load="true" />
|
<u-image class="cover" radius="4" width="400rpx" height="400rpx"
|
||||||
|
:src="require('@/static/imgs/no-level-list.png')" :lazy-load="true" />
|
||||||
<span>暂无公告内容~</span>
|
<span>暂无公告内容~</span>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 弹出 -->
|
<!-- 弹出 -->
|
||||||
<u-action-sheet :actions="actionMap" :title="actionTitle" :show="actionShow" cancelText="取消" @close="actionShow = false" @select="handleAction" />
|
<u-action-sheet :actions="actionMap" :title="actionTitle" :show="actionShow" cancelText="取消"
|
||||||
|
@close="actionShow = false" @select="handleAction" />
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -29,7 +32,8 @@
|
|||||||
import {
|
import {
|
||||||
getGroupInfo,
|
getGroupInfo,
|
||||||
getGroupAnnouncements,
|
getGroupAnnouncements,
|
||||||
deleteGroupAnnouncement
|
deleteGroupAnnouncement,
|
||||||
|
topGroupAnnouncement
|
||||||
} from '@/apis/interfaces/im.js'
|
} from '@/apis/interfaces/im.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -41,9 +45,17 @@
|
|||||||
loading: true,
|
loading: true,
|
||||||
isAdmin: false,
|
isAdmin: false,
|
||||||
actionShow: false,
|
actionShow: false,
|
||||||
list: [{name: '选项一'}, {name: '选项二'}],
|
actionMap: [{
|
||||||
actionMap: [{key: 1,name: '编辑',disabled: false}, {key: 2,name: '删除',disabled: false}, {key: 3,name: '置顶',disabled: false}],
|
key: 2,
|
||||||
|
name: ' 删除该公告',
|
||||||
|
disabled: false
|
||||||
|
}, {
|
||||||
|
key: 3,
|
||||||
|
name: '置顶该公告',
|
||||||
|
disabled: false
|
||||||
|
}],
|
||||||
actionTitle: '请选择操作',
|
actionTitle: '请选择操作',
|
||||||
|
bg:'#fff'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
@@ -73,40 +85,77 @@
|
|||||||
// 获取公告信息
|
// 获取公告信息
|
||||||
initData() {
|
initData() {
|
||||||
getGroupAnnouncements(this.targetId).then(res => {
|
getGroupAnnouncements(this.targetId).then(res => {
|
||||||
console.log(res)
|
if(res.length>0){
|
||||||
|
this.bg = '#f9f9f9'
|
||||||
|
}else{
|
||||||
|
this.bg = '#fff'
|
||||||
|
}
|
||||||
this.announcements = res
|
this.announcements = res
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 选择公告 并显示操作弹窗
|
// 选择公告 并显示操作弹窗
|
||||||
actions(id) {
|
actions(id) {
|
||||||
|
if (this.isAdmin) {
|
||||||
this.groupAnnouncementId = id
|
this.groupAnnouncementId = id
|
||||||
this.actionShow = true
|
this.actionShow = true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 选择了操作出发事件
|
// 选择了操作出发事件
|
||||||
handleAction(e) {
|
handleAction(e) {
|
||||||
console.log('addadfs', e)
|
console.log(e.key)
|
||||||
UNI.showToast({
|
switch (e.key) {
|
||||||
title:e,
|
case 2:
|
||||||
icon:"none"
|
this.onDelete(this.groupAnnouncementId)
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
this.onTop(this.groupAnnouncementId)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
tabA(id) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/im/group/announceCreate?type=cheack&targetId=' + this.targetId + '&aId=' + id
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
onTop(aId) {
|
||||||
|
topGroupAnnouncement(this.targetId, aId).then(res => {
|
||||||
|
uni.showToast({
|
||||||
|
icon: 'none',
|
||||||
|
title: ' 置顶成功',
|
||||||
|
mask: true
|
||||||
|
})
|
||||||
|
uni.$emit('updateAnnouncement')
|
||||||
|
this.initData()
|
||||||
|
})
|
||||||
|
// uni.showModal({
|
||||||
|
// title: ' 置顶该公告',
|
||||||
|
// success: (res) => {
|
||||||
|
// if (res.confirm) {
|
||||||
|
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
},
|
||||||
// 删除公告
|
// 删除公告
|
||||||
onDelete(aId) {
|
onDelete(aId) {
|
||||||
uni.showModal({
|
|
||||||
title: '删除公告',
|
|
||||||
success: (res) => {
|
|
||||||
if (res.confirm) {
|
|
||||||
deleteGroupAnnouncement(this.targetId, aId).then(res => {
|
deleteGroupAnnouncement(this.targetId, aId).then(res => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
icon: 'none',
|
icon: 'none',
|
||||||
title: '删除成功'
|
title: '删除成功',
|
||||||
|
mask: true
|
||||||
})
|
})
|
||||||
|
uni.$emit('updateAnnouncement')
|
||||||
this.initData()
|
this.initData()
|
||||||
})
|
})
|
||||||
}
|
// uni.showModal({
|
||||||
}
|
// title: '删除该公告',
|
||||||
})
|
// success: (res) => {
|
||||||
|
// if (res.confirm) {
|
||||||
|
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -114,7 +163,6 @@
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.announce {
|
.announce {
|
||||||
background-color: #f9f9f9;
|
|
||||||
min-height: 99vh;
|
min-height: 99vh;
|
||||||
|
|
||||||
.no-lists {
|
.no-lists {
|
||||||
|
|||||||
@@ -5,8 +5,10 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<u-cell-group class="cells" :border="false">
|
<u-cell-group class="cells" :border="false">
|
||||||
<u-cell :border="false" class="u-border-bottom" isLink title="群公告" :label="announcement"
|
<u-cell :border="false" class="u-border-bottom" isLink title="群公告"
|
||||||
@click="toAnnouncement" />
|
@click="toAnnouncement" >
|
||||||
|
<view slot="label" class="announcement-label "> {{announcement}} </view>
|
||||||
|
</u-cell>
|
||||||
<u-cell :border="false" class="u-border-bottom" isLink title="二维码" @click="showGroupQrCode" />
|
<u-cell :border="false" class="u-border-bottom" isLink title="二维码" @click="showGroupQrCode" />
|
||||||
<u-cell :border="false" class="u-border-bottom" v-if="group.can_makesure" isLink title="群聊邀请确认"
|
<u-cell :border="false" class="u-border-bottom" v-if="group.can_makesure" isLink title="群聊邀请确认"
|
||||||
@click="showGroupsSure" />
|
@click="showGroupsSure" />
|
||||||
@@ -106,9 +108,12 @@
|
|||||||
this.initData()
|
this.initData()
|
||||||
uni.$on('groupAnnouncementCreated', this.initData)
|
uni.$on('groupAnnouncementCreated', this.initData)
|
||||||
uni.$on('groupInvitedUser', this.updateUserList)
|
uni.$on('groupInvitedUser', this.updateUserList)
|
||||||
|
uni.$on('updateAnnouncement',this.initData)
|
||||||
},
|
},
|
||||||
onUnload() {
|
onUnload() {
|
||||||
uni.$off('groupAnnouncementCreated')
|
uni.$off('groupAnnouncementCreated')
|
||||||
|
uni.$off('groupInvitedUser')
|
||||||
|
uni.$off('updateAnnouncement')
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateUserList() {
|
updateUserList() {
|
||||||
@@ -336,6 +341,19 @@
|
|||||||
.cells {
|
.cells {
|
||||||
margin-top: $padding;
|
margin-top: $padding;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
.announcement-label{
|
||||||
|
font-size: $title-size-m + 2;
|
||||||
|
padding-top: 10rpx;
|
||||||
|
color: $text-gray-m;
|
||||||
|
overflow: hidden;
|
||||||
|
width: 620rpx;
|
||||||
|
display: inline-block;
|
||||||
|
overflow:hidden;
|
||||||
|
text-overflow:ellipsis;
|
||||||
|
display:-webkit-box;
|
||||||
|
-webkit-box-orient:vertical;
|
||||||
|
-webkit-line-clamp:3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.members {
|
.members {
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
<!-- 群聊邀请确认列表页面 -->
|
<!-- 群聊邀请确认列表页面 -->
|
||||||
<template>
|
<template>
|
||||||
<<<<<<< HEAD
|
|
||||||
<view class="reviewed">
|
<view class="reviewed">
|
||||||
|
<block v-if="pendings.length > 0">
|
||||||
<view class="reviewed-item" v-for="(item, index) in pendings" :key="index">
|
<view class="reviewed-item" v-for="(item, index) in pendings" :key="index">
|
||||||
<u-avatar class="avatar" :src="JSON.parse(item.latestMessage.extra).portraitUrl" shape="square" size="36" />
|
<u-avatar class="avatar"
|
||||||
|
:src="JSON.parse(item.latestMessage.extra).portraitUrl || require('@/static/user/cover.png')"
|
||||||
|
shape="square" size="46" />
|
||||||
<view style="flex:1;" v-if="item.latestMessage.operation == 'GroupPending'">
|
<view style="flex:1;" v-if="item.latestMessage.operation == 'GroupPending'">
|
||||||
<view class="nickname">用户: {{ JSON.parse(item.latestMessage.extra).name }} 申请加入群聊</view>
|
<view class="nickname">{{ JSON.parse(item.latestMessage.extra).name }} 申请加入群聊</view>
|
||||||
<view> 申请原因:{{ item.latestMessage.message }}</view>
|
<view> 申请原因:{{ item.latestMessage.message }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view style="flex:1;" v-if="item.latestMessage.operation == 'GroupInvite'">
|
<view style="flex:1;" v-if="item.latestMessage.operation == 'GroupInvite'">
|
||||||
@@ -13,29 +15,26 @@
|
|||||||
<text>{{ contact(item.latestMessage.sourceUserId )}}</text>想邀请<span>{{ JSON.parse(item.latestMessage.extra).name }}</span>加入群聊
|
<text>{{ contact(item.latestMessage.sourceUserId )}}</text>想邀请<span>{{ JSON.parse(item.latestMessage.extra).name }}</span>加入群聊
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="sure" @click="sure(item.latestMessage.targetUserId)"> 通过 </view>
|
<view class="sure" @click="sure(item.latestMessage.targetUserId,item.latestMessageId)"> 通过 </view>
|
||||||
|
</view>
|
||||||
|
</block>
|
||||||
|
|
||||||
|
<view class="no-lists" v-else>
|
||||||
|
<u-image class="cover" radius="4" width="400rpx" height="400rpx"
|
||||||
|
:src="require('@/static/imgs/no-friend.png')" :lazy-load="true" />
|
||||||
|
<span> 暂无群聊申请数据~</span>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<!--
|
|
||||||
[{
|
|
||||||
"latestMessage": {
|
|
||||||
"operation": "GroupPending", // GroupPending 申请加群, GroupInvite 邀请进群
|
|
||||||
"message": "null", 申请的消息
|
|
||||||
"sourceUserId": "10047", 邀请人
|
|
||||||
申请人的简要信息
|
|
||||||
"extra": "{\"name\":\"JasonChen\",\"portraitUrl\":\"http:\\/\\/storage.zh.shangkelian.cn\\/uploads\\/2022\\/02\\/17\\/2b3cb44bc8335b25ac3dc762ef810bad.jpg\"}",
|
|
||||||
"targetUserId": "10051", 被邀请人,或者是申请人
|
|
||||||
"objectName": "RC:ContactNtf"
|
|
||||||
},
|
|
||||||
}]
|
|
||||||
-->
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
getGroupMakeSure,
|
getGroupMakeSure,
|
||||||
getGroupMakeSureAllow
|
getGroupMakeSureAllow,
|
||||||
|
groupMakeSure
|
||||||
} from "@/apis/interfaces/im.js"
|
} from "@/apis/interfaces/im.js"
|
||||||
import im from '@/utils/im/message.js'
|
import im from '@/utils/im/message.js'
|
||||||
|
import * as RongIMLib from '@/uni_modules/RongCloud-IMWrapper/js_sdk/index'
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
@@ -53,12 +52,42 @@
|
|||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
this.targetId = e.targetId
|
this.targetId = e.targetId
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getList() {
|
||||||
im.getGroupPendinglist(this.targetId, (result) => {
|
im.getGroupPendinglist(this.targetId, (result) => {
|
||||||
|
console.log(result)
|
||||||
this.pendings = result
|
this.pendings = result
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
sure(userId, latestMessageId) {
|
||||||
sure(targetUserId) {
|
groupMakeSure(this.targetId, userId).then(res => {
|
||||||
|
// 清除聊天列表
|
||||||
|
RongIMLib.deleteMessagesByIds([latestMessageId], ({
|
||||||
|
code
|
||||||
|
}) => {
|
||||||
|
console.log('code', code)
|
||||||
|
if (code == 0) {
|
||||||
|
uni.showToast({
|
||||||
|
title: ` 通过 `,
|
||||||
|
icon: 'none',
|
||||||
|
mask: true,
|
||||||
|
duration: 2000
|
||||||
|
})
|
||||||
|
this.getList()
|
||||||
|
uni.$emit('groupInvitedUser')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon: 'none',
|
||||||
|
mask: true,
|
||||||
|
duration: 2000
|
||||||
|
})
|
||||||
|
})
|
||||||
// 直接调用通过或拒绝的接口
|
// 直接调用通过或拒绝的接口
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -75,7 +104,7 @@
|
|||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-bottom: solid 1rpx #f9f9f9;
|
border-bottom: solid 1rpx #f9f9f9;
|
||||||
font-size: $title-size-m - 2;
|
font-size: $title-size-m;
|
||||||
padding-bottom: 20rpx;
|
padding-bottom: 20rpx;
|
||||||
color: $text-gray-m;
|
color: $text-gray-m;
|
||||||
|
|
||||||
@@ -86,11 +115,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.nickname {
|
.nickname {
|
||||||
font-size: $title-size-m;
|
font-size: $title-size;
|
||||||
|
color: $text-color;
|
||||||
|
padding-bottom: 6rpx;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
font-size: $title-size-m +1;
|
font-size: $title-size-m +1;
|
||||||
|
padding-top: 20rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -106,88 +138,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
=======
|
|
||||||
<view class="reviewed">
|
|
||||||
<view class="reviewed-item">
|
|
||||||
<u-avatar class="avatar" src="require('@/static/user/cover.png')" shape="square" size="36" />
|
|
||||||
<view style="flex:1;">
|
|
||||||
<view class="nickname"><span>{{`艾米的猫儿 `}}</span>想邀请<span>{{` 用户8066`}}</span>加入群聊</view>
|
|
||||||
<view> 申请原因:{{`呵呵哒。。`}}</view>
|
|
||||||
</view>
|
|
||||||
<view class="sure" @click="sure(2)"> 通过 </view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
.no-lists {
|
||||||
import im from '@/utils/im/index.js'
|
padding-top: $padding * 5;
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
lists: [],
|
|
||||||
};
|
|
||||||
},
|
|
||||||
onLoad(e) {
|
|
||||||
this.targetId = e.id
|
|
||||||
this.getGroupPendinglist()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getGroupPendinglist() {
|
|
||||||
im.getGroupPendinglist(this.targetId,(pendings) => {
|
|
||||||
console.log(pendings)
|
|
||||||
// this.pendings = pendings
|
|
||||||
})
|
|
||||||
},
|
|
||||||
sure(id) {
|
|
||||||
uni.navigateTo({
|
|
||||||
url: "/pages/im/group/reviewedInfo?id=" + id
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.reviewed {
|
|
||||||
.reviewed-item {
|
|
||||||
margin: $padding - 10;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
align-items: center;
|
||||||
justify-content: flex-start;
|
justify-content: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-bottom: solid 1rpx #f9f9f9;
|
font-size: $title-size-m;
|
||||||
font-size: $title-size-m - 2;
|
|
||||||
padding-bottom: 20rpx;
|
|
||||||
color: $text-gray-m;
|
color: $text-gray-m;
|
||||||
|
|
||||||
.avatar {
|
|
||||||
background-color: $main-color;
|
|
||||||
border-radius: 6rpx;
|
|
||||||
margin-right: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nickname {
|
|
||||||
font-size: $title-size-m;
|
|
||||||
margin-bottom: 10rpx;
|
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: $text-color;
|
padding-top: $padding;
|
||||||
font-size: $title-size-m +1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sure {
|
|
||||||
background-color: $main-color;
|
|
||||||
color: #Fff;
|
|
||||||
text-align: center;
|
|
||||||
font-size: $title-size-m;
|
|
||||||
padding: 6rpx 20rpx;
|
|
||||||
border-radius: 10rpx;
|
|
||||||
margin-left: 10rpx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
>>>>>>> e99ef72050d54c27a6fe46e8063bb57fc903fac4
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user