RowCard.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <a :href="data.link" target="_target">
  3. <figure class="card">
  4. <div class="img" :style="{backgroundImage: 'url(' + data.image + ')'}"></div>
  5. <figcaption class="card-title">
  6. {{data.title}}
  7. </figcaption>
  8. <figcaption class="card-info">
  9. <p>{{data.update_time | setTime}}</p>
  10. <p>{{data.description}}</p>
  11. </figcaption>
  12. </figure>
  13. </a>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. data: {},
  19. },
  20. filters:{
  21. setTime(val){
  22. let tempArr=val.split(' ')
  23. let timeStr=tempArr[0]
  24. let timeArr=timeStr.split('-')
  25. return `${timeArr[2]}-${timeArr[1]}-${timeArr[0]}`
  26. }
  27. }
  28. };
  29. </script>
  30. <style lang="scss" scoped>
  31. .card{
  32. border: 1px sold rgba(0, 0, 0, 0.05);
  33. box-shadow: 0 0 8px rgba(0,0,0, 0.05);
  34. padding:20px;
  35. display: flex;
  36. margin-bottom:15px;
  37. cursor: pointer;
  38. transition: all 0.2s ease-out 0s;
  39. &:hover {
  40. transform: translate3d(0px, -5px, 1px);
  41. box-shadow: 0 0 8px rgba(0,0,0, 0.25);
  42. .card-title{
  43. color:#006DC9;
  44. }
  45. p{
  46. &:nth-child(1){
  47. color: #006DC9;
  48. }
  49. }
  50. }
  51. .img{
  52. box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1);
  53. width: 140px;
  54. height: 160px;
  55. background-size: cover;
  56. background-repeat: no-repeat;
  57. background-position: center;
  58. }
  59. .card-title{
  60. flex:1;
  61. display: flex;
  62. align-items: center;
  63. font-size: 32px;
  64. margin-left:26px;
  65. }
  66. .card-info{
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: flex-end;
  70. p{
  71. &:nth-child(1){
  72. text-align: right;
  73. margin-bottom:16px;
  74. }
  75. &:nth-child(2){
  76. color: #D16C61;
  77. }
  78. }
  79. }
  80. }
  81. </style>