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.

120 lines
2.5 KiB

7 months ago
  1. <template>
  2. <!-- 实操 -->
  3. <view class="consultItem">
  4. <view class="top_row">
  5. <view class="flex">
  6. <view class="schoolName">{{item.name}} <text style="margin-left: 10rpx;">{{item.phone}}</text></view>
  7. </view>
  8. <view class="status">
  9. <!-- <view class="text">待上课</view> -->
  10. <view class="icon">
  11. <u-icon name="arrow-right" size="14" color="#686B73" style="margin-left: 12rpx;" ></u-icon>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="target">
  16. <view class="row">
  17. <view class="iconImg">
  18. <image src="@/static/images/index/timerIcon.png" mode=""></image>
  19. </view>
  20. <view class="name">报名时间{{$u.timeFormat(item.applyDate, 'yyyy/mm/dd')}}</view>
  21. </view>
  22. <view class="row">
  23. <view class="iconImg">
  24. <image src="@/static/images/index/carIcon.png" mode=""></image>
  25. </view>
  26. <view class="name">学驾车型{{item.trainType}}</view>
  27. </view>
  28. <view class="row">
  29. <view class="iconImg">
  30. <image src="@/static/images/index/listIcon.png" mode=""></image>
  31. </view>
  32. <view class="name">报名班型{{item.className}}</view>
  33. </view>
  34. <view class="row">
  35. <view class="iconImg">
  36. <image src="@/static/images/index/newSatus.png" mode=""></image>
  37. </view>
  38. <view class="name">最新状态<text>就先放着不做</text> </view>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. props: {
  46. item: {
  47. type: Object,
  48. default: function() {
  49. return {}
  50. }
  51. }
  52. },
  53. data() {
  54. return {
  55. }
  56. }
  57. }
  58. </script>
  59. <style lang="scss" scoped>
  60. .consultItem {
  61. width: 100%;
  62. .top_row {
  63. display: flex;
  64. width: 100%;
  65. height: 116rpx;
  66. border-bottom: 2rpx dashed #E8E9EC;
  67. justify-content: space-between;
  68. align-items: center;
  69. .tag {
  70. // width: 176rpx;
  71. height: 60rpx;
  72. background: rgba(250, 149, 25, 0.1);
  73. border-radius: 8rpx;
  74. text-align: center;
  75. font-size: 28rpx;
  76. color: #FA7919;
  77. margin-right: 24rpx;
  78. padding: 10rpx 18rpx;
  79. }
  80. .schoolName {
  81. font-size: 28rpx;
  82. color: #333;
  83. margin-left: 20rpx;
  84. font-weight: 550;
  85. }
  86. .status {
  87. display: flex;
  88. align-items: center;
  89. .text {
  90. font-size: 28rpx;
  91. color: $themC;
  92. }
  93. }
  94. }
  95. .target {
  96. padding: 20rpx 0;
  97. }
  98. .row {
  99. padding: 16rpx 0;
  100. display: flex;
  101. align-items: center;
  102. .iconImg {
  103. width: 32rpx;
  104. height: 28rpx;
  105. }
  106. .name {
  107. font-size: 28rpx;
  108. color: #333;
  109. padding-left: 20rpx;
  110. text {
  111. color: $themC;
  112. }
  113. }
  114. }
  115. }
  116. </style>