gcxm.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <div class="item-gcxm">
  3. <h3 class="title-item">{{ title }}</h3>
  4. <p class="content-item">{{ description }}</p>
  5. <div>
  6. <ul class="info-tag">
  7. <li v-for="(tag,index) of tags" :key='index'>
  8. {{ tag.text }}
  9. </li>
  10. </ul>
  11. <span class="time"> {{ updateTime }} </span>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. export default{
  17. data(){
  18. return {
  19. title: 'title---项目名称占位,项目名称占位占位占位占位。',
  20. description: 'content---项目概况,项目详情,1~3行预览。项目概况,项目详情,1~3行预览。项目概况,项目详情,1~3行预览。项目概况,项目详情,1~3行预览。',
  21. updateTime:'2312132',
  22. tags: [
  23. { text: '2000万' },
  24. { text: '行业分类' }
  25. ]
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. .item-gcxm{
  32. margin-bottom: 10px;
  33. }
  34. .title-item{
  35. font-size: 18px;
  36. color: #202020;
  37. font-weight: bold;
  38. margin-bottom: 15px;
  39. }
  40. .content-item{
  41. margin-bottom: 10px;
  42. }
  43. .info-tag li{
  44. font-size: 12px;
  45. display: inline-block;
  46. padding: 0 8px;
  47. margin-right: 10px;
  48. background-color: #f2f2fa;
  49. height: 20px;
  50. line-height: 20px;
  51. border-radius: 4px;
  52. }
  53. .content-item{
  54. overflow: hidden;
  55. }
  56. </style>