bookCard.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <div class="wrap">
  3. <a
  4. :href="cardData.filepath"
  5. target="_blank">
  6. <div class="item-left">
  7. <el-image
  8. lazy
  9. :src="comImg"
  10. fit="cover"
  11. style="width: 100%; height: 100%"></el-image>
  12. </div>
  13. <div class="item-right">
  14. <p class="title">{{ cardData.name || cardData.title }}</p>
  15. <p class="date">Publish on {{ cardData.create_time | formatTime }}</p>
  16. </div>
  17. </a>
  18. </div>
  19. </template>
  20. <script>
  21. import dayjs from 'dayjs'
  22. export default {
  23. filters: {
  24. formatTime(val) {
  25. return dayjs(val).format('MMM D,YYYY')
  26. },
  27. },
  28. props: {
  29. cardData: {},
  30. },
  31. computed: {
  32. comImg() {
  33. return this.$utils.generateResizedImageUrl(this.cardData.img,400)
  34. },
  35. },
  36. methods: {
  37. beforeDataProcess(rawData) {
  38. return {
  39. name: rawData.name,
  40. id: rawData.value,
  41. }
  42. },
  43. },
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. .wrap {
  48. width: 460px;
  49. height: 232px;
  50. background: #f5f5f5;
  51. margin: 35px 20px 35px 0;
  52. cursor: pointer;
  53. position: relative;
  54. a {
  55. .item-left {
  56. position: absolute;
  57. left: 15px;
  58. transform: translate(0, -5%);
  59. width: 192px;
  60. height: 110%;
  61. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  62. background-color: #fff;
  63. }
  64. .item-right {
  65. position: absolute;
  66. top: 50%;
  67. transform: translate(0, -50%);
  68. padding-left: 250px;
  69. .title {
  70. font-size: 18px;
  71. font-weight: 600;
  72. color: #000000;
  73. margin-bottom: 10px;
  74. }
  75. .date {
  76. font-size: 14px;
  77. font-weight: 400;
  78. color: #4a596c;
  79. }
  80. }
  81. }
  82. }
  83. .wrap:nth-of-type(2n) {
  84. margin-right: 0;
  85. }
  86. </style>