修改样式

This commit is contained in:
linxd
2025-08-06 14:17:38 +08:00
parent 49105505fa
commit c7ae51ebd3
8 changed files with 83 additions and 44 deletions

View File

@ -199,7 +199,7 @@ const IndexPage: React.FC<any> = ({ user }) => {
className="cardTitleText"
onClick={() => {
history.push({
pathname: '/announce/announceInfo',
pathname: '/notice/noticeInfo',
search: '?id=' + item.id,
});
}}
@ -361,7 +361,7 @@ const IndexPage: React.FC<any> = ({ user }) => {
<div className="linkTitle"></div>
<Card>
{friendshipConnections.map((item, index) => (
<Card.Grid key={item.id} style={{ width: '16.6667%', height: '130px' }}>
<Card.Grid onClick={() => window.open(item.url)} key={item.id} style={{ width: '16.6667%', height: '130px' }}>
<img src={item.thumbnail} alt="" />
</Card.Grid>
))}