|
|
@@ -76,7 +76,7 @@ readerm.init(function (data, mulu) {
|
|
|
readerUIFrame(data);
|
|
|
ChapterList = mulu;
|
|
|
readerMuluFrame(mulu, '2');
|
|
|
- $("#ChapterTitle").text(data.ct);
|
|
|
+ $("#ChapterTitle").text(data.pt);
|
|
|
setHtmlStyle()
|
|
|
setPageBtnPost()
|
|
|
});
|
|
|
@@ -103,8 +103,8 @@ function ReaderBaseFrame(container) { //UI渲染层
|
|
|
// 封面-0,扉页-1 不需要展示章节名称
|
|
|
if (!['0', '1'].includes(Chapter_id + '')) {
|
|
|
html += `<br/><br/><br/>`;
|
|
|
- if (jsonObj.ct && jsonObj.ct !== jsonObj.t) {
|
|
|
- html += `<h3 style=font-size:${fontSizeAdd6};color:${fontColor}">${jsonObj.ct}</h3><br/>`;
|
|
|
+ if (jsonObj.pt && jsonObj.pt !== jsonObj.t) {
|
|
|
+ html += `<h3 style=font-size:${fontSizeAdd6};color:${fontColor}">${jsonObj.pt}</h3><br/>`;
|
|
|
}
|
|
|
html += `<h4 style=font-size:${fontSizeAdd6};color:${fontColor}">${jsonObj.t}</h4>`;
|
|
|
}
|
|
|
@@ -278,7 +278,7 @@ function ReaderModel() { //数据交互层
|
|
|
// // var url=data.jsonp;
|
|
|
// // Util.getJsonp(url,function(data){
|
|
|
// callback && callback(data);
|
|
|
- // $("#ChapterTitle").text(data.ct);
|
|
|
+ // $("#ChapterTitle").text(data.pt);
|
|
|
// // });//通过url来获取加密信息,并解密
|
|
|
// }
|
|
|
// }, 'json');
|