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

27 lines
500 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. <examinCoach v-if="identity=='考场模拟教练'"/>
  4. <operateCoach v-if="identity=='实操教练'"/>
  5. <principal v-if="identity=='校长'"/>
  6. </view>
  7. </template>
  8. <script>
  9. import examinCoach from './comp/examinCoach'
  10. import operateCoach from './comp/operateCoach'
  11. import principal from './comp/principal'
  12. export default {
  13. components: {
  14. examinCoach,
  15. operateCoach,
  16. principal
  17. },
  18. data() {
  19. return {
  20. }
  21. }
  22. }
  23. </script>
  24. <style></style>