var rule = { 类型: '影视', title: '专享影视', host: 'https://zxys.cc', url: '/show/id/fyclass/page/fypage.html', searchUrl: '/search/page/fypage/wd/**.html', headers: {'User-Agent': 'UC_UA'}, searchable: 1, quickSearch: 0, filterable: 0, double: true, play_parse: true, limit: 6, class_name: '电影&电视剧&动漫&短剧&综艺', class_url: 'dianying&dianshi&dongman&duanju&zongyi', lazy: async function () { let {input, pdfa, pdfh, pd} = this const html = JSON.parse((await req(input)).content.match(/r player_.*?=(.*?) { d.push({ title: pdfh(it, 'a&&title'), pic_url: pd(it, '.lazyloaded&&data-src'), desc: pdfh(it, '.module-item-text&&Text'), url: pd(it, 'a&&href'), }) }); return setResult(d) }, 一级: async function () { let {input, pdfa, pdfh, pd} = this; let html = await request(input); let d = []; let data = pdfa(html, '.module-list .module-item'); data.forEach((it) => { d.push({ title: pdfh(it, 'a&&title'), pic_url: pd(it, '.lazyloaded&&data-src'), desc: pdfh(it, '.module-item-text&&Text'), url: pd(it, 'a&&href'), }) }); return setResult(d) }, 二级: async function () { let {input, pdfa, pdfh, pd} = this; let html = await request(input); let VOD = {}; VOD.vod_name = pdfh(html, '.page-title&&Text'); VOD.vod_content = pdfh(html, '.vod_content&&Text'); let playlist = pdfa(html, '.sort-item') let tabs = pdfa(html, '.module-tab-item'); let playmap = {}; tabs.map((item, i) => { const form = pdfh(item, 'Text') const list = playlist[i] const a = pdfa(list, 'body&&a') a.map((it) => { let title = pdfh(it, 'a&&Text') let urls = pd(it, 'a&&href', input) if (!playmap.hasOwnProperty(form)) { playmap[form] = []; } playmap[form].push(title + "$" + urls); }); }); VOD.vod_play_from = Object.keys(playmap).join('$$$'); const urls = Object.values(playmap); const playUrls = urls.map((urllist) => { return urllist.join("#") }); VOD.vod_play_url = playUrls.join('$$$'); return VOD }, 搜索: async function () { let {input, pdfa, pdfh, pd} = this; let html = await request(input); let d = []; let data = pdfa(html, '.module-items .module-search-item'); data.forEach((it) => { d.push({ title: pdfh(it, 'a&&title'), pic_url: pd(it, '.lazyload&&data-src'), desc: pdfh(it, '.module-item-text&&Text'), url: pd(it, 'a&&href'), content: pdfh(it, '.video-info-aux&&Text'), }) }); return setResult(d) } }