119 lines
2.6 KiB
Vue
119 lines
2.6 KiB
Vue
|
|
<script setup>
|
||
|
|
const router = useRoute('pages-user-profile-tab')
|
||
|
|
const teamData = ref([])
|
||
|
|
|
||
|
|
const fetchTeamData = async () => {
|
||
|
|
if (router.params.tab === 'teams') {
|
||
|
|
const data = await $api('/pages/profile', { query: { tab: router.params.tab } }).catch(err => console.log(err))
|
||
|
|
|
||
|
|
teamData.value = data
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
watch(router, fetchTeamData, { immediate: true })
|
||
|
|
|
||
|
|
const moreList = [
|
||
|
|
{
|
||
|
|
title: 'Rename Project',
|
||
|
|
value: 'Rename Project',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'View Details',
|
||
|
|
value: 'View Details',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Add to favorites',
|
||
|
|
value: 'Add to favorites',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
type: 'divider',
|
||
|
|
class: 'my-2',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Leave Project',
|
||
|
|
value: 'Leave Project',
|
||
|
|
class: 'text-error',
|
||
|
|
},
|
||
|
|
]
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<VRow v-if="teamData">
|
||
|
|
<VCol
|
||
|
|
v-for="team in teamData"
|
||
|
|
:key="team.title"
|
||
|
|
cols="12"
|
||
|
|
md="6"
|
||
|
|
lg="4"
|
||
|
|
>
|
||
|
|
<VCard>
|
||
|
|
<VCardItem
|
||
|
|
class="pb-4"
|
||
|
|
:title="team.title"
|
||
|
|
>
|
||
|
|
<template #prepend>
|
||
|
|
<VAvatar
|
||
|
|
size="38"
|
||
|
|
:image="team?.avatar"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
<template #append>
|
||
|
|
<div>
|
||
|
|
<IconBtn>
|
||
|
|
<VIcon
|
||
|
|
size="24"
|
||
|
|
icon="tabler-star"
|
||
|
|
class="text-disabled"
|
||
|
|
/>
|
||
|
|
</IconBtn>
|
||
|
|
<MoreBtn
|
||
|
|
:menu-list="moreList"
|
||
|
|
item-props
|
||
|
|
density="comfortable"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</VCardItem>
|
||
|
|
|
||
|
|
<VCardText class="pb-4">
|
||
|
|
<span class="text-base">{{ team.description }}</span>
|
||
|
|
</VCardText>
|
||
|
|
|
||
|
|
<VCardText class="d-flex align-center">
|
||
|
|
<div class="v-avatar-group">
|
||
|
|
<VAvatar
|
||
|
|
v-for="data in team.avatarGroup"
|
||
|
|
:key="data.name"
|
||
|
|
size="32"
|
||
|
|
>
|
||
|
|
<VImg :src="data.avatar" />
|
||
|
|
|
||
|
|
<VTooltip
|
||
|
|
activator="parent"
|
||
|
|
location="top"
|
||
|
|
>
|
||
|
|
{{ data.name }}
|
||
|
|
</VTooltip>
|
||
|
|
</VAvatar>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<VSpacer />
|
||
|
|
|
||
|
|
<div class="d-flex align-center gap-2">
|
||
|
|
<VChip
|
||
|
|
v-for="data in team.chips"
|
||
|
|
:key="data.title"
|
||
|
|
label
|
||
|
|
:color="data.color"
|
||
|
|
size="small"
|
||
|
|
class="font-weight-medium"
|
||
|
|
>
|
||
|
|
{{ data.title }}
|
||
|
|
</VChip>
|
||
|
|
</div>
|
||
|
|
</VCardText>
|
||
|
|
</VCard>
|
||
|
|
</VCol>
|
||
|
|
</VRow>
|
||
|
|
</template>
|