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

24 lines
460 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. <template>
  2. <view class="main">
  3. <!-- 考场模拟 -->
  4. <coachIdentity v-if="identity=='实操教练'"/>
  5. <!-- 预约记录 -->
  6. <simulation v-if="identity=='考场模拟教练'"/>
  7. </view>
  8. </template>
  9. <script>
  10. import coachIdentity from './comp/coach.vue'
  11. import simulation from './comp/simulation.vue'
  12. export default {
  13. components: { coachIdentity,simulation },
  14. data() {
  15. return {
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>