CardList.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <div class="card-list" ref="content">
  3. <a-list
  4. :grid="{gutter: 24, lg: 3, md: 2, sm: 1, xs: 1}"
  5. :dataSource="dataSource"
  6. >
  7. <a-list-item slot="renderItem" slot-scope="item, index">
  8. <template v-if="item === null">
  9. <a-button class="new-btn" type="dashed">
  10. <a-icon type="plus"/>
  11. 新增产品
  12. </a-button>
  13. </template>
  14. <template v-else>
  15. <a-card :hoverable="true">
  16. <a-card-meta>
  17. <div style="margin-bottom: 3px" slot="title">{{ item.title }}</div>
  18. <a-avatar class="card-avatar" slot="avatar" :src="item.avatar" size="large"/>
  19. <div class="meta-content" slot="description">{{ item.content }}</div>
  20. </a-card-meta>
  21. <template class="ant-card-actions" slot="actions">
  22. <a>操作一</a>
  23. <a>操作二</a>
  24. </template>
  25. </a-card>
  26. </template>
  27. </a-list-item>
  28. </a-list>
  29. </div>
  30. </template>
  31. <script>
  32. const dataSource = []
  33. dataSource.push(null)
  34. for (let i = 0; i < 11; i++) {
  35. dataSource.push({
  36. title: 'Alipay',
  37. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png',
  38. content: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的组件会被抽离成一套标准规范。'
  39. })
  40. }
  41. export default {
  42. name: 'CardList',
  43. data () {
  44. return {
  45. description: '段落示意:蚂蚁金服务设计平台 ant.design,用最小的工作量,无缝接入蚂蚁金服生态, 提供跨越设计与开发的体验解决方案。',
  46. linkList: [
  47. { icon: 'rocket', href: '#', title: '快速开始' },
  48. { icon: 'info-circle-o', href: '#', title: '产品简介' },
  49. { icon: 'file-text', href: '#', title: '产品文档' }
  50. ],
  51. extraImage: 'https://gw.alipayobjects.com/zos/rmsportal/RzwpdLnhmvDJToTdfDPe.png',
  52. dataSource
  53. }
  54. }
  55. }
  56. </script>
  57. <style lang="scss" scoped>
  58. .card-avatar {
  59. width: 48px;
  60. height: 48px;
  61. border-radius: 48px;
  62. }
  63. .ant-card-actions {
  64. background: #f7f9fa;
  65. li {
  66. float: left;
  67. text-align: center;
  68. margin: 12px 0;
  69. color: rgba(0, 0, 0, 0.45);
  70. width: 50%;
  71. &:not(:last-child) {
  72. border-right: 1px solid #e8e8e8;
  73. }
  74. a {
  75. color: rgba(0, 0, 0, .45);
  76. line-height: 22px;
  77. display: inline-block;
  78. width: 100%;
  79. &:hover {
  80. color: #1890ff;
  81. }
  82. }
  83. }
  84. }
  85. .new-btn {
  86. background-color: #fff;
  87. border-radius: 2px;
  88. width: 100%;
  89. height: 188px;
  90. }
  91. .meta-content {
  92. position: relative;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. display: -webkit-box;
  96. height: 64px;
  97. -webkit-line-clamp: 3;
  98. -webkit-box-orient: vertical;
  99. }
  100. </style>