You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.0 KiB
64 lines
2.0 KiB
7 years ago
|
<template>
|
||
|
<div>
|
||
7 years ago
|
<search-form />
|
||
7 years ago
|
<a-list
|
||
|
:grid='{ gutter: 24, xl: 4, lg: 3, md: 3, sm: 2, xs: 1 }'
|
||
|
>
|
||
|
<a-list-item :key="n" v-for="n in 8" style="padding: 0 12px">
|
||
|
<a-card>
|
||
|
<img slot="cover" src="https://gw.alipayobjects.com/zos/rmsportal/iZBVOIhGJiAnhplqjvZW.png" height="154"/>
|
||
|
<a-card-meta title="Ant Design">
|
||
|
<div slot="description">
|
||
|
城镇中有那么多的酒馆,她却偏偏走进了我的酒馆
|
||
|
</div>
|
||
|
</a-card-meta>
|
||
|
<div class="content">
|
||
|
<span>4小时前</span>
|
||
7 years ago
|
<avatar-list>
|
||
|
<avatar-list-item size="small" tips="曲丽丽" src="https://gw.alipayobjects.com/zos/rmsportal/ZiESqWwCXBRQoaPONSJe.png" />
|
||
|
<avatar-list-item size="small" tips="周星星" src="https://gw.alipayobjects.com/zos/rmsportal/tBOxZPlITHqwlGjsJWaF.png" />
|
||
|
<avatar-list-item size="small" tips="董娜娜" src="https://gw.alipayobjects.com/zos/rmsportal/sBxjgqiuHMGRkIjqlQCd.png" />
|
||
|
</avatar-list>
|
||
7 years ago
|
</div>
|
||
|
</a-card>
|
||
|
</a-list-item>
|
||
|
</a-list>
|
||
7 years ago
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
7 years ago
|
import ACard from 'ant-design-vue/es/card/Card'
|
||
7 years ago
|
import SearchForm from './SearchForm'
|
||
7 years ago
|
import AList from 'ant-design-vue/es/list'
|
||
|
import AListItem from 'ant-design-vue/es/list/Item'
|
||
|
import ACardMeta from 'ant-design-vue/es/card/Meta'
|
||
|
import AAvatar from 'ant-design-vue/es/avatar/Avatar'
|
||
7 years ago
|
import AvatarList from '../../../components/tool/AvatarList'
|
||
7 years ago
|
import ATooltip from 'ant-design-vue/es/tooltip/Tooltip'
|
||
7 years ago
|
|
||
|
const AvatarListItem = AvatarList.Item
|
||
|
|
||
7 years ago
|
export default {
|
||
|
name: 'ProjectList',
|
||
7 years ago
|
components: {ATooltip, AvatarListItem, AvatarList, AAvatar, ACardMeta, AListItem, AList, SearchForm, ACard}
|
||
7 years ago
|
}
|
||
|
</script>
|
||
|
|
||
7 years ago
|
<style lang="less" scoped>
|
||
|
.content{
|
||
|
display: flex;
|
||
|
margin-top: 16px;
|
||
|
margin-bottom: -4px;
|
||
|
line-height: 20px;
|
||
|
height: 20px;
|
||
|
& > span {
|
||
|
color: rgba(0,0,0,.45);
|
||
|
flex: 1;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
.avatarList {
|
||
|
flex: 0 1 auto;
|
||
|
}
|
||
|
}
|
||
7 years ago
|
</style>
|