|
|
|
@ -5,8 +5,9 @@
|
|
|
|
|
|
|
|
|
|
import { useEffect, useState } from 'react';
|
|
|
|
|
|
|
|
|
|
import Image from 'next/image';
|
|
|
|
|
|
|
|
|
|
import ArticalWrap from '@/components/ArticalWrap';
|
|
|
|
|
import ImageWithBasePath from '@/components/ImageWithBasePath';
|
|
|
|
|
import JournalComment from '@/components/JournalComment';
|
|
|
|
|
import SongList from '@/components/SongList';
|
|
|
|
|
|
|
|
|
@ -60,7 +61,7 @@ export default function JournalContent() {
|
|
|
|
|
<div className={`w-full flex-1 flex-col ${loading ? 'hidden' : 'flex'}`}>
|
|
|
|
|
{/* 期刊封面图 */}
|
|
|
|
|
<div className="relative w-[100%] h-[264.84px]">
|
|
|
|
|
<ImageWithBasePath className="object-cover" unoptimized fill src={journalInfo?.image} alt="journal-cover" />
|
|
|
|
|
<Image className="object-cover" unoptimized fill src={journalInfo?.image} alt="journal-cover" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<section className="relative w-full flex-1 bg-white mt-[-10px] rounded-tl-[12px] rounded-tr-[12px] z-1 py-[17px] px-[18px] pb-[79px]">
|
|
|
|
|