|
|
@ -5,7 +5,7 @@ |
|
|
|
<a-row> |
|
|
|
<a-row> |
|
|
|
<a-col :span="8"> |
|
|
|
<a-col :span="8"> |
|
|
|
<div :class="`${prefixCls}-top__avatar`"> |
|
|
|
<div :class="`${prefixCls}-top__avatar`"> |
|
|
|
<img width="70" :src="avatar" /> |
|
|
|
<img width="70" :src="avatar"> |
|
|
|
<span>Vben</span> |
|
|
|
<span>Vben</span> |
|
|
|
<div>海纳百川,有容乃大</div> |
|
|
|
<div>海纳百川,有容乃大</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -14,7 +14,7 @@ |
|
|
|
<div :class="`${prefixCls}-top__detail`"> |
|
|
|
<div :class="`${prefixCls}-top__detail`"> |
|
|
|
<template v-for="detail in details" :key="detail.title"> |
|
|
|
<template v-for="detail in details" :key="detail.title"> |
|
|
|
<p> |
|
|
|
<p> |
|
|
|
<Icon :icon="detail.icon" /> |
|
|
|
<Icon :icon="detail.icon"/> |
|
|
|
{{ detail.title }} |
|
|
|
{{ detail.title }} |
|
|
|
</p> |
|
|
|
</p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
@ -34,7 +34,7 @@ |
|
|
|
<a-col :span="8" :class="`${prefixCls}-col`"> |
|
|
|
<a-col :span="8" :class="`${prefixCls}-col`"> |
|
|
|
<CollapseContainer :class="`${prefixCls}-top__team`" title="团队" :canExpan="false"> |
|
|
|
<CollapseContainer :class="`${prefixCls}-top__team`" title="团队" :canExpan="false"> |
|
|
|
<div v-for="(team, index) in teams" :key="index" :class="`${prefixCls}-top__team-item`"> |
|
|
|
<div v-for="(team, index) in teams" :key="index" :class="`${prefixCls}-top__team-item`"> |
|
|
|
<Icon :icon="team.icon" :color="team.color" /> |
|
|
|
<Icon :icon="team.icon" :color="team.color"/> |
|
|
|
<span>{{ team.title }}</span> |
|
|
|
<span>{{ team.title }}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</CollapseContainer> |
|
|
|
</CollapseContainer> |
|
|
@ -44,7 +44,7 @@ |
|
|
|
<Tabs> |
|
|
|
<Tabs> |
|
|
|
<template v-for="item in achieveList" :key="item.key"> |
|
|
|
<template v-for="item in achieveList" :key="item.key"> |
|
|
|
<TabPane :tab="item.name"> |
|
|
|
<TabPane :tab="item.name"> |
|
|
|
<component :is="item.component" /> |
|
|
|
<component :is="item.component"/> |
|
|
|
</TabPane> |
|
|
|
</TabPane> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</Tabs> |
|
|
|
</Tabs> |
|
|
|