ykt-team-wxapp/pages/home/team-head.vue
2026-02-03 17:02:39 +08:00

287 lines
6.2 KiB
Vue

<template>
<view>
<view :style="{ height: statusBarHeight }" class="status-bar"></view>
<view class="relative z-3 flex items-center px-15 py-12 header-bar">
<view class="flex-shrink-0 mr-5">
<group-avatar
:size="120"
:avatarList="currentTeam ? currentTeam.avatarList : []"
/>
</view>
<view class="w-0 flex-grow">
<view class="flex items-center mb-10">
<view class="team-name flex-shrink-0">{{ team.name }}</view>
<view
v-if="teams.length > 1"
class="flex-shrink-0 flex items-center switch-btn ml-10"
@click="showDropDown = true"
>
<image
class="switch-icon"
src="/static/home/switch-team.png"
mode="aspectFit"
></image>
</view>
</view>
<view v-if="currentTeam" class="text-base text-white truncate">{{
currentTeam.corpName
}}</view>
</view>
<view
v-if="menuButtonInfo && menuButtonInfo.width > 0"
class="flex-shrink-0"
:style="{
width: menuButtonInfo.width + 'px',
height: menuButtonInfo.height + 'px',
}"
>
</view>
</view>
<view class="relative">
<view v-if="showDropDown" class="team-dropdown py-12 bg-white shadow-lg">
<scroll-view scroll-y="true" style="max-height: 50vh">
<view class="px-15">
<view
v-for="item in teams"
:key="item.teamId"
class="mb-10 p-10 flex items-center bg-gray rounded-sm"
@click="select(item)"
>
<view class="flex-shrink-0 mr-5 rounded-circle">
<group-avatar :size="96" :avatarList="item.avatarList" />
</view>
<view class="w-0 flex-grow mr-5">
<view class="mb-5 text-lg font-semibold text-dark">{{
item.name
}}</view>
<view class="text-base text-gray leading-normal">{{
item.corpName
}}</view>
</view>
<view class="flex">
<image
class="check-icon"
:src="
team && team.teamId === item.teamId
? '/static/form/checked.svg'
: '/static/form/unchecked.svg'
"
>
</image>
</view>
</view>
</view>
</scroll-view>
</view>
</view>
<view v-if="team.teamTroduce" class="team-introduce-wrapper">
<view class="team-introduce flex items-center">
<!-- 顶部小三角形 -->
<view class="triangle-wrapper">
<view class="team-triangle"></view>
</view>
<image
class="laba-icon flex-shrink-0"
src="/static/home/speaker-intro.png"
mode="aspectFit"
></image>
<view class="introduce-text flex-grow line-clamp-2">{{
team.teamTroduce
}}</view>
</view>
</view>
</view>
<view v-if="showDropDown" class="mask" @click="showDropDown = false"></view>
</template>
<script setup>
import { computed, ref, onMounted, watch } from "vue";
import groupAvatar from "@/components/group-avatar.vue";
const statusBarHeight = ref("50px");
const menuButtonInfo = ref(null);
const showDropDown = ref(false);
const emits = defineEmits(["changeTeam"]);
const props = defineProps({
team: {
type: Object,
default: () => ({}),
},
teams: {
type: Array,
default: () => [],
},
});
const currentTeam = computed(() =>
props.teams.find((i) => props.team && i.teamId === props.team.teamId)
);
function select(team) {
emits("changeTeam", team);
showDropDown.value = false;
}
watch(
() => props.teams,
(teams) => {
if (
teams.length &&
!(
currentTeam.value &&
teams.some((i) => i.teamId === currentTeam.value.teamId)
)
) {
emits("changeTeam", teams[0]);
}
}
);
onMounted(() => {
const win = uni.getWindowInfo();
if (win && win.statusBarHeight > 0) {
statusBarHeight.value = win.statusBarHeight + "px";
}
menuButtonInfo.value = uni.getMenuButtonBoundingClientRect();
});
</script>
<style scoped>
.status-bar {
background: transparent;
}
.header-bar {
background: transparent;
}
.laba-icon {
width: 48rpx;
height: 48rpx;
margin-left: 12rpx;
margin-right: 12rpx;
}
.team-name {
color: #ffffff;
font-size: 36rpx;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.switch-icon {
width: 40rpx;
height: 40rpx;
}
.switch-btn {
padding: 4rpx;
}
.ml-10 {
margin-left: 12rpx;
}
.team-introduce-wrapper {
padding: 0 30rpx;
margin-top: 20rpx;
margin-bottom: 30rpx;
position: relative;
z-index: 2;
}
.team-introduce {
width: 690rpx;
min-height: 111rpx;
box-sizing: border-box;
background: linear-gradient(
186deg,
rgba(255, 255, 255, 0.4) 13.34%,
rgba(255, 255, 255, 0.6) 99.17%
);
border-radius: 16rpx;
padding: 20rpx 20rpx 20rpx 0;
position: relative;
overflow: visible;
}
.triangle-wrapper {
position: absolute;
top: -12rpx;
left: 60rpx;
width: 24rpx;
height: 12rpx;
overflow: hidden;
z-index: 10;
transform: translateX(-50%);
}
.team-triangle {
position: absolute;
left: 50%;
bottom: -10rpx;
width: 16rpx;
height: 16rpx;
background: linear-gradient(
186deg,
rgba(255, 255, 255, 0.4) 13.34%,
rgba(255, 255, 255, 0.6) 99.17%
);
transform: translateX(-50%) rotate(45deg);
}
.introduce-text {
max-width: 594rpx;
color: #000000;
font-size: 24rpx;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.line-clamp-2 {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-clamp: 2;
overflow: hidden;
}
.leading-relaxed {
line-height: 1.6;
}
.check-icon {
width: 40rpx;
height: 40rpx;
}
.mask {
position: fixed;
z-index: 2;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
}
.z-3 {
z-index: 3;
}
.team-dropdown {
position: absolute;
left: 0;
right: 0;
top: 0;
z-index: 3;
border-bottom-left-radius: 16rpx;
border-bottom-right-radius: 16rpx;
}
.rounded-circle {
border-radius: 50%;
}
</style>