| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <script setup lang='ts'>
- import Back from '@/components/back.uvue'
- import Loading from '@/components/loading.uvue'
- import { ref, onMounted, nextTick } from 'vue'
- import { type SubjectKnowledgeCardResult, getSubjectKnowledgeCard } from '@/services/subject/card'
- import { fetchSubjectConfigInfo } from '@/services/subject/info'
- import type { SubjectCatalogResult } from '@/services/subject/catalog'
- import { config } from '@/config'
- const activeCategory = ref<string>()
- const activeTab = ref<string>('knowledge')
- const isLoading = ref(true)
- const categories = ref<SubjectCatalogResult[]>([])
- const cards = ref<SubjectKnowledgeCardResult[]>([])
- const cardsScrollView = ref<any>(null)
- const categoryRefs = ref<any>()
- async function getDataList() {
- const res = await getSubjectKnowledgeCard({ subjectId: '69c49329091547710d451f9d' })
- cards.value = res.userCardList || []
- categories.value = res.catalogList || []
- }
- function handleSelect(categoryId: string) {
- activeCategory.value = categoryId
- //找到第一个元素上categoryId属性与categoryId相同的元素
- const element = categoryRefs.value.find((item: any) => {
- return item.dataset.category === categoryId
- })
- if (element) {
- const rect = element.getBoundingClientRect()
- console.log(rect)
- if (cardsScrollView.value) {
- cardsScrollView.value.scrollTo({
- top: rect.top - 70, // 减去顶部偏移
- animated: true
- })
- }
- }
- }
- function onScroll(e: any) {
- const scrollTop = e.detail.scrollTop
- // 遍历所有分类,检查哪个分类在可视区域
- for (const category of categories.value) {
- const element = categoryRefs.value.find((item: any) => {
- return item.dataset.category === category.id
- })
- if (element) {
- const rect = element.getBoundingClientRect()
- // 检查元素是否在可视区域内
- if (rect.top <= 150 && rect.bottom >= 150) {
- activeCategory.value = category.id
- break
- }
- }
- }
- }
- onMounted(async () => {
- await getDataList()
- isLoading.value = false
- nextTick(() => {
- handleSelect(categories.value[0].id as string)
- })
- })
- </script>
- <template>
- <Loading v-show="isLoading" />
- <cl-page v-show="!isLoading">
- <Back />
- <!-- 顶部标题栏 -->
- <view class="content">
- <!-- 左侧导航菜单 -->
- <scroll-view direction="vertical" :show-scrollbar="false" class="sidebar">
- <view v-for="category in categories" :key="category.id" class="sidebar-item"
- :class="{ active: activeCategory === category.id }" @tap="handleSelect(category.id as string)">
- <cl-image :src="config.baseUrl + category?.fileList?.[0]?.url" mode="heightFix" class="!h-[28px]"></cl-image>
- <text class="sidebar-text">{{ category.name }}</text>
- </view>
- </scroll-view>
- <!-- 右侧卡片网格 -->
- <view class="cards-container">
- <view class="header">
- <view class="title-tabs">
- <view class="tab" :class="{ active: activeTab === 'knowledge' }" @tap="activeTab = 'knowledge'">知识卡
- </view>
- <view class="tab" :class="{ active: activeTab === 'honor' }" @tap="activeTab = 'honor'">荣誉</view>
- </view>
- </view>
- <scroll-view direction="vertical" :show-scrollbar="false" class="cards" ref="cardsScrollView"
- @scroll="onScroll">
- <view class="grid grid-cols-5 gap-4">
- <view class="card" v-for="card in cards" :key="card.id" :data-category="card.catalogId" ref="categoryRefs">
- <image v-if="card.userCardId" :src="config.baseUrl + card.iconPath" class="w-full h-full" />
- <image v-else src="https://oss.xiaoxiongcode.com/static/home/21.png" class="w-full h-full" />
- <view class="card-title">{{ card.cardName }}</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </cl-page>
- </template>
- <style lang="scss" scoped>
- .header {
- @apply absolute left-1/2 top-5;
- transform: translateX(-50%);
- text-align: center;
- .title-tabs {
- @apply flex flex-row items-center justify-center rounded-full;
- background-color: #9AD2FA;
- .tab {
- @apply rounded-full;
- padding: 5px 10px;
- font-size: 16px;
- transition: all 0.3s ease;
- &.active {
- background-color: white;
- color: #1E88E5;
- font-weight: bold;
- }
- }
- }
- }
- .content {
- display: flex;
- flex-direction: row;
- .sidebar {
- width: 200px;
- background-color: #116FE9;
- padding: 20px;
- padding-top: 70px;
- height: 100vh;
- .sidebar-item {
- @apply text-white rounded-full py-1 cursor-pointer flex flex-row items-center;
- margin-bottom: 8px;
- transition: all 0.3s ease;
- font-size: 12px;
- width: 100%;
- &.active {
- background-color: rgba(255, 255, 255, 1);
- color: #1E88E5;
- font-weight: bold;
- }
- .sidebar-icon {
- font-size: 28px;
- margin-right: 2px;
- }
- }
- }
- .cards-container {
- @apply relative;
- flex: 1;
- width: 100%;
- padding: 20px;
- padding-top: 70px;
- background: linear-gradient(0deg, #2EB2FD, #0B85F4);
- .cards {
- height: calc(100vh - 90px);
- }
- .category-section {
- margin-bottom: 40px;
- .category-title {
- @apply text-white font-bold text-xl mb-4;
- }
- }
- .card {
- // background-color: rgba(255, 255, 255, 0.9);
- // border-radius: 16px;
- // padding: 16px;
- display: flex;
- flex-direction: column;
- align-items: center;
- // box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
- aspect-ratio: 3/4;
- .card-content {
- width: 100%;
- height: 120px;
- background-color: #E3F2FD;
- border-radius: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 12px;
- aspect-ratio: 3/4;
- .question-mark {
- font-size: 60px;
- font-weight: bold;
- color: #1E88E5;
- }
- }
- .card-title {
- @apply text-center font-bold absolute left-0 w-full text-[#0E3E87] text-[1.5vw];
- bottom: 13%;
- }
- }
- }
- }
- </style>
|