main.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <!--
  2. - Copyright (C) 2018-2019
  3. - All rights reserved, Designed By www.joolun.com
  4. 【微信消息 - 图文】
  5. 非繁源码:
  6. ① 代码优化,补充注释,提升阅读性
  7. -->
  8. <template>
  9. <div class="news-home">
  10. <div v-for="(article, index) in articles" :key="index" class="news-div">
  11. <!-- 头条 -->
  12. <a v-if="index === 0" :href="article.url" target="_blank">
  13. <div class="news-main">
  14. <div class="news-content">
  15. <el-image
  16. :src="article.picUrl"
  17. class="material-img"
  18. style="width: 100%; height: 120px"
  19. />
  20. <div class="news-content-title">
  21. <span>{{ article.title }}</span>
  22. </div>
  23. </div>
  24. </div>
  25. </a>
  26. <!-- 二条/三条等等 -->
  27. <a v-else :href="article.url" target="_blank">
  28. <div class="news-main-item">
  29. <div class="news-content-item">
  30. <div class="news-content-item-title">{{ article.title }}</div>
  31. <div class="news-content-item-img">
  32. <img :src="article.picUrl" class="material-img" height="100%" />
  33. </div>
  34. </div>
  35. </div>
  36. </a>
  37. </div>
  38. </div>
  39. </template>
  40. <script lang="ts" setup>
  41. defineOptions({ name: 'WxNews' })
  42. const props = withDefaults(
  43. defineProps<{
  44. articles: any[] | null
  45. }>(),
  46. {
  47. articles: null
  48. }
  49. )
  50. defineExpose({
  51. articles: props.articles
  52. })
  53. </script>
  54. <style lang="scss" scoped>
  55. .news-home {
  56. width: 100%;
  57. margin: auto;
  58. background-color: #fff;
  59. }
  60. .news-main {
  61. width: 100%;
  62. margin: auto;
  63. }
  64. .news-content {
  65. position: relative;
  66. width: 100%;
  67. background-color: #acadae;
  68. }
  69. .news-content-title {
  70. position: absolute;
  71. bottom: 0;
  72. left: 0;
  73. display: inline-block;
  74. width: 98%;
  75. padding: 1%;
  76. font-size: 12px;
  77. color: #fff;
  78. white-space: normal;
  79. background-color: black;
  80. opacity: 0.65;
  81. box-sizing: unset !important;
  82. }
  83. .news-main-item {
  84. padding: 5px 0;
  85. background-color: #fff;
  86. border-top: 1px solid #eaeaea;
  87. }
  88. .news-content-item {
  89. position: relative;
  90. }
  91. .news-content-item-title {
  92. display: inline-block;
  93. width: 70%;
  94. margin-left: 1%;
  95. font-size: 10px;
  96. white-space: normal;
  97. }
  98. .news-content-item-img {
  99. display: inline-block;
  100. width: 25%;
  101. margin-right: 1%;
  102. background-color: #acadae;
  103. }
  104. .material-img {
  105. width: 100%;
  106. }
  107. </style>