1234567891011121314151617181920 |
- <template>
- <view class="page-content">
- <mx-nav-bar title="我的测评"/>
- <view class="p-30 fx-col gap-30">
- <component v-for="b in blocks" v-bind="b" :is="blockMap[b.is]"/>
- </view>
- </view>
- </template>
- <script setup>
- import {useProvidePageConfig} from "@/hooks/usePageConfigInjection";
- import TestGuideCard from "@/pages/test-center/index/components/test-guide-card.vue";
- const {blocks} = useProvidePageConfig('AllTest')
- const blockMap = {[TestGuideCard.name]: TestGuideCard}
- </script>
- <style lang="scss">
- </style>
|