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

88 lines
1.7 KiB

1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="我的排课详情"></topNavbar>
  4. <view class="pad">
  5. <view class="card">
  6. <view class="info">
  7. <view class="row">
  8. <view class="lab">训练科目</view>
  9. <view class="val">科目二</view>
  10. </view>
  11. <view class="row">
  12. <view class="lab">预约车辆</view>
  13. <view class="val">02号车浙A98299</view>
  14. </view>
  15. <view class="row">
  16. <view class="lab">开放范围</view>
  17. <view class="val">我的学员</view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="h1">预约学员</view>
  22. <view class="ul">
  23. <view class="li" v-for="(item,index) in 4" :key="index">
  24. <view class="name">张三三 <text> 17628378888</text></view>
  25. <view class="time">提交预约时间2023/08/06 09:12:33</view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. </script>
  33. <style lang="scss" scoped>
  34. .pad {
  35. .card {
  36. padding: 0 28rpx;
  37. .info {
  38. padding: 20rpx 0;
  39. .row {
  40. display: flex;
  41. font-size: 28rpx;
  42. color: #333;
  43. padding: 20rpx 0;
  44. .lab {
  45. width: 150rpx;
  46. }
  47. .val {
  48. }
  49. }
  50. }
  51. }
  52. .h1 {
  53. line-height: 108rpx;
  54. }
  55. .ul {
  56. .li {
  57. height: 180rpx;
  58. display: flex;
  59. flex-direction: column;
  60. background: #FFFFFF;
  61. border-radius: 16rpx;
  62. justify-content: center;
  63. margin-bottom: 20rpx;
  64. padding: 0 28rpx;
  65. .name {
  66. font-size: 32rpx;
  67. font-weight: 600;
  68. text {
  69. font-weight: 400;
  70. margin-left: 10rpx;
  71. }
  72. }
  73. .time {
  74. font-size: 28rpx;
  75. margin-top: 24rpx;
  76. color: #ADADAD;
  77. }
  78. }
  79. }
  80. }
  81. </style>