index.vue 1007 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view class="video-info" @click="toinfo">
  3. <image :src="item.image" mode="aspectFill"></image>
  4. <view class="name text_hide2">{{item.video_title}}</view>
  5. <view class="bottom">
  6. <text>{{item.like_count || 0}}喜欢· </text>
  7. <text>{{item.comment_count || 0}}评论</text>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props: {
  14. item: {
  15. typeof: Object,
  16. default: {}
  17. }
  18. },
  19. data() {
  20. return {
  21. }
  22. },
  23. methods: {
  24. toinfo() {
  25. uni.navigateTo({
  26. url: '/pageA/info-detail?id=' + this.item.id + '&type=video'
  27. })
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. .video-info {
  34. image {
  35. width: 272rpx;
  36. height: 148rpx;
  37. border-radius: 24rpx;
  38. margin: 0 20rpx 0 0;
  39. }
  40. .name {
  41. max-width: 272rpx;
  42. font-size: 24rpx;
  43. font-family: SFPro, SFPro;
  44. font-weight: 500;
  45. color: #333333;
  46. margin: 12rpx 0 16rpx;
  47. }
  48. .bottom {
  49. font-size: 22rpx;
  50. font-family: SFPro, SFPro;
  51. font-weight: 400;
  52. color: #666666;
  53. }
  54. }
  55. </style>