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

89 lines
1.6 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 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">{{item.shortName}}</view>
  8. <view class="flex-b">
  9. <view class="starBox">
  10. <view class="num">{{item.stars}}</view>
  11. </view>
  12. <callPhone v-if="showPhone" :servicePhone="[{name: item.phone}]">
  13. <view class="pozPhone">
  14. <image src="@/static/images/indexIcon/phone.png" mode=""></image>
  15. </view>
  16. </callPhone>
  17. </view>
  18. <view class="adr"><text style="margin-right: 6rpx;">{{item.districtName}}</text> 距您{{ $u.utils.distanceFn(item.distance)}}</view>
  19. <!-- <view class="credit">行业信用 <text v-if="item.creditrating">{{item.creditrating}}</text></view> -->
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. props: {
  26. showPhone: {
  27. type: Boolean,
  28. default: true
  29. },
  30. item: {
  31. type: Object,
  32. default: {}
  33. }
  34. },
  35. methods: {
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. .itemBox {
  41. background: #FFFFFF;
  42. border-radius: 16rpx;
  43. padding: 30rpx;
  44. position: relative;
  45. display: flex;
  46. border-bottom: 1px solid #F4F4F4;
  47. }
  48. .img {
  49. width: 200rpx;
  50. height: 135rpx;
  51. background: #f6f6f6;
  52. border-radius: 20rpx;
  53. overflow: hidden;
  54. }
  55. .textCon {
  56. flex: 1;
  57. font-size: 24rpx;
  58. padding: 0 0 0 36rpx;
  59. .name {
  60. font-size: 28rpx;
  61. margin-top: 4rpx;
  62. color: #363A44;
  63. }
  64. .starBox {
  65. margin: 10rpx 0;
  66. }
  67. .credit {
  68. color: #1989FA;
  69. margin-bottom: 4rpx;
  70. }
  71. .adr {
  72. color: #999;
  73. font-size: 24rpx;
  74. }
  75. }
  76. .pozPhone {
  77. width: 55rpx;
  78. height: 55rpx;
  79. }
  80. </style>