news-module.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <view class="news_module vflex">
  3. <view class="news_title">
  4. {{title}}
  5. </view>
  6. <view v-if="imgs.length > 0" class="imgList hflex acenter jbetween">
  7. <block v-for="(item,index) in imgs" :key="index">
  8. <image :src="item" mode="widthFix" style="width: 230rpx"></image>
  9. </block>
  10. </view>
  11. <view v-if="video !== ''" class="imgList">
  12. <video :src="video" controls></video>o
  13. </view>
  14. <view class="hflex acenter bottom">
  15. <view class="bottom_text">{{type}}</view>
  16. <view class="bottom_text2">{{client}}</view>
  17. <view class="bottom_text2">{{comment}}评论</view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. name:"news-module",
  24. props: {
  25. title: {
  26. type: String,
  27. value: ''
  28. },
  29. imgs: {
  30. type: Array,
  31. value: []
  32. },
  33. video: {
  34. type: String,
  35. value: ''
  36. },
  37. type: {
  38. type: String,
  39. value: ''
  40. },
  41. client: {
  42. type: String,
  43. value: ''
  44. },
  45. comment: {
  46. type: Number,
  47. value: 0
  48. }
  49. },
  50. data() {
  51. return {
  52. };
  53. }
  54. }
  55. </script>
  56. <style lang="scss">
  57. .news_module {
  58. width: 100%;
  59. padding-bottom: 20rpx;
  60. border-bottom: 1rpx solid #f3f3f3;
  61. .news_title {
  62. font-size: 36rpx;
  63. color: #333;
  64. line-height: 50rpx;
  65. }
  66. .imgList {
  67. margin: 16rpx 0;
  68. }
  69. .bottom {
  70. .bottom_text {
  71. font-size: 24rpx;
  72. color: #3261FF;
  73. }
  74. .bottom_text2 {
  75. color: #999999;
  76. font-size: 24rpx;
  77. margin-left: 20rpx;
  78. }
  79. }
  80. }
  81. </style>