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.
25 lines
460 B
25 lines
460 B
<template>
|
|
<view class="main">
|
|
<!-- 考场模拟 -->
|
|
<coachIdentity v-if="identity=='实操教练'"/>
|
|
<!-- 预约记录 -->
|
|
<simulation v-if="identity=='考场模拟教练'"/>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import coachIdentity from './comp/coach.vue'
|
|
import simulation from './comp/simulation.vue'
|
|
export default {
|
|
components: { coachIdentity,simulation },
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|