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

61 lines
1.7 KiB

  1. <template>
  2. <view class="comp">
  3. <!-- 学习内容 -->
  4. <view class="learnCon">
  5. <view class="h1">学习内容</view>
  6. <view class="card mb0">
  7. <view class="flex-b">
  8. <view class="lab">模拟器训练预约</view>
  9. <view class="btn" @click="$goPage('/pages/carEntry/simulateAppointment/simulateAppointment')">去预约</view>
  10. </view>
  11. </view>
  12. </view>
  13. <!-- 学习状态 -->
  14. <view class="learnStatus">
  15. <view class="flex-b">
  16. <view class="h1">学习状态</view>
  17. <view class="more">
  18. <view class="txt">查看全部</view>
  19. <view class="moreIcon">
  20. <u-icon name="arrow-right" color="#686B73" size="12"></u-icon>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="card">
  25. <view class="flex-b">
  26. <view class="lab">模拟器训练学时报审</view>
  27. <view class="date">2023/08/09 22:52:12</view>
  28. </view>
  29. <view class="flex-b bg">
  30. <view class="row">
  31. <view class="text">评价模拟器教学老师</view>
  32. <view class="btn" @click="$goPage('/pages/carEntry/evaluate/evaluate?coachType=3&tit=模拟器老师&')">去评价</view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="card">
  37. <view class="flex-b">
  38. <view class="lab">模拟器训练已预约</view>
  39. <view class="date">2023/08/09 22:52:12</view>
  40. </view>
  41. <view class="bg">
  42. <view class="row">
  43. <view class="text">模拟驾驶馆某某模拟驾驶馆</view>
  44. </view>
  45. <view class="row">
  46. <view class="text">模拟器编号00001</view>
  47. </view>
  48. <view class="row">
  49. <view class="text">预约时间2023/08/23 10:00:00</view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. </script>
  58. <style lang="scss" scoped>
  59. @import './comp.scss';
  60. </style>