洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.7 KiB

  1. <template>
  2. <view class="box">
  3. <view class="top_row">
  4. <view class="avatar">
  5. <image :src="item.photo" mode=""></image>
  6. </view>
  7. <view class="textInfo">
  8. <view class="name oneRowText">{{ item.name}}</view>
  9. <view class="starBox">
  10. <view class="num">{{ item.score?item.score.toFixed(1):'无' }}</view>
  11. </view>
  12. </view>
  13. <view class="date">{{ $u.date(item.createTime ,'yyyy/mm/dd' ) }}</view>
  14. </view>
  15. <view class="text">{{ item.description }}</view>
  16. <view class="imgBox" v-if="item.images&&item.images.length">
  17. <u-album :urls="item.images" :multipleSize="'160rpx'"></u-album>
  18. </view>
  19. <view class="vdo" v-if="item.videoUrl">
  20. <video :src="item.videoUrl" objectFit="fill"></video>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. props: ['item']
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .top_row {
  31. display: flex;
  32. align-items: center;
  33. margin-bottom: 24rpx;
  34. .avatar {
  35. width: 60rpx;
  36. height: 60rpx;
  37. overflow: hidden;
  38. border-radius: 50%;
  39. background: #f6f6f6;
  40. flex-shrink: 0;
  41. }
  42. .textInfo {
  43. flex: 1;
  44. width: 0;
  45. .name {
  46. font-size: 26rpx;
  47. color: #333;
  48. font-weight: 500;
  49. }
  50. padding: 0 10rpx;
  51. }
  52. .starBox {
  53. margin-top: 12rpx;
  54. }
  55. .date {
  56. font-size: 24rpx;
  57. color: #686B73;
  58. }
  59. }
  60. .text {
  61. font-size: 24rpx;
  62. }
  63. .imgBox {
  64. display: flex;
  65. flex-wrap: wrap;
  66. padding-top: 20rpx;
  67. .img {
  68. margin-top: 20rpx;
  69. width: 160rpx;
  70. height: 160rpx;
  71. border-radius: 8rpx;
  72. overflow: hidden;
  73. margin-right: 24rpx;
  74. }
  75. }
  76. .vdo {
  77. margin-top: 12rpx;
  78. width: 360rpx;
  79. height: 296rpx;
  80. border-radius: 8rpx;
  81. overflow: hidden;
  82. video {
  83. width: 100%;
  84. height: 100%;
  85. }
  86. }
  87. </style>