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

141 lines
2.8 KiB

1 year ago
  1. <template>
  2. <view class="consultItem">
  3. <view class="top_row">
  4. <view class="flex">
  5. <view class="tag">投诉教练</view>
  6. <view class="tag">服务态度</view>
  7. </view>
  8. <view class="status">待处理</view>
  9. </view>
  10. <view class="target">
  11. <view class="row">
  12. <view class="leftLab">
  13. <view class="icon">
  14. <image src="@/static/images/index/edit.png" mode=""></image>
  15. </view>
  16. <view class="lab">驾校名称</view>
  17. </view>
  18. <view class="name">翔力驾校</view>
  19. </view>
  20. <view class="row">
  21. <view class="leftLab">
  22. <view class="icon">
  23. <image src="@/static/images/index/edit.png" mode=""></image>
  24. </view>
  25. <view class="lab">教练名称</view>
  26. </view>
  27. <view class="name">翔力驾校</view>
  28. </view>
  29. </view>
  30. <view class="content">
  31. <view class="lab">问题描述</view>
  32. <view class="text">能退学费吗</view>
  33. </view>
  34. <view class="border_bottom">
  35. <view class="dateBox">
  36. <view class="date">创建时间2022-01-04</view>
  37. <!-- <view class="date">处理时间2022-01-04</view> -->
  38. </view>
  39. <view class="close_btn">关闭</view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. </script>
  45. <style lang="scss" scoped>
  46. .consultItem {
  47. width: 100%;
  48. .target {
  49. border-bottom: 2rpx dashed #E8E9EC;
  50. }
  51. .row {
  52. display: flex;
  53. justify-content: space-between;
  54. padding: 24rpx 0;
  55. .leftLab {
  56. display: flex;
  57. align-items: center;
  58. .icon {
  59. width: 30rpx;
  60. height: 30rpx;
  61. }
  62. .lab {
  63. margin-left: 10rpx;
  64. font-size: 28rpx;
  65. color: #ADADAD;
  66. }
  67. }
  68. .name {
  69. font-size: 28rpx;
  70. color: #333;
  71. }
  72. }
  73. .top_row {
  74. display: flex;
  75. width: 100%;
  76. height: 116rpx;
  77. border-bottom: 2rpx dashed #E8E9EC;
  78. justify-content: space-between;
  79. align-items: center;
  80. .tag {
  81. width: 176rpx;
  82. height: 60rpx;
  83. background: rgba(38,144,12,0.1);
  84. border-radius: 8rpx;
  85. text-align: center;
  86. line-height: 60rpx;
  87. font-size: 28rpx;
  88. color: #0D9269;
  89. margin-right: 24rpx;
  90. }
  91. .status {
  92. font-size: 28rpx;
  93. color: $themC;
  94. }
  95. }
  96. .content {
  97. padding: 24rpx 0 50rpx 0;
  98. font-size: 28rpx;
  99. .lab {
  100. color: #ADADAD;
  101. margin-bottom: 4rpx;
  102. }
  103. .text {
  104. }
  105. }
  106. .border_bottom {
  107. border-top: 2rpx dashed #E8E9EC;
  108. display: flex;
  109. align-items: center;
  110. justify-content: space-between;
  111. padding: 30rpx 0 16rpx 0;
  112. .dateBox {
  113. .date {
  114. font-size: 28rpx;
  115. color: #ADADAD;
  116. margin-bottom: 16rpx;
  117. }
  118. }
  119. .close_btn {
  120. width: 140rpx;
  121. height: 60rpx;
  122. background: #FFFFFF;
  123. border-radius: 8rpx;
  124. border: 2rpx solid #E8E9EC;
  125. text-align: center;
  126. line-height: 60rpx;
  127. color: #ADADAD;
  128. font-size: 28rpx;
  129. }
  130. }
  131. }
  132. </style>