let yidata = { "链接": "https://m.taomanhua.com/",//会写入MY_HOME "主页": function () { let d = []; MY_URL = MY_HOME; let html = request(MY_URL); var Label_set = pdfa(html, '#js_content&&.mult.sow') Label_set.forEach((data) => { d.push({ title: pdfh(data, 'h2&&Text'), col_type: "rich_text" }); var item = pdfa(data, '.mult-warp.siw&&li.r1c3'); item = item.length ? item : pdfa(data, '.mult-warp.siw&&li.r1c2'); item.forEach((datas) => { d.push({//主页源不需要url title: pdfh(datas, '.card-title&&Text'), desc: pdfh(datas, '.card-text&&Text'), pic_url: (item.length / 3) % 1 === 0 ? pd(datas, 'img&&data-src').replace('-300x400.jpg', '') : pd(datas, 'img&&data-src'), col_type: (item.length / 3) % 1 === 0 ? "movie_3_marquee" : "movie_2" }); }); }); return d; }, "搜索": function () {//做为主页源时,视界自带搜索 let d = []; MY_URL = MY_HOME + "api/getsortlist/?product_id=3&productname=smh&platformname=wap&orderby=click&search_key=" + name + "&page=" + page + "&size=30"; let code = JSON.parse(request(MY_URL)).data.data code.forEach(item => { d.push({ title: item.comic_name, desc: '最新:' + item.last_chapter_name, pic_url: item.cover_img + "@Referer=", content: item.cartoon_desc, extra: { name: item.comic_name, img: item.cover_img } }); }); return d; } } let erdata = { "作者": "嗨又是我",//接口作者 "链接": "https://m.taomanhua.com/",//会写入MY_HOME "搜索": function () {//做为搜索源时,聚合搜索换源列表数据 let d = []; MY_URL = MY_HOME + "api/getsortlist/?product_id=3&productname=smh&platformname=wap&orderby=click&search_key=" + name + "&page=1&size=30"; let code = JSON.parse(request(MY_URL)).data.data code.forEach(item => { if (item.comic_name.includes(name)) { d.push({ title: item.comic_name,//名称 desc: item.last_chapter_name,//更新状态或最新章节 pic_url: item.cover_img + "@Referer=",//网站图标 url: MY_HOME + item.comic_newid,//原站二级链接 }); } }); return d; }, "前提": `var dataid = pdfh(html, "#COMMENT&&data-ssid");`,//这里写后面加载需要的前提需要的数据,变量定义需要用var,也可以留空 "详情": { "标题1": `作者$$$pdfh(html, '#detail&&.author&&Text')`,//用$$$间隔需要取值的标题和内容 "标题2": `分类$$$pdfa(html, '#detail&&.type').map(data => pdfh(data, 'Text')).join(" ")`, "描述": `简介$$$pdfh(html, '#js_desc_content&&Text')`, }, "选集": `pdfa(html, '#js_chapters&&li').map((data) => { let 选集列表 = {}; 选集列表.title = pdfh(data, 'Text') 选集列表.url = MY_HOME + "api/getchapterinfov2?product_id=1&productname=kmh&platformname=wap&isWebp=1&quality=high&comic_id="+dataid+"&chapter_newid="+pdfh(data, 'a&&href').replace('.html', '').split('/')[2]; return 选集列表; })`, "解析": `$('').lazyRule(() => {let code = JSON.parse(request(input)).data.current_chapter.chapter_img_list; return "pics://" + code.join("@Referer=https://m.taomanhua.com/&&") + '@Referer=https://m.taomanhua.com/'; });` }