mirror of
https://github.com/venera-app/venera-configs.git
synced 2025-09-27 16:37:23 +00:00
refactor: 优化漫画详情解析逻辑 (#101)
* refactor: 优化漫画详情解析逻辑并格式化代码 - 将漫画详情返回对象改为 ComicDetails 实例 - 新增 updateDate 字段并转换日期格式 * chore: 更新包子漫画版本号至1.0.5
This commit is contained in:
12
baozi.js
12
baozi.js
@@ -5,7 +5,7 @@ class Baozi extends ComicSource {
|
|||||||
// 唯一标识符
|
// 唯一标识符
|
||||||
key = "baozi"
|
key = "baozi"
|
||||||
|
|
||||||
version = "1.0.4"
|
version = "1.0.5"
|
||||||
|
|
||||||
minAppVersion = "1.0.0"
|
minAppVersion = "1.0.0"
|
||||||
|
|
||||||
@@ -338,19 +338,21 @@ class Baozi extends ComicSource {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// updateTime 将 Y年 M月 D日 转化为 Y-M-D
|
||||||
|
let updateDate = updateTime.replace(/年/g, '-').replace(/月/g, '-').replace(/日/g, '');
|
||||||
|
|
||||||
return {
|
return new ComicDetails({
|
||||||
title: title,
|
title: title,
|
||||||
cover: cover,
|
cover: cover,
|
||||||
description: description,
|
description: description,
|
||||||
tags: {
|
tags: {
|
||||||
"作者": [author],
|
"作者": [author],
|
||||||
"更新": [updateTime],
|
|
||||||
"标签": tags
|
"标签": tags
|
||||||
},
|
},
|
||||||
chapters: chapters,
|
chapters: chapters,
|
||||||
recommend: recommend
|
recommend: recommend,
|
||||||
}
|
updateTime: updateDate,
|
||||||
|
})
|
||||||
},
|
},
|
||||||
loadEp: async (comicId, epId) => {
|
loadEp: async (comicId, epId) => {
|
||||||
const images = [];
|
const images = [];
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
"name": "包子漫画",
|
"name": "包子漫画",
|
||||||
"fileName": "baozi.js",
|
"fileName": "baozi.js",
|
||||||
"key": "baozi",
|
"key": "baozi",
|
||||||
"version": "1.0.4"
|
"version": "1.0.5"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Picacg",
|
"name": "Picacg",
|
||||||
|
Reference in New Issue
Block a user