v1.2.65 - 优化龙钞数据展示:显示出售/求购数量
This commit is contained in:
parent
90ce5a031f
commit
f7b5d6909b
|
|
@ -259,29 +259,34 @@ export default function Home() {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{/* 今日龙钞数据 */}
|
||||
{/* 今日龙钞帖子数据统计 */}
|
||||
<div style={{ marginBottom: '20px' }}>
|
||||
<div style={{ color: 'rgba(255,255,255,0.7)', fontSize: '14px', marginBottom: '12px', paddingLeft: '4px' }}>🐉 今日龙钞数据</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.7)', fontSize: '14px', marginBottom: '12px', paddingLeft: '4px' }}>🐉 今日龙钞帖子数据统计</div>
|
||||
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(5, 1fr)', gap: '8px' }}>
|
||||
<div style={{ background: 'linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(239,68,68,0.05) 100%)', borderRadius: '8px', padding: '10px 6px', border: '1px solid rgba(239,68,68,0.2)', textAlign: 'center' }}>
|
||||
<div style={{ color: '#ef4444', fontSize: '16px', fontWeight: '700' }}>{dragonStats.dai4?.total || 0}</div>
|
||||
<div style={{ color: '#ef4444', fontSize: '18px', fontWeight: '700' }}>{dragonStats.dai4?.total || 0}</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.5)', fontSize: '10px' }}>带4</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.4)', fontSize: '9px', marginTop: '4px' }}>出售:{dragonStats.dai4?.deals || 0} 求购:{dragonStats.dai4?.wants || 0}</div>
|
||||
</div>
|
||||
<div style={{ background: 'linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(34,197,94,0.05) 100%)', borderRadius: '8px', padding: '10px 6px', border: '1px solid rgba(34,197,94,0.2)', textAlign: 'center' }}>
|
||||
<div style={{ color: '#22c55e', fontSize: '16px', fontWeight: '700' }}>{dragonStats.wu4?.total || 0}</div>
|
||||
<div style={{ color: '#22c55e', fontSize: '18px', fontWeight: '700' }}>{dragonStats.wu4?.total || 0}</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.5)', fontSize: '10px' }}>无4</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.4)', fontSize: '9px', marginTop: '4px' }}>出售:{dragonStats.wu4?.deals || 0} 求购:{dragonStats.wu4?.wants || 0}</div>
|
||||
</div>
|
||||
<div style={{ background: 'linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(59,130,246,0.05) 100%)', borderRadius: '8px', padding: '10px 6px', border: '1px solid rgba(59,130,246,0.2)', textAlign: 'center' }}>
|
||||
<div style={{ color: '#3b82f6', fontSize: '16px', fontWeight: '700' }}>{dragonStats.wu47?.total || 0}</div>
|
||||
<div style={{ color: '#3b82f6', fontSize: '18px', fontWeight: '700' }}>{dragonStats.wu47?.total || 0}</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.5)', fontSize: '10px' }}>无47</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.4)', fontSize: '9px', marginTop: '4px' }}>出售:{dragonStats.wu47?.deals || 0} 求购:{dragonStats.wu47?.wants || 0}</div>
|
||||
</div>
|
||||
<div style={{ background: 'linear-gradient(135deg, rgba(168,85,247,0.15) 0%, rgba(168,85,247,0.05) 100%)', borderRadius: '8px', padding: '10px 6px', border: '1px solid rgba(168,85,247,0.2)', textAlign: 'center' }}>
|
||||
<div style={{ color: '#a855f7', fontSize: '16px', fontWeight: '700' }}>{dragonStats.wu247?.total || 0}</div>
|
||||
<div style={{ color: '#a855f7', fontSize: '18px', fontWeight: '700' }}>{dragonStats.wu247?.total || 0}</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.5)', fontSize: '10px' }}>无247</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.4)', fontSize: '9px', marginTop: '4px' }}>出售:{dragonStats.wu247?.deals || 0} 求购:{dragonStats.wu247?.wants || 0}</div>
|
||||
</div>
|
||||
<div style={{ background: 'linear-gradient(135deg, rgba(236,72,153,0.15) 0%, rgba(236,72,153,0.05) 100%)', borderRadius: '8px', padding: '10px 6px', border: '1px solid rgba(236,72,153,0.2)', textAlign: 'center' }}>
|
||||
<div style={{ color: '#ec4899', fontSize: '16px', fontWeight: '700' }}>{dragonStats.wu347?.total || 0}</div>
|
||||
<div style={{ color: '#ec4899', fontSize: '18px', fontWeight: '700' }}>{dragonStats.wu347?.total || 0}</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.5)', fontSize: '10px' }}>无347</div>
|
||||
<div style={{ color: 'rgba(255,255,255,0.4)', fontSize: '9px', marginTop: '4px' }}>出售:{dragonStats.wu347?.deals || 0} 求购:{dragonStats.wu347?.wants || 0}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue