|
@@ -89,7 +89,12 @@ class NotifyBoardDetail extends Component {
|
|
|
className={notifyDetail.noStatu === '已读' ?
|
|
className={notifyDetail.noStatu === '已读' ?
|
|
|
'notify-item-statuAl' : 'notify-item-statuNo'}>{notifyDetail.noStatu}</span>
|
|
'notify-item-statuAl' : 'notify-item-statuNo'}>{notifyDetail.noStatu}</span>
|
|
|
</div>
|
|
</div>
|
|
|
- <div className='notify-detail-modal-content-text'>{notifyDetail.noContent}</div>
|
|
|
|
|
|
|
+ <div className='notify-detail-modal-content-text'
|
|
|
|
|
+ dangerouslySetInnerHTML={{
|
|
|
|
|
+ __html: notifyDetail.noContent ?
|
|
|
|
|
+ notifyDetail.noContent.replaceAll('\n', '<br/>')
|
|
|
|
|
+ : ''
|
|
|
|
|
+ }}></div>
|
|
|
<div style={{padding: '10px'}}>
|
|
<div style={{padding: '10px'}}>
|
|
|
{enclosureItem}
|
|
{enclosureItem}
|
|
|
</div>
|
|
</div>
|