Commit 1c9be452 authored by 前端-许佳敏's avatar 前端-许佳敏

fix: 去掉消息列表跳转

parent 40f75c73
......@@ -65,7 +65,7 @@ const Message: React.FC<{}> = () => {
const renderMessage = (data) => {
return (
<div onClick={() => handleRead(data.id, data.url)} style={{cursor: "pointer"}}>
<div>
<StatusTag type={data.type == 1 ? 'primary' : 'success'} title={data.type === 1 ? '系统消息' : '平台消息'} />
<span className={styles.messageTitle}>{data.title || ''}</span>
<span className={styles.messageText}>{data.content || ''}</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment