system-copyright-react/src/route/TrademarkMall/TrademarkMall.tsx

20 lines
673 B
TypeScript
Raw Normal View History

2025-05-16 17:48:03 +08:00
import React from 'react'
2025-05-19 17:29:11 +08:00
import nothingImg from '../../static/appimgs/nothing.png'
2025-05-16 17:48:03 +08:00
export default function TrademarkMall() {
2025-05-19 17:29:11 +08:00
const height = window.innerHeight - 180;
const data = []
2025-05-16 17:48:03 +08:00
return (
2025-05-19 17:29:11 +08:00
<div className='appElectionBox' style={{ height: `${height}px`, overflow: 'auto' }}>
{data.length <= 0 ? (<div style={{ height: '100%', display: 'flex', justifyContent: 'center', alignItems: 'center', flexDirection: 'column' }}>
<img src={nothingImg} alt="" width={368} height={355} />
<div style={{
marginTop: 50,
fontSize: 16,
color: '#D0D0D0'
}}></div>
</div>) : (<></>)}
</div>
2025-05-16 17:48:03 +08:00
)
}