...
|
...
|
@@ -64,7 +64,7 @@ |
|
|
<br>
|
|
|
内容来源: <span id="sourceStr"></span>
|
|
|
<br>
|
|
|
内容统计: 文字-<span id="contentLength"></span>字 图片-<span
|
|
|
内容统计: 文字-<span id="contentLength" ></span>字 图片-<span
|
|
|
id="imgSize"></span>张 关联商品-<span id="productSize"></span>个
|
|
|
<br>
|
|
|
审核状态:<span id="authStatusStr"></span>
|
...
|
...
|
@@ -74,8 +74,10 @@ |
|
|
|
|
|
<tr style="height: 60px">
|
|
|
<td>
|
|
|
<div id="articleContent">
|
|
|
|
|
|
<div id="articleContent1" style="float: left">
|
|
|
<span>文字内容:</span>
|
|
|
</div>
|
|
|
<div id="articleContent" style=" white-space: pre-wrap;float: left">
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
...
|
...
|
@@ -178,7 +180,7 @@ |
|
|
$("#nickName").html(detailInfo.nickName);
|
|
|
$("#sourceStr").html(detailInfo.sourceStr);
|
|
|
$("#contentLength").html(detailInfo.articleContent == null ? 0 : detailInfo.articleContent.length);
|
|
|
$("#articleContent").html(detailInfo.articleContent == null || detailInfo.articleContent.length == 0 ? "文字内容:空" : "文字内容:" + detailInfo.articleContent);
|
|
|
$("#articleContent").html(detailInfo.articleContent == null || detailInfo.articleContent.length == 0 ? "空" : detailInfo.articleContent);
|
|
|
|
|
|
var imgSize = detailInfo.imgList == null ? 0 : detailInfo.imgList.length;
|
|
|
$("#imgSize").html(imgSize);
|
...
|
...
|
|