From dd32c29d7e9cb835890e6599bee130c0bfea0dee Mon Sep 17 00:00:00 2001 From: huxuejian Date: Fri, 3 Apr 2026 10:54:50 +0800 Subject: [PATCH] Update team-detail.vue --- pages/team/team-detail.vue | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/pages/team/team-detail.vue b/pages/team/team-detail.vue index b88979b..f850cc6 100644 --- a/pages/team/team-detail.vue +++ b/pages/team/team-detail.vue @@ -7,15 +7,15 @@ - {{ team.name }} - {{ corpName }} + {{ team.name }} + {{ corpName }} - + {{ team.teamTroduce }} - + - - + {{ i.anotherName }} @@ -46,9 +47,6 @@ 可加好友 - - 个人介绍: {{ i.memberTroduce || '暂无介绍' }} - @@ -69,7 +67,6 @@ const corpId = ref(''); const teamId = ref(''); const team = ref(null); const corpName = ref(''); -const showAllIntroduce = ref(false); const { memberJob, memberList: list } = useJob(); const memberList = computed(() => team.value && Array.isArray(team.value.memberList) ? team.value.memberList : []) @@ -161,11 +158,13 @@ page { .name-title { height: 64rpx; line-height: 64rpx; + font-size: 44rpx; } .corp-title { height: 44rpx; line-height: 44rpx; + font-size: 28rpx; } .text-blue { @@ -177,7 +176,8 @@ page { } .icon-role { - margin-bottom: 30rpx; + margin-top: 50rpx; + margin-bottom: 38rpx; width: 280rpx; height: 60rpx; } @@ -193,6 +193,18 @@ page { padding-bottom: 64rpx; } +.ablum--member { + width: 332rpx; +} + +.ablum--member:nth-child(2n) { + margin-left: 24rpx; +} + +.ablum--member:nth-child(n+3) { + margin-top: 30rpx; +} + .mt-5 { margin-top: 10rpx; }