Browse Source

Merge branch 'dev/v4.8.94_wmh' of qmx/jy into feature/v4.8.94

wenmenghao 1 năm trước cách đây
mục cha
commit
179783426c
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/web/templates/pc/messageDetail.html

+ 2 - 2
src/web/templates/pc/messageDetail.html

@@ -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 () {}