洛阳学员端
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.

173 lines
6.3 KiB

7 months ago
7 months ago
7 months ago
7 months ago
6 months ago
7 months ago
7 months ago
6 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. <template>
  2. <view class="comp">
  3. <!-- 学习状态 -->
  4. <view class="learnStatus">
  5. <view class="card mt20">
  6. <view class="flex-b" >
  7. <view class="lab">实操预约</view>
  8. <view class="link-arrow" @click="$goPage('/pages/carEntry/operaAppointment/operaAppointment?subject=2')">
  9. <view class="txt">去预约</view>
  10. <u-icon name="arrow-right" color="#3776FF" :size="16"></u-icon>
  11. </view>
  12. <!-- <view class="btn" @click.stop="$goPage('/pages/carEntry/evaluate/evaluate?subject=2&coachType=1')">去学习</view> -->
  13. </view>
  14. </view>
  15. <view class="h1"><text class="active">学习状态</text></view>
  16. <!-- 考试结果 -->
  17. <view class="exam" v-if="showExam">
  18. <view class="card" v-if="info.studentExamVO.pass">
  19. <view class="flex-b padTb">
  20. <view class="lab">科目二考试成绩已通过</view>
  21. <view class="date">
  22. {{ $u.timeFormat(info.studentExamVO.examTime, 'yyyy-mm-dd hh:MM:ss') }}
  23. </view>
  24. </view>
  25. <view class="flex-b bg" v-if="!info.studentExamVO.canComment">
  26. <view class="row">
  27. <view class="text">考试成绩{{ info.studentExamVO.examResult }}</view>
  28. <view class="btn" @click="$goPage('/pages/carEntry/evaluate/evaluate?subject=2&coachType=1')">去评价</view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="card" v-else>
  33. <view class="flex-b padTb">
  34. <view class="lab">科目二考试成绩未通过</view>
  35. <view class="date">{{ $u.timeFormat(info.studentExamVO.examTime, 'yyyy-mm-dd hh:MM:ss') }}</view>
  36. </view>
  37. <view class="bg">
  38. <view class="row bg">
  39. <view class="text">前往"12123"APP预约考试</view>
  40. <view class="btn" @click="$u.toast('请打开12123App预约')">去预约</view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- 预约考试 -->
  46. <view class="" v-if="showAppointmentExam">
  47. <view class="card" v-if="!info.examReservationVO">
  48. <view class="flex-b padTb">
  49. <view class="lab">科目二学习进度已通过</view>
  50. </view>
  51. <!-- <view class="bg">
  52. <view class="row bg">
  53. <view class="text">预约考试前请确认学时</view>
  54. <view class="btn" @click="$goPage('/pages/carEntry/signature/signature')">学时确认</view>
  55. </view>
  56. </view> -->
  57. <view class="bg">
  58. <view class="row bg">
  59. <view class="text">前往"12123"APP预约考试</view>
  60. <view class="btn" @click="$u.toast('请打开12123App预约')">去预约</view>
  61. </view>
  62. </view>
  63. </view>
  64. <view class="card" v-else>
  65. <view class="flex-b padTb">
  66. <view class="lab">科目二考试预约{{ examReservationStatus[info.examReservationVO.examReservationStatus]}}</view>
  67. </view>
  68. <view class="bg">
  69. <view class="row">
  70. <view class="text">考试场地{{info.examReservationVO.examAddress}}</view>
  71. </view>
  72. <view class="row">
  73. <view class="text">考试时间{{ $u.timeFormat(info.examReservationVO.examTime, 'yyyy-mm-dd hh:MM:ss') }} </view>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. <!-- <view class="">
  79. 6666 {{showAppointment}}
  80. </view> -->
  81. <!-- 预约实操训练 -->
  82. <view class="" v-if="info.operationReservationVO&&info.operationReservationVO.length">
  83. <view class="card" v-for="(item,index) in info.operationReservationVO" :key="index">
  84. <view class="flex-b padTb">
  85. <view class="lab">科目二实操训练 {{ item.reservationStatus==9?'已取消': reservationStatus[item.reservationStatus]}}</view>
  86. <view class="date">{{ $u.timeFormat(item.joe, 'yyyy-mm-dd hh:MM:ss') }}</view>
  87. </view>
  88. <view class="bg">
  89. <view class="row oneRowText">预约场地{{item.reservationAddress}}</view>
  90. <view class="row">预约教练{{item.reservationCoach}}</view>
  91. <view class="row">预约车辆{{item.reservationCar}}</view>
  92. <view class="row">预约时间{{ $u.timeFormat(item.reservationTime, 'yyyy-mm-dd hh:MM:ss') }}</view>
  93. <view class="row" v-if="item.joe">核销时间{{ $u.timeFormat(item.joe, 'yyyy-mm-dd hh:MM:ss') }}</view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. </view>
  99. </template>
  100. <script>
  101. import {
  102. getStudentSubject2Status,
  103. } from '@/config/api.js'
  104. export default {
  105. data() {
  106. return {
  107. info: {},
  108. showAppointment: false,//预约状态
  109. showAppointmentExam: false,//预约考试
  110. showExam: false,//考试状态
  111. reservationStatus: ['未签到', '已签到', '已签退', '已过期'],
  112. examReservationStatus: ['预约失败', '预约通过', '-预约中']
  113. }
  114. },
  115. created() {
  116. this.getStudentSubject2StatusFn()
  117. // 状态
  118. // 1,已预约训练,
  119. // 2,学时达标,去预约考试,
  120. // 3,考试结果
  121. },
  122. methods: {
  123. changeStep(type) {
  124. this.showAppointment = false,//预约状态
  125. this.showAppointmentExam = false,//预约考试
  126. this.showExam = false,//考试状态
  127. this[type] = true
  128. },
  129. async getStudentSubject2StatusFn() {
  130. const {data: res} = await getStudentSubject2Status({studentId: this.studentId})
  131. let studentExamVO = res.studentExamVO || {} //考试结果
  132. let examReservationVO = res.examReservationVO || {} //考试预约情况
  133. let operationReservationVO = res.operationReservationVO?res.operationReservationVO[0] : {} //实操预约情况
  134. if(studentExamVO.pass) {
  135. // 如果通过了考试
  136. this.changeStep('showExam')
  137. }else if(res.studentClassHourVO.classHourReachStatus) {
  138. // 如果学时达标,
  139. let ExamVOTime = studentExamVO.examTime
  140. let ExamReservationVOTime = examReservationVO.examTime
  141. // 如果没有预约考试时间也没有考试时间 去预约考试
  142. if (!ExamVOTime&&!ExamReservationVOTime) this.changeStep('showAppointmentExam')
  143. // 如果有预约时间没有考试时间, 显示预约考试详情
  144. if(!ExamVOTime&&ExamReservationVOTime) {
  145. this.changeStep('showAppointmentExam')
  146. }
  147. if(ExamVOTime&&!ExamReservationVOTime) {
  148. this.changeStep('showExam')
  149. }
  150. // 如果都有比时间
  151. if(ExamVOTime&&ExamReservationVOTime) {
  152. ExamVOTime>ExamReservationVOTime?this.changeStep('showExam'):this.changeStep('showAppointmentExam')
  153. }
  154. }
  155. console.log('时间')
  156. console.log(res)
  157. this.info = res
  158. }
  159. }
  160. }
  161. </script>
  162. <style lang="scss" scoped>
  163. @import './comp.scss';
  164. </style>