|
|
@@ -1,4 +1,4 @@
|
|
|
-<template>
|
|
|
+<!-- <template>
|
|
|
<view class="page-content">
|
|
|
<mx-nav-bar title="收藏夹"/>
|
|
|
<mx-tabs-swiper :tabs="tabs" border>
|
|
|
@@ -23,4 +23,19 @@ const {prevData} = useTransfer()
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
-</style>
|
|
|
+</style> -->
|
|
|
+<template>
|
|
|
+ <ie-page class="page-content" :fix-height="true">
|
|
|
+ <ie-navbar title="收藏夹" />
|
|
|
+ <view class="flex-1 min-h-1 relative">
|
|
|
+ <view class="absolute inset-0">
|
|
|
+ <question-collection-list :subject-id="prevData.subjectId" />
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </ie-page>
|
|
|
+</template>
|
|
|
+<script lang="ts" setup>
|
|
|
+import QuestionCollectionList from "@/pagesOther/pages/topic-center/topic-collection/components/question-collection-list.vue";
|
|
|
+import { useTransferPage } from '@/hooks/useTransferPage';
|
|
|
+const { prevData } = useTransferPage();
|
|
|
+</script>
|