|
|
@ -67,13 +67,13 @@ export default async function Journal({ params }: { params: { category?: string;
|
|
|
|
<Category list={categoryList} current={categoryInfo?.id ?? '0'} />
|
|
|
|
<Category list={categoryList} current={categoryInfo?.id ?? '0'} />
|
|
|
|
|
|
|
|
|
|
|
|
{/* header */}
|
|
|
|
{/* header */}
|
|
|
|
<div className="flex flex-row items-center justify-between mt-38px">
|
|
|
|
<div className="flex flex-row items-center justify-between mt-38px mb-12px">
|
|
|
|
<div className="text-17px leading-24px font-500 mb-3px">{categoryInfo?.nameCh ?? '全部'}</div>
|
|
|
|
<div className="text-17px leading-24px font-500">{categoryInfo?.nameCh ?? '全部'}</div>
|
|
|
|
<ButtonFM />
|
|
|
|
<ButtonFM />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* 期刊列表 */}
|
|
|
|
{/* 期刊列表 */}
|
|
|
|
<div className="flex flex-col gap-42px mt-14px rgba(0,0,0,0.95)">
|
|
|
|
<div className="flex flex-col gap-42px text-[rgba(0,0,0,0.95)]">
|
|
|
|
{journalList.rows.map((item: JournalInfo) => (
|
|
|
|
{journalList.rows.map((item: JournalInfo) => (
|
|
|
|
<JournalItem key={item.id} {...item} />
|
|
|
|
<JournalItem key={item.id} {...item} />
|
|
|
|
))}
|
|
|
|
))}
|
|
|
@ -91,7 +91,7 @@ export default async function Journal({ params }: { params: { category?: string;
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* 热门推荐 */}
|
|
|
|
{/* 热门推荐 */}
|
|
|
|
<div className="w-346px mt-203px">
|
|
|
|
<div className="w-346px mt-202px">
|
|
|
|
{!!recommendList?.length ? <JournalRecommendList list={recommendList} /> : <div />}
|
|
|
|
{!!recommendList?.length ? <JournalRecommendList list={recommendList} /> : <div />}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</main>
|
|
|
|