我的通知

This commit is contained in:
谢思 2021-09-15 15:36:16 +08:00
parent c1ea865f1e
commit 6ca0e48697
4 changed files with 16 additions and 6 deletions

View File

@ -198,7 +198,7 @@ function NoticeContent({ visible, showNotification, resetUserInfo, current_user:
<Badge color="#FA2020" />
</span>
<div className="noticeCont-text">
<span className="content-span atme-cont-span" dangerouslySetInnerHTML={{ __html: item.content }}></span>
<span className="content-span atme-cont-span" dangerouslySetInnerHTML={{ __html: "<b>" + item.sender.name +"</b> " + item.content +"中@我"}}></span>
<span className="timeSpan">{item.time_ago}</span>
</div>
</div>

View File

@ -232,12 +232,12 @@
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2; /* 这里是超出几行省略 */
-webkit-line-clamp: 2;
overflow: hidden;
}
& .atme-cont-span{
width: 275px;
width: 272px;
}
& .notice-cont-span{

View File

@ -13,7 +13,7 @@ function MyNotice(props) {
let resetUserInfo = props.resetUserInfo;
let pageSize = 15;
const [noticeType, setNoticeType] = useState("0");//tab
const [noticeType, setNoticeType] = useState("2");//tab
const [selectedNum, setSelectedNum] = useState(0);//@
const [isBatchDelete, setIsBatchDelete] = useState(false);//@
const [batchDeleteCheckedAll, setBatchDeleteCheckAll] = useState(false);//@--
@ -192,6 +192,7 @@ function MyNotice(props) {
</div>
)
} else if (noticeType === "2") {
console.log(item);
//@
return (
<div className="mynotice-content vertical-center-style" key={item.id}>
@ -201,7 +202,8 @@ function MyNotice(props) {
{item.sender && <img src={`https://testforgeplus.trustie.net//${item.sender.image_url}`} className="currentImg" />}
<div className="atme-notice-text">
<div className="at-badge">{item.status === 1 ? <Badge color="#FA2020" /> : <span className="system-notice-blank"></span>}</div>
<div className={item.notification_url?"highlightSpan float-right-little":"float-right-little"} onClick={() => {item.notification_url && window.open("https://"+`${item.notification_url}`)}} dangerouslySetInnerHTML={{__html: item.content}}></div>
{item.sender && <div className="atme-sender-name boldSpan">{item.sender.name}</div>}
<div className={item.notification_url?"highlightSpan atme-cont":"atme-cont"} onClick={() => {item.notification_url && window.open("https://"+`${item.notification_url}`)}} dangerouslySetInnerHTML={{__html: item.content+" 中@我"}}></div>
</div>
</div>
<div className="mynotice-cont vertical-center-style">

View File

@ -142,14 +142,22 @@ button:active {
display: none;
}
.atme-notice-text{
display: flex;
position: relative;
margin-left: 12px;
max-width: 48rem;
word-break: break-all;
& .at-badge{
position:absolute;
}
& .atme-sender-name{
padding: 0 4px;
}
& .atme-cont{
max-width: 42rem;
}
& .highlightSpan{
// margin-left: 12px;
&:hover{