-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy path_base.js
51 lines (50 loc) · 1.16 KB
/
_base.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
var rule = {
类型: '影视',
title: '',
host: '',
url: '',
searchUrl: '',
headers: {'User-Agent': 'UC_UA'},
searchable: 1,
quickSearch: 0,
filterable: 0,
double: true,
play_parse: true,
limit: 6,
class_name: '电影&电视剧&动漫&短剧&综艺',
class_url: '1&2&3&4&5',
hostJs: async function () {
let {HOST} = this;
return await request(HOST);
},
预处理: async function () {
},
class_parse: async function () {
let {input, pdfa, pdfh, pd} = this;
return {}
},
lazy: async function () {
let {input} = this;
return input
},
推荐: async function () {
let {input, pdfa, pdfh, pd} = this;
let d = [];
return setResult(d)
},
一级: async function () {
let {input, pdfa, pdfh, pd} = this;
let d = [];
return setResult(d)
},
二级: async function () {
let {input, pdfa, pdfh, pd} = this;
let VOD = {};
return VOD
},
搜索: async function () {
let {input, pdfa, pdfh, pd} = this;
let d = [];
return setResult(d)
}
}