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

30 lines
651 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="main">
  3. <!-- 考场模拟 -->
  4. <coachIdentity v-if="identity=='实操教练'"/>
  5. <!-- 预约记录 -->
  6. <simulation v-if="identity=='考场模拟教练'"/>
  7. <!-- 学员评价 -->
  8. <studentComment v-if="identity=='模拟器老师'"/>
  9. </view>
  10. </template>
  11. <script>
  12. import coachIdentity from './comp/coach.vue'
  13. import simulation from './comp/simulation.vue'
  14. import studentComment from './comp/studentComment.vue'
  15. export default {
  16. components: { coachIdentity,simulation, studentComment },
  17. data() {
  18. return {
  19. }
  20. },
  21. onShow() {
  22. uni.hideTabBar();
  23. },
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. </style>