Files
im-uniapp/pages/conversation/chating/components/ChatingHeader.vue
2025-07-14 17:02:56 +08:00

301 lines
6.2 KiB
Vue

<template>
<u-navbar @click="click" placeholder class="chating_header">
<view @click="routeBack" class="u-nav-slot" slot="left">
<img
class="back_icon"
width="12"
height="20"
src="static/images/common_left_arrow.png"
alt=""
srcset=""
/>
</view>
<view class="u-nav-slot" slot="center">
<view class="chating_info" :class="{ chating_info_single: isSingle }">
<view
class="conversation_info"
:style="isSingle ? 'flex-direction: column; align-items: center;' : 'flex-direction: row; align-items: center; justify-content: center;'"
>
<view class="title" :style="isSingle ? 'text-align: center;' : ''">{{ storeCurrentConversation.showName }}</view>
<view v-if="isSingle && storeCurrentConversation.deptName" style="margin-top:6rpx; display: flex; justify-content: center;">
<text :style="{backgroundColor: storeCurrentConversation.color, color: '#fff', padding: '2px 10px', borderRadius: '10px', fontSize: '20rpx', display: 'inline-block', textAlign: 'center'}">{{ storeCurrentConversation.deptName }}</text>
</view>
<view v-if="!isSingle && !isNotify" class="sub_title" style="margin-left: 8rpx;">
{{ groupMemberCount }}
</view>
</view>
</view>
</view>
<view class="u-nav-slot" slot="right">
<view class="right_action">
<u-icon
@click="goSetting"
class="action_item"
name="more-dot-fill"
size="23"
color="#0C1C33"
>
</u-icon>
</view>
</view>
</u-navbar>
</template>
<script>
import { mapGetters } from "vuex";
import { SessionType } from "openim-uniapp-polyfill";
import MyAvatar from "@/components/MyAvatar/index.vue";
export default {
name: "ChatingHeader",
components: {
MyAvatar,
},
props: {
},
data() {
return {
showMoreMember: false,
joinLock: false,
};
},
computed: {
...mapGetters([
"storeCurrentConversation",
"storeCurrentGroup",
"storeCurrentMemberInGroup",
"storeSelfInfo",
]),
isSingle() {
return (
this.storeCurrentConversation.conversationType === SessionType.Single
);
},
isNotify() {
return (
this.storeCurrentConversation.conversationType ===
SessionType.Notification
);
},
groupMemberCount() {
return `(${this.storeCurrentGroup?.memberCount ?? 0})`;
},
canGoSetting() {
if (this.isSingle) {
return true;
}
return (
this.storeCurrentMemberInGroup.groupID ===
this.storeCurrentConversation.groupID
);
},
},
methods: {
click(e) {
this.$emit("click", e);
},
routeBack() {
uni.switchTab({
url: "/pages/conversation/conversationList/index",
});
},
goSetting() {
const url = this.isSingle
? "/pages/conversation/singleSettings/index"
: "/pages/conversation/groupSettings/index";
uni.navigateTo({
url,
});
},
},
};
</script>
<style lang="scss" scoped>
.chating_header {
border: 2rpx solid #e8eaef;
/deep/ .u-navbar__content__left {
padding: 0;
}
.back_icon {
padding: 24rpx;
margin-left: 20rpx;
}
.chating_info {
@include vCenterBox();
flex-direction: column;
&_single {
margin-bottom: 24rpx;
}
.conversation_info {
flex-direction: row;
justify-content: center;
@include vCenterBox();
.title {
@include nomalEllipsis();
max-width: 280rpx;
font-size: 14px;
font-weight: 500;
}
.sub_title {
margin-left: 8rpx;
}
}
.online_state {
@include vCenterBox();
flex-direction: row;
margin-top: 6rpx;
// position: absolute;
// top: 2px;
// left: 50%;
// transform: translateX(-50%);
font-size: 20rpx;
color: #999;
.dot {
background-color: #10cc64;
width: 12rpx;
height: 12rpx;
border-radius: 50%;
margin-right: 12rpx;
}
.online_str {
@include nomalEllipsis();
max-width: 280rpx;
}
}
}
/deep/ .u-navbar__content__right {
padding: 0;
}
.right_action {
@include vCenterBox();
flex-direction: row;
margin-right: 24rpx;
.action_item {
padding: 12rpx;
}
.u-icon {
margin-left: 12rpx;
}
}
}
.group_announcement_tab {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 80%;
position: absolute;
left: 6%;
// bottom: -44px;
margin-top: 40rpx;
padding: 14rpx 32rpx;
background-color: #f0f6ff;
border-radius: 12rpx;
.announcement_header {
@include vCenterBox();
width: 100%;
flex-direction: row;
justify-content: space-between;
margin-bottom: 16rpx;
&_left {
@include vCenterBox();
}
}
.announcement_content {
@include ellipsisWithLine(2);
margin: 0 12rpx;
font-size: 24rpx;
color: #617183;
}
image {
width: 16px;
height: 16px;
min-width: 16px;
}
}
.group_calling_tab {
position: absolute;
left: 0;
width: 80%;
margin-top: 12px;
margin-left: 5%;
padding: 24rpx;
background-color: #f4f9ff;
border-radius: 8rpx;
color: #5496eb;
font-size: 24rpx;
.base_row {
display: flex;
align-items: center;
image {
width: 10px;
height: 10px;
}
text {
margin-left: 16rpx;
}
.arrow {
width: 9px;
height: 6px;
position: absolute;
right: 24rpx;
}
}
.member_row {
display: flex;
// justify-content: space-between;
flex-wrap: wrap;
padding: 24rpx 28rpx;
margin-top: 24rpx;
background-color: #fff;
border-bottom: 1px solid rgba(151, 151, 151, 0.16);
border-top-left-radius: 8rpx;
border-top-right-radius: 8rpx;
.u-avatar {
margin-bottom: 16rpx;
&:not(:nth-child(6n)) {
margin-right: calc(6% / 2);
}
}
}
.action_row {
display: flex;
justify-content: center;
padding: 24rpx;
background-color: #fff;
font-size: 28rpx;
border-bottom-left-radius: 8rpx;
border-bottom-right-radius: 8rpx;
}
}
</style>