学员端小程序
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.

58 lines
1.1 KiB

  1. <template>
  2. <view class="box">
  3. <view class="flex-b">
  4. <view class="name">匿名用户</view>
  5. <view class="date">2023/08/08</view>
  6. </view>
  7. <view class="starBox">
  8. <u-rate active-color="#1989FA" inactive-color="#1989FA" gutter="1" :size="16" :value="4" disabled></u-rate>
  9. <view class="num">4.9</view>
  10. </view>
  11. <view class="text">教学质量高技术好超有耐心有责任心学车就找这个驾校教练都超好满意满意满意</view>
  12. <view class="imgBox">
  13. <view class="img">
  14. <image src="@/static/images/logo.png" mode=""></image>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. </script>
  21. <style lang="scss" scoped>
  22. .flex-b {
  23. align-items: center;
  24. .name {
  25. font-weight: 600;
  26. font-size: 32rpx;
  27. color: #333;
  28. }
  29. .date {
  30. font-size: 24rpx;
  31. color: #686B73;
  32. }
  33. }
  34. .starBox {
  35. padding: 10rpx 0 24rpx 0;
  36. }
  37. .text {
  38. font-size: 24rpx;
  39. }
  40. .imgBox {
  41. display: flex;
  42. flex-wrap: wrap;
  43. padding-top: 20rpx;
  44. .img {
  45. margin-top: 20rpx;
  46. width: 160rpx;
  47. height: 160rpx;
  48. border-radius: 8rpx;
  49. overflow: hidden;
  50. margin-right: 24rpx;
  51. }
  52. }
  53. </style>