|
@@ -98,9 +98,9 @@
|
|
|
success:function (res) {
|
|
|
var data = res.data
|
|
|
if (data) {
|
|
|
- $('.msg-title').text(data.title)
|
|
|
+ $('.msg-title').html(data.title)
|
|
|
$('.msg-date').text(dateMatter(data.createtime || Date.now()))
|
|
|
- $('.msg-content').text(data.content)
|
|
|
+ $('.msg-content').html(data.content)
|
|
|
}
|
|
|
},
|
|
|
error:function () {}
|