mirror of
https://github.com/qist/tvbox.git
synced 2026-04-23 07:52:49 +00:00
update ALL
This commit is contained in:
@@ -66,28 +66,15 @@ class JianPianSpider extends Spider {
|
||||
let vodShort = new VodShort();
|
||||
vodShort.vod_id = data["id"]
|
||||
if (data["path"] !== undefined) {
|
||||
if (!this.catOpenStatus) {
|
||||
vodShort.vod_pic = data["path"] + "@Referer=www.jianpianapp.com@User-Agent=jianpian-version353@JPAUTH=y261ow7kF2dtzlxh1GS9EB8nbTxNmaK/QQIAjctlKiEv"
|
||||
} else {
|
||||
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["path"])
|
||||
}
|
||||
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["path"])
|
||||
} else {
|
||||
if (!this.catOpenStatus) {
|
||||
vodShort.vod_pic = data["thumbnail"] + "@Referer=www.jianpianapp.com@User-Agent=jianpian-version353@JPAUTH=y261ow7kF2dtzlxh1GS9EB8nbTxNmaK/QQIAjctlKiE"
|
||||
|
||||
} else {
|
||||
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["thumbnail"])
|
||||
}
|
||||
vodShort.vod_pic = this.jsBase + Utils.base64Encode(data["thumbnail"])
|
||||
}
|
||||
vodShort.vod_name = data["title"]
|
||||
if (this.catOpenStatus) {
|
||||
vodShort.vod_remarks = `评分:${data["score"]}`
|
||||
} else {
|
||||
if (data["playlist"] !== undefined) {
|
||||
vodShort.vod_remarks = `评分:${data["score"]}` + " " + data["playlist"]["title"]
|
||||
} else {
|
||||
vodShort.vod_remarks = `评分:${data["score"]}`
|
||||
}
|
||||
if (data["mask"] !== undefined){
|
||||
vodShort.vod_remarks = data["mask"]
|
||||
}else{
|
||||
vodShort.vod_remarks = data["playlist"]["title"]
|
||||
}
|
||||
vod_list.push(vodShort)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user