You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
280 lines
6.5 KiB
Vue
280 lines
6.5 KiB
Vue
<template>
|
|
<div class="contact-list-container g_bg_f_5">
|
|
<!-- <div
|
|
class="dropdown-mark"
|
|
v-if="addDropdownVisible"
|
|
@touchstart="hideAddDropdown"
|
|
/> -->
|
|
<div class="navigation-bar">
|
|
<div class="logo-box" v-if="false">
|
|
<div>{{ t('contactText') }}</div>
|
|
</div>
|
|
<div :class="buttonClass">
|
|
<image
|
|
src="https://yx-web-nosdn.netease.im/common/9ae07d276ba2833b678a4077960e2d1e/Group 1899.png"
|
|
class="button-icon"
|
|
@tap="showAddDropdown"
|
|
style="width: 40px !important;height: 40px !important;border-radius: 50%;"
|
|
/>
|
|
<div v-if="addDropdownVisible" class="dropdown-container">
|
|
<div class="add-menu-list">
|
|
<div class="add-menu-item" @tap="onDropdownClick('addFriend')">
|
|
<div :style="{ marginRight: '5px' }">
|
|
<Icon type="icon-tianjiahaoyou" />
|
|
</div>
|
|
{{ t('addFriendText') }}
|
|
</div>
|
|
<div class="add-menu-item" @tap="onDropdownClick('createGroup')" v-if="false">
|
|
<div :style="{ marginRight: '5px' }">
|
|
<Icon type="icon-chuangjianqunzu" />
|
|
</div>
|
|
{{ t('createTeamText') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="contact-list">
|
|
<div class="contact-item-content g_bg_f_5">
|
|
<div class="contact-item" @click="handleValidMsgClick">
|
|
<Icon
|
|
iconClassName="contact-item-icon contact-valid-icon"
|
|
:size="42"
|
|
type="icon-yanzheng"
|
|
color="#fff"
|
|
/>
|
|
<Badge
|
|
:num="unreadSysMsgCount"
|
|
:style="{ position: 'absolute', top: '5px', left: '45px' }"
|
|
/>
|
|
<span class="contact-item-title"> {{ t('validMsgText') }}</span>
|
|
<Icon iconClassName="more-icon" color="#999" type="icon-jiantou" />
|
|
</div>
|
|
<div class="contact-item" @click="handleBlacklistClick">
|
|
<Icon
|
|
iconClassName="contact-item-icon contact-blacklist-icon"
|
|
:size="42"
|
|
type="icon-lahei2"
|
|
color="#fff"
|
|
/>
|
|
<span class="contact-item-title"> {{ t('blacklistText') }}</span>
|
|
<Icon iconClassName="more-icon" color="#999" type="icon-jiantou" />
|
|
</div>
|
|
<!-- <div class="contact-item" @click="handleGroupContactClick">
|
|
<Icon
|
|
iconClassName="contact-item-icon contact-group-icon"
|
|
:size="42"
|
|
type="icon-team2"
|
|
color="#fff"
|
|
/>
|
|
<span class="contact-item-title"> {{ t('teamMenuText') }}</span>
|
|
<Icon iconClassName="more-icon" color="#999" type="icon-jiantou" />
|
|
</div> -->
|
|
</div>
|
|
<FriendList />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Icon from '../../../components/Icon.vue'
|
|
import Badge from '../../../components/Badge.vue'
|
|
import FriendList from './friend-list.vue'
|
|
import { onUnmounted, ref } from '../../../utils/transformVue'
|
|
import { onHide } from '@dcloudio/uni-app'
|
|
import { customNavigateTo } from '../../../utils/customNavigate'
|
|
import { autorun } from 'mobx'
|
|
import { t } from '../../../utils/i18n'
|
|
|
|
const addDropdownVisible = ref(false)
|
|
const unreadSysMsgCount = ref(0)
|
|
|
|
const uninstallUnreadWatch = autorun(() => {
|
|
unreadSysMsgCount.value =
|
|
uni.$UIKitStore.sysMsgStore.getTotalUnreadMsgsCount()
|
|
})
|
|
|
|
const onDropdownClick = (urlType: 'addFriend' | 'createGroup') => {
|
|
const urlMap = {
|
|
// 添加好友
|
|
addFriend: '/pages/Friend/add-friend/index',
|
|
// 创建群聊
|
|
createGroup: '/pages/Group/group-create/index',
|
|
}
|
|
addDropdownVisible.value = false
|
|
customNavigateTo({
|
|
url: urlMap[urlType],
|
|
})
|
|
}
|
|
|
|
const handleValidMsgClick = () => {
|
|
uni.$UIKitStore.sysMsgStore.setAllApplyMsgRead()
|
|
customNavigateTo({
|
|
url: `/pages/Contact/contact-list/valid-list`,
|
|
})
|
|
}
|
|
|
|
const handleBlacklistClick = () => {
|
|
customNavigateTo({
|
|
url: `/pages/Contact/contact-list/black-list`,
|
|
})
|
|
}
|
|
|
|
const handleGroupContactClick = () => {
|
|
customNavigateTo({
|
|
url: `/pages/Contact/contact-list/group-list`,
|
|
})
|
|
}
|
|
|
|
const showAddDropdown = () => {
|
|
addDropdownVisible.value = true
|
|
}
|
|
|
|
const hideAddDropdown = () => {
|
|
addDropdownVisible.value = false
|
|
}
|
|
|
|
let buttonClass = 'button-box'
|
|
// #ifdef MP
|
|
buttonClass = 'button-box-mp'
|
|
// #endif
|
|
|
|
onUnmounted(() => {
|
|
uninstallUnreadWatch()
|
|
})
|
|
|
|
onHide(() => {
|
|
addDropdownVisible.value = false
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../styles/common.scss';
|
|
|
|
page {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.contact-list-container {
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.navigation-bar {
|
|
// height: 60px;
|
|
border-bottom: 1rpx solid #e9eff5;
|
|
padding: 0 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
// padding-top: var(--status-bar-height);
|
|
|
|
.logo-box {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
.contact-list {
|
|
height: calc(100% - 60px - var(--status-bar-height));
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
.contact-item-content {
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.contact-item {
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 20px;
|
|
background: #fff;
|
|
position: relative;
|
|
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid #f5f8fc;
|
|
}
|
|
|
|
.contact-item-icon {
|
|
height: 42px;
|
|
width: 42px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
line-height: 39px;
|
|
font-size: 20px;
|
|
color: #fff;
|
|
}
|
|
|
|
.contact-valid-icon {
|
|
background-color: #60cfa7;
|
|
}
|
|
|
|
.contact-blacklist-icon {
|
|
background-color: #53c3f4;
|
|
}
|
|
|
|
.contact-group-icon {
|
|
background-color: #be65d9;
|
|
}
|
|
|
|
.contact-item-title {
|
|
margin-left: 12px;
|
|
font-size: 16px;
|
|
color: #333333;
|
|
flex: 1;
|
|
}
|
|
|
|
.more-icon {
|
|
margin: 0 16px;
|
|
color: #999999;
|
|
}
|
|
}
|
|
}
|
|
.dropdown-mark {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.dropdown-container {
|
|
position: absolute;
|
|
top: -70px;
|
|
right: 30px;
|
|
min-width: 122px;
|
|
min-height: 40px;
|
|
background-color: #fff;
|
|
border: 1px solid #e6e6e6;
|
|
box-shadow: 0px 4px 7px rgba(133, 136, 140, 0.25);
|
|
border-radius: 8px;
|
|
z-index: 99;
|
|
}
|
|
|
|
.add-menu-list {
|
|
padding: 15px 10px;
|
|
|
|
.add-menu-item {
|
|
white-space: nowrap;
|
|
font-size: 16px;
|
|
padding-left: 5px;
|
|
margin-bottom: 10px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|