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

174 lines
6.1 KiB

10 months ago
10 months ago
10 months ago
8 months ago
10 months ago
8 months ago
8 months ago
8 months ago
8 months ago
10 months ago
8 months ago
10 months ago
8 months ago
10 months ago
8 months ago
8 months ago
10 months ago
8 months ago
10 months ago
8 months ago
8 months ago
10 months ago
8 months ago
10 months ago
8 months ago
8 months ago
8 months ago
8 months ago
10 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=3')">
  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=3&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" >
  26. <view class="row">
  27. <view class="text">考试成绩{{ info.studentExamVO.examResult }}</view>
  28. <view class="btn" @click="$goPage('/pages/carEntry/evaluate/evaluate?subject=3&coachType=1')" v-if="!info.studentExamVO.canComment">去评价</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">前往"12123"APP预约考试</view>
  54. <view class="btn" @click="$u.toast('请打开12123App预约')">去预约</view>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="card" v-else>
  59. <view class="flex-b padTb">
  60. <view class="lab">科目三考试预约{{ examReservationStatus[info.examReservationVO.examReservationStatus]}}</view>
  61. </view>
  62. <view class="bg">
  63. <view class="row">
  64. <view class="text">考试场地{{info.examReservationVO.examAddress}}</view>
  65. </view>
  66. <view class="row">
  67. <view class="text">考试时间{{ $u.timeFormat(info.examReservationVO.examTime, 'yyyy-mm-dd hh:MM:ss') }} </view>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <!-- 预约实操训练 -->
  73. <view class="" v-if="info.operationReservationVO&&info.operationReservationVO.length">
  74. <view class="card" v-for="(item,index) in info.operationReservationVO" :key="index">
  75. <view class="flex-b padTb">
  76. <view class="lab">科目三实操训练 {{ item.reservationStatus==9?'已取消': reservationStatus[item.reservationStatus]}}</view>
  77. <view class="date">{{ $u.timeFormat(item.joe, 'yyyy-mm-dd hh:MM:ss') }}</view>
  78. </view>
  79. <view class="bg">
  80. <view class="row oneRowText">预约场地{{item.reservationAddress}}</view>
  81. <view class="row">预约教练{{item.reservationCoach}}</view>
  82. <view class="row">预约车辆{{item.reservationCar}}</view>
  83. <view class="row">预约时间{{ $u.timeFormat(item.reservationTime, 'yyyy-mm-dd hh:MM:ss') }}</view>
  84. <view class="row" v-if="item.joe">核销时间{{ $u.timeFormat(item.joe, 'yyyy-mm-dd hh:MM:ss') }}</view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. </template>
  91. <script>
  92. import {
  93. getStudentSubject3Status,
  94. } from '@/config/api.js'
  95. export default {
  96. props: ['subjectStatus'],
  97. data() {
  98. return {
  99. info: {},
  100. showAppointment: false,//预约状态
  101. showAppointmentExam: false,//预约考试
  102. showExam: false,//考试状态
  103. reservationStatus: ['未签到', '已签到', '已签退', '已过期'],
  104. examReservationStatus: ['预约失败', '预约通过', '-预约中']
  105. }
  106. },
  107. created() {
  108. // 状态
  109. // 1,已预约训练,
  110. // 2,学时达标,去预约考试,
  111. // 3,考试结果
  112. },
  113. watch: {
  114. subjectStatus: {
  115. handler: function(res) {
  116. console.log('obj3改变了')
  117. this.getStudentSubject3StatusFn(res)
  118. },
  119. // immediate: true,
  120. deep: true
  121. }
  122. },
  123. methods: {
  124. changeStep(type) {
  125. this.showAppointment = false,//预约状态
  126. this.showAppointmentExam = false,//预约考试
  127. this.showExam = false,//考试状态
  128. this[type] = true
  129. },
  130. async getStudentSubject3StatusFn(res) {
  131. // const {data: res} = await getStudentSubject3Status({studentId: this.studentId})
  132. let studentExamVO = res.studentExamVO || {} //考试结果
  133. let examReservationVO = res.examReservationVO || {} //考试预约情况
  134. let operationReservationVO = res.operationReservationVO?res.operationReservationVO[0] : {} //实操预约情况
  135. if(studentExamVO.pass) {
  136. // 如果通过了考试
  137. this.changeStep('showExam')
  138. }else if(res.studentClassHourVO.classHourReachStatus) {
  139. // 如果学时达标,
  140. let ExamVOTime = studentExamVO.examTime
  141. let ExamReservationVOTime = examReservationVO.examTime
  142. // 如果没有预约考试时间也没有考试时间 去预约考试
  143. if (!ExamVOTime&&!ExamReservationVOTime) this.changeStep('showAppointmentExam')
  144. // 如果有预约时间没有考试时间, 显示预约考试详情
  145. if(!ExamVOTime&&ExamReservationVOTime) {
  146. this.changeStep('showAppointmentExam')
  147. }
  148. if(ExamVOTime&&!ExamReservationVOTime) {
  149. this.changeStep('showExam')
  150. }
  151. // 如果都有比时间
  152. if(ExamVOTime&&ExamReservationVOTime) {
  153. ExamVOTime>ExamReservationVOTime?this.changeStep('showExam'):this.changeStep('showAppointmentExam')
  154. }
  155. }
  156. console.log('时间')
  157. console.log(res)
  158. this.info = res
  159. }
  160. }
  161. }
  162. </script>
  163. <style lang="scss" scoped>
  164. @import './comp.scss';
  165. </style>