1234567891011121314151617181920 |
- <template>
- <view class="fx-col">
- <view class="pl-20">
- 专业类别
- </view>
- <view class="py-15 fx-row gap-20">
- <uv-tags size="large" type="primary" shape="circle" icon="lock" plain plain-fill
- :text="currentUser.examMajorName"/>
- </view>
- </view>
- </template>
- <script setup>
- import {useUserStore} from "@/hooks/useUserStore";
- const {currentUser} = useUserStore()
- </script>
- <style lang="scss" scoped>
- </style>
|