|
@@ -1,16 +1,16 @@
|
|
<template>
|
|
<template>
|
|
<div :class="prefixCls">
|
|
<div :class="prefixCls">
|
|
- <Row :class="`${prefixCls}-top`">
|
|
|
|
- <Col :span="9" :class="`${prefixCls}-col`">
|
|
|
|
- <Row>
|
|
|
|
- <Col :span="8">
|
|
|
|
|
|
+ <a-row :class="`${prefixCls}-top`">
|
|
|
|
+ <a-col :span="9" :class="`${prefixCls}-col`">
|
|
|
|
+ <a-row>
|
|
|
|
+ <a-col :span="8">
|
|
<div :class="`${prefixCls}-top__avatar`">
|
|
<div :class="`${prefixCls}-top__avatar`">
|
|
<img width="70" :src="headerImg" />
|
|
<img width="70" :src="headerImg" />
|
|
<span>Serati Ma</span>
|
|
<span>Serati Ma</span>
|
|
<div>海纳百川,有容乃大</div>
|
|
<div>海纳百川,有容乃大</div>
|
|
</div>
|
|
</div>
|
|
- </Col>
|
|
|
|
- <Col :span="16">
|
|
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :span="16">
|
|
<div :class="`${prefixCls}-top__detail`">
|
|
<div :class="`${prefixCls}-top__detail`">
|
|
<template v-for="(detail, index) in details" :key="index">
|
|
<template v-for="(detail, index) in details" :key="index">
|
|
<p>
|
|
<p>
|
|
@@ -19,25 +19,25 @@
|
|
</p>
|
|
</p>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
- </Col>
|
|
|
|
- </Row>
|
|
|
|
- </Col>
|
|
|
|
- <Col :span="7" :class="`${prefixCls}-col`">
|
|
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :span="7" :class="`${prefixCls}-col`">
|
|
<CollapseContainer title="标签" :canExpan="false">
|
|
<CollapseContainer title="标签" :canExpan="false">
|
|
<template v-for="(tag, index) in tags" :key="index">
|
|
<template v-for="(tag, index) in tags" :key="index">
|
|
<Tag class="mb-2">{{ tag }}</Tag>
|
|
<Tag class="mb-2">{{ tag }}</Tag>
|
|
</template>
|
|
</template>
|
|
</CollapseContainer>
|
|
</CollapseContainer>
|
|
- </Col>
|
|
|
|
- <Col :span="8" :class="`${prefixCls}-col`">
|
|
|
|
|
|
+ </a-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>
|
|
- </Col>
|
|
|
|
- </Row>
|
|
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
<div :class="`${prefixCls}-bottom`">
|
|
<div :class="`${prefixCls}-bottom`">
|
|
<Tabs>
|
|
<Tabs>
|
|
<template v-for="item in achieveList" :key="item.key">
|
|
<template v-for="item in achieveList" :key="item.key">
|