江西小程序管理端
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.

102 lines
2.2 KiB

1 year ago
  1. <template>
  2. <!-- 实操 -->
  3. <view class="consultItem">
  4. <view class="top_row">
  5. <view class="flex">
  6. <view class="schoolName">张三三 18265468753</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/radio_nor.png" mode=""></image>
  19. </view>
  20. <view class="name">训练科目科目二</view>
  21. </view>
  22. <view class="row">
  23. <view class="iconImg">
  24. <image src="@/static/images/index/radio_nor.png" mode=""></image>
  25. </view>
  26. <view class="name">预约场地xxx场地</view>
  27. </view>
  28. <view class="row">
  29. <view class="iconImg">
  30. <image src="@/static/images/index/radio_nor.png" mode=""></image>
  31. </view>
  32. <view class="name">预约车辆2号车浙A99999</view>
  33. </view>
  34. <view class="row">
  35. <view class="iconImg">
  36. <image src="@/static/images/index/radio_nor.png" mode=""></image>
  37. </view>
  38. <view class="name">预约时间2023/08/08 9:0010:00</view>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. </script>
  45. <style lang="scss" scoped>
  46. .consultItem {
  47. width: 100%;
  48. .top_row {
  49. display: flex;
  50. width: 100%;
  51. height: 116rpx;
  52. border-bottom: 2rpx dashed #E8E9EC;
  53. justify-content: space-between;
  54. align-items: center;
  55. .tag {
  56. // width: 176rpx;
  57. height: 60rpx;
  58. background: rgba(250, 149, 25, 0.1);
  59. border-radius: 8rpx;
  60. text-align: center;
  61. font-size: 28rpx;
  62. color: #FA7919;
  63. margin-right: 24rpx;
  64. padding: 10rpx 18rpx;
  65. }
  66. .schoolName {
  67. font-size: 28rpx;
  68. color: #333;
  69. margin-left: 20rpx;
  70. font-weight: 550;
  71. }
  72. .status {
  73. display: flex;
  74. align-items: center;
  75. .text {
  76. font-size: 28rpx;
  77. color: $themC;
  78. }
  79. }
  80. }
  81. .target {
  82. padding: 20rpx 0;
  83. }
  84. .row {
  85. padding: 16rpx 0;
  86. display: flex;
  87. align-items: center;
  88. .iconImg {
  89. width: 25rpx;
  90. height: 25rpx;
  91. }
  92. .name {
  93. font-size: 28rpx;
  94. color: #333;
  95. padding-left: 20rpx;
  96. }
  97. }
  98. }
  99. </style>