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

90 lines
1.7 KiB

1 year ago
  1. <template>
  2. <view class="consultItem">
  3. <view class="top_row">
  4. <view class="tag">咨询</view>
  5. <view class="status">待处理</view>
  6. </view>
  7. <view class="content">
  8. <view class="lab">问题描述</view>
  9. <view class="text">能退学费吗</view>
  10. </view>
  11. <view class="border_bottom">
  12. <view class="dateBox">
  13. <view class="date">创建时间2022-01-04</view>
  14. <!-- <view class="date">处理时间2022-01-04</view> -->
  15. </view>
  16. <view class="close_btn">关闭</view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. </script>
  22. <style lang="scss" scoped>
  23. .consultItem {
  24. width: 100%;
  25. .top_row {
  26. display: flex;
  27. width: 100%;
  28. height: 116rpx;
  29. border-bottom: 2rpx dashed #E8E9EC;
  30. justify-content: space-between;
  31. align-items: center;
  32. .tag {
  33. width: 120rpx;
  34. height: 60rpx;
  35. background: rgba(250,149,25,0.1);
  36. border-radius: 8rpx;
  37. text-align: center;
  38. line-height: 60rpx;
  39. font-size: 28rpx;
  40. color: #FA7919;
  41. }
  42. .status {
  43. font-size: 28rpx;
  44. color: $themC;
  45. }
  46. }
  47. .content {
  48. padding: 24rpx 0 50rpx 0;
  49. font-size: 28rpx;
  50. .lab {
  51. color: #ADADAD;
  52. margin-bottom: 4rpx;
  53. }
  54. .text {
  55. }
  56. }
  57. .border_bottom {
  58. border-top: 2rpx dashed #E8E9EC;
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. padding: 30rpx 0 10rpx 0;
  63. .dateBox {
  64. .date {
  65. font-size: 28rpx;
  66. color: #ADADAD;
  67. margin-bottom: 16rpx;
  68. }
  69. }
  70. .close_btn {
  71. width: 140rpx;
  72. height: 60rpx;
  73. background: #FFFFFF;
  74. border-radius: 8rpx;
  75. border: 2rpx solid #E8E9EC;
  76. text-align: center;
  77. line-height: 60rpx;
  78. color: #ADADAD;
  79. font-size: 28rpx;
  80. }
  81. }
  82. }
  83. </style>