...
|
...
|
@@ -225,7 +225,7 @@ function parseHeader(json) { |
|
|
let {advertList, textNoticeList} = resourceList;
|
|
|
|
|
|
let uri = json.forumPic ? json.forumPic : '';
|
|
|
let title = json.title ? json.title : '';
|
|
|
let title = json.forumName ? json.forumName : '';
|
|
|
let post = number10KFormater(json.postsNum);
|
|
|
let comment = number10KFormater(json.commentsNum);
|
|
|
let like = number10KFormater(json.praiseNum);
|
...
|
...
|
@@ -246,8 +246,8 @@ function parseHeader(json) { |
|
|
if (textNoticeList.time) {
|
|
|
noticeDuration = textNoticeList.time;
|
|
|
};
|
|
|
if (noticeList.open) {
|
|
|
noticeOpen = noticeList.open;
|
|
|
if (textNoticeList.open) {
|
|
|
noticeOpen = textNoticeList.open;
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|