洛阳学员端
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.

97 lines
1.8 KiB

8 months ago
  1. <template>
  2. <view class="itemBox" >
  3. <view class="img">
  4. <image src="@/static/images/index/img_7@2x.png" mode="" ></image>
  5. </view>
  6. <view class="textCon">
  7. <view class="name">翔力驾校</view>
  8. <view class="flex-b">
  9. <view class="starBox">
  10. <!-- <u-rate active-color="#1989FA" inactive-color="#1989FA" gutter="1" :size="16" :value="item.stars" :readonly="true" style="pointer-events: none;"></u-rate> -->
  11. <view class="num">5</view>
  12. </view>
  13. <view class="adr">距您0.6km</view>
  14. </view>
  15. <!-- <view class="credit">行业信用 <text v-if="item.creditrating">{{item.creditrating}}</text></view> {{ $u.utils.distanceFn(item.distance)}}-->
  16. </view>
  17. <callPhone v-if="showPhone" :servicePhone="[{name: item.phone}]">
  18. <view class="pozPhone">
  19. <image src="@/static/images/index/telephone.png" mode=""></image>
  20. </view>
  21. </callPhone>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. props: {
  27. showPhone: {
  28. type: Boolean,
  29. default: true
  30. },
  31. item: {
  32. type: Object,
  33. default: {}
  34. }
  35. },
  36. methods: {
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .itemBox {
  42. background: #FFFFFF;
  43. border-radius: 16rpx;
  44. padding: 24rpx;
  45. position: relative;
  46. display: flex;
  47. margin-bottom: 20rpx;
  48. }
  49. .img {
  50. width: 204rpx;
  51. height: 140rpx;
  52. background: #f6f6f6;
  53. border-radius: 8rpx;
  54. overflow: hidden;
  55. }
  56. .textCon {
  57. flex: 1;
  58. font-size: 24rpx;
  59. padding: 0 0 0 36rpx;
  60. .name {
  61. font-size: 32rpx;
  62. margin-top: 4rpx;
  63. color: #363A44;
  64. font-weight: 600;
  65. min-height: 84rpx;
  66. }
  67. .starBox {
  68. display: flex;
  69. padding: 6rpx 0 6rpx 0;
  70. .num {
  71. color: $themC;
  72. }
  73. }
  74. .credit {
  75. color: #1989FA;
  76. margin-bottom: 4rpx;
  77. }
  78. .adr {
  79. color: #363A44;
  80. }
  81. }
  82. .pozPhone {
  83. position: absolute;
  84. top: 40%;
  85. right: 20rpx;
  86. width: 72rpx;
  87. height: 72rpx;
  88. transform: translateY(-50%);
  89. }
  90. </style>