- <template>
- <view class="flex-1 min-h-1 relative bg-back">
- <view class="absolute inset-0">
- <ie-exam-history v-if="getLocation === '湖南'" />
- <vhs-exam-history v-if="getLocation === '河南'" />
- </view>
- </view>
- </template>
- <script lang="ts" setup>
- import IeExamHistory from './ie-exam-history.vue'
- import VhsExamHistory from './vhs-exam-history.vue'
- import { useUserStore } from '@/store/userStore';
- const userStore = useUserStore();
- const { getLocation } = storeToRefs(userStore);
- </script>
- <style lang="scss" scoped></style>
|