起点

https://www.qidian.com/

autobcb_admin (12020)01/24 01:30

起点 正版只能看未加密
二维码导入(APP尚未完成该功能)
{
    "bookSourceUrl": "https:\/\/www.qidian.com\/",
    "bookSourceName": "起点",
    "enabledExplore": true,
    "enabled": true,
    "bookSourceGroup": "正版",
    "author": "",
    "help": true,
    "html": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <title>默认书源<\/title>\n<\/head>\n<body>\n\n<\/body>\n<!-- 没用到jq请去掉-->\n<script src=\"https:\/\/vc.jd.com\/web\/js\/jquery-3.1.1.min.js\"><\/script>\n<script>\n    var isCookieJar=true;\/\/ 不需要CookieJar请修改此处\n    class FlutterJSBridge {\n        constructor() {\n            this.init(); \/\/前台webview 里必须删除这行\n        }\n\n        init() {\n            if (window.flutter_inappwebview) {\n                this.isReady = true;\n                this.CookieJar();\n            } else {\n                window.addEventListener('flutterInAppWebViewPlatformReady', () => {\n                    this.isReady = true;\n                    console.log('JSBridge初始化完成');\n                    this.CookieJar();\n                });\n            }\n        }\n\n        \/\/通知原生页面初始化完成,仅在书源和tts生效,webview请勿使用,只有通知加载成功后才允许运行,否则会一直等待加载成功\n        async CookieJar() {\n            try {\n                await window.flutter_inappwebview.callHandler('CookieJar', isCookieJar);\n            } catch (error) {\n                console.error('汇报完成准备失败:', error);\n            }\n        }\n\n        \/\/获取应用编译版本\n        async getbuildNumber() {\n            try {\n                return await window.flutter_inappwebview.callHandler('buildNumber');\n            } catch (error) {\n                return  0;\n            }\n        }\n\n        \/\/获取应用版本\n        async getversion() {\n            try {\n                return await window.flutter_inappwebview.callHandler('version');\n            } catch (error) {\n                return  \"0.0.0\";\n            }\n        }\n\n        \/\/将简体字转成繁体字\n        async toTraditional(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('toTraditional',str);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n\n        \/\/将繁体字转成简体字\n        async toSimplified(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('toSimplified',str);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/播放朗读引擎仅tts源生效\n        async voice() {\n            try {\n                return await window.flutter_inappwebview.callHandler('voice');\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n\n        \/\/获取设备唯一id\n        async getDeviceid() {\n            try {\n                return await window.flutter_inappwebview.callHandler('id');\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/获取设备平台 此处返回 windows、macos、ios、ohos、android\n        async getDevice() {\n            try {\n                return await window.flutter_inappwebview.callHandler('device');\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/获取轻悦时光登录用户名,没登录返回为空\n        async getLoginUser() {\n            try {\n                return await window.flutter_inappwebview.callHandler('getLoginUser');\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/输出日志,前台webview请勿使用\n        \/\/str 为 String\n        async log(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('log',str);\n            } catch (error) {\n                return  false;\n            }\n        }\n\n        \/\/书源调试时可输出 html 代码到前台\n        \/\/type 0 搜索源码 , 1详情源码 ,2目录源码 ,3正文源码\n        \/\/str 为 String\n        \/\/type 为int\n        async text(type,str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('text',type,str);\n            } catch (error) {\n                return  false;\n            }\n        }\n\n        \/\/toast弹窗\n        \/\/str 为 String\n        async showToast(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('showToast',str);\n            } catch (error) {\n                return  false;\n            }\n        }\n\n        \/\/webview 里禁止使用,webview请使用js获取ua (navigator.userAgent)\n        \/\/获取默认ua\n        async getWebViewUA() {\n            try {\n                return await window.flutter_inappwebview.callHandler('getWebViewUA');\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/通过url打开外部应用\n        \/\/url 为 String\n        async openurl(url) {\n            try {\n                return await window.flutter_inappwebview.callHandler('openurl',url,\"\");\n            } catch (error) {\n                return  false;\n            }\n        }\n\n        \/\/通过url打开外部应用并附带mimeType\n        \/\/url 为 String\n        \/\/mimeType 为 String\n        async openurlwithMimeType(url,mimeType) {\n            try {\n                return await window.flutter_inappwebview.callHandler('openurl',url,mimeType);\n            } catch (error) {\n                return  false;\n            }\n        }\n\n        \/**\n         * 使用webView访问网络\n         * @param html 直接用webView载入的html, 如果html为空直接访问url\n         * @param url html内如果有相对路径的资源不传入url访问不了\n         * @param js 用来取返回值的js语句, 没有就返回整个源代码\n         * @param body 当参数不为空的时候,会以post请求,此时请务必在 header 中带上content-type\n         * @param header 请求的header头,此参数必须是json字符串\n         * @return 返回js获取的内容\n         *\/\n        async webview(url,js,html,body,header) {\n            try {\n                return await window.flutter_inappwebview.callHandler('webview',url,js,html,body,header,\"\",\"\");\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/**\n         * overrideUrlRegex 为正则表达式\n         * 使用方法和上面的一样\n         * 但返回的内容为正则到的内容,如果无法正则到则返回 js 获取的内容,如果 js 为空则返回页面 html\n         *\/\n        async webViewGetOverrideUrl(url,js,html,body,header,overrideUrlRegex) {\n            try {\n                return await window.flutter_inappwebview.callHandler('webview',url,js,html,body,header,overrideUrlRegex,\"\");\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/**\n         * 使用webView获取资源url\n         * urlregex 为正则表达式\n         * 使用方法和上面的一样\n         * 但返回的内容为正则到的内容,如果无法正则到则返回 js 获取的内容,如果 js 为空则返回页面 html\n         *\/\n        async webViewGetSource(url,js,html,body,header,urlregex) {\n            try {\n                return await window.flutter_inappwebview.callHandler('webview',url,js,html,body,header,\"\",urlregex);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/**\n         * 使用webView拦截 ajax\n         * ajaxregex 为正则表达式,通过 ajax 匹配 path\n         * 匹配成功返回 ajax 的结果 失败返回 html\n         *\/\n        async webViewGetAjax(url,html,body,header,ajaxregex) {\n            try {\n                return await window.flutter_inappwebview.callHandler('webviewajax',url,html,body,header,ajaxregex);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n\n\n        \/**\n         * 启动前台 webview 访问链接并获取结束时的 html,可用于手工过盾\n         * @param url 网址\n         * @param title 标题\n         * @param header 请求的header头,此参数必须是json字符串\n         * @return 返回网页的内容\n         *\/\n        async startBrowser(url,title,header) {\n            try {\n                return await window.flutter_inappwebview.callHandler('startBrowser',url,title,header);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/**\n         * 启动前台 webview 并对每次打开的 url 进行拦截\n         * @param url 网址\n         * @param title 标题\n         * @param header 请求的header头,此参数必须是json字符串\n         *\/\n        async startBrowserWithShouldOverrideUrlLoading(url,title,header) {\n            try {\n                return await window.flutter_inappwebview.callHandler('startBrowserWithShouldOverrideUrlLoading',url,title,header);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/专门为段评设置的半屏显示,不返回任何东西\n        async startBrowserDp(url,title) {\n            try {\n                return await window.flutter_inappwebview.callHandler('startBrowserDp',url,title);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/仅前台webview可以使用,返回按钮,返回上一个页面\n        async back() {\n            try {\n                return await window.flutter_inappwebview.callHandler('back');\n            } catch (error) {\n                return  false;\n            }\n        }\n\n        \/\/将 utf8字符串转到 gbk 并 url 编码\n        async utf8ToGbkUrlEncoded(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('utf8ToGbkUrlEncoded',str);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/*\n        * @param str为图片链接\n        * @param header 请求的header头,此参数必须是json字符串\n        * 此函数是让用户输入图片中的验证码,当链接为空则直接让用户输入验证码\n        *\/\n        async getVerificationCode(str,header) {\n            try {\n                return await window.flutter_inappwebview.callHandler('getVerificationCode',str,header);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/提交内容bookUrl,我会调用书源 info 函数来获取这本书的信息\n        async addbook(bookUrl) {\n            try {\n                return await window.flutter_inappwebview.callHandler('addbook',bookUrl);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n\n        \/\/获取书本当前阅读章节index\n        async getdurChapterIndex(bookUrl) {\n            try {\n                return await window.flutter_inappwebview.callHandler('getdurChapterIndex',bookUrl);\n            } catch (error) {\n                return  0;\n            }\n        }\n\n        \/\/utf8 字符串转base64\n        async base64encode(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('base64encode',str);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n        \/\/base64 转utf8字符串\n        async base64decode(str) {\n            try {\n                return await window.flutter_inappwebview.callHandler('base64decode',str);\n            } catch (error) {\n                return  \"\";\n            }\n        }\n\n\n\n    }\n\n    \/\/webview下isCookieJar必定true 会自动处理cookie\n    \/\/以下提交的url,headers,body 都必须为字符串,headers必须为json字符串\n    \/\/当followRedirects 为 false 时不处理重定向,当为 true 时会自动处理重定向 ,如不明白用途直接用 true 最佳\n    \/\/ 以下所有参数除当followRedirects外均为 String\n    \/\/ 如果需要使用http2协议 请在url 前添加 http2:\/\/ ,例如 http2:\/\/baidu.com\n    \/\/ 如果https一直被盾拦截 ,可以使用https2协议\n    class Http {\n        constructor() {}\n\n        \/*\n         * 通用返回字段\n         * method post get 或者 head\n         * body 请求返回后的字节的 base64\n         * headers  map<String,List<String>> 可通过headers[\"\"]来或者\n         * statusCode 状态码\n         * statusMessage\n         * data 返回后的字节 格式化后的内容\n         *\/\n        async Get(url,headers,followRedirects) {\n            try {\n                return await window.flutter_inappwebview.callHandler('http',\"get\",url,\"\",JSON.stringify(headers),followRedirects,\"\");\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        async Head(url,headers,followRedirects) {\n            try {\n                return await window.flutter_inappwebview.callHandler('http',\"head\",url,\"\",JSON.stringify(headers),followRedirects,\"\");\n            } catch (error) {\n                return  null;\n            }\n        }\n\n\n        async Post(url,headers,body,contenttype,followRedirects) {\n            try {\n                return await window.flutter_inappwebview.callHandler('http',\"post\",url,body,JSON.stringify(headers),followRedirects,contenttype);\n            } catch (error) {\n                return  null;\n            }\n        }\n    }\n\n    class Cache {\n        constructor() {}\n        async get(key) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cache.get',key);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        async set(key,value) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cache.set',key,value);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        async remove(key) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cache.remove',key);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        \/\/如果登录为弹窗格式的,里面输入框输入的内容可以通过这个函数获取,默认返回的json格式或者为空,需要自行转换\n        async getLoginInfo(){\n            return await  this.get(\"LoginInfo\")\n        }\n\n        \/\/将修改后的弹窗输入内容报错 ,必须 JSON.stringify,不然会出错\n        async putLoginInfo(info){\n            return await  this.set(\"LoginInfo\",info)\n        }\n\n        \/\/获取书本变量\n        async getbookVariable(bookurl){\n            return await  this.get(bookurl)\n        }\n\n        \/\/写入书本变量\n        async setbookVariable(bookurl,value){\n            return await  this.set(bookurl,value)\n        }\n    }\n\n    class Cookie {\n        constructor() {}\n\n        \/\/通过url获取当前url的所有cookie\n        async get(url) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cookie.get',url);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        \/\/通过url删除当前url的所有cookie\n        async remove(url) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cookie.remove',url);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n\n        \/\/通过url保存当前url的所有cookie\n        async set(url,value) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cookie.set',url,value);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        \/\/设置单独一个cookie\n        async setCookie(url,key,value) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cookie.setcookie',url,key,value);\n            } catch (error) {\n                return  null;\n            }\n        }\n\n        \/\/通过 url 获取单个 cookie 的值\n        async getCookie(url,value) {\n            try {\n                return await window.flutter_inappwebview.callHandler('cookie.getCookie',url,value);\n            } catch (error) {\n                return  null;\n            }\n        }\n    }\n\n    \/\/安全的创建一个 div 解析 html\n    function parseHTMLSafely(htmlStr) {\n        try {\n            \/\/ 在函数作用域内创建独立的临时容器\n            \/\/ 每个调用创建新的jQuery对象,互不影响\n            var tempDiv = document.createElement('div');\n            tempDiv.innerHTML = htmlStr;\n            return $(tempDiv);\n        } catch (e) {\n            flutterBridge.log(\"HTML解析错误:\"+e.message);\n            return $('<div>');\n        }\n    }\n\n    \/\/parseHTMLSafely 创建的用完后必须删除\n    function removeHTMLSafely(tempContainer) {\n        try {\n            tempContainer.innerHTML = '';\n            if (tempContainer.parentNode) {\n                tempContainer.parentNode.removeChild(tempContainer);\n            }\n        } catch (e) {\n            flutterBridge.log(\"HTML移除失败:\"+e.message);\n        }\n    }\n\n    \/\/移除 css js,创建parseHTMLSafely前如果用不上 cssjs 建议移除\n    function removeHTMLTags(htmlString) {\n        \/\/ 移除script标签\n        let result = htmlString.replace(\/<script\\b[^<]*(?:(?!<\\\/script>)<[^<]*)*<\\\/script>\/gi, '');\n        \/\/ 移除style标签\n        result = result.replace(\/<style\\b[^<]*(?:(?!<\\\/style>)<[^<]*)*<\\\/style>\/gi, '');\n        return result;\n    }\n\n<\/script>\n\n<script>\n    const flutterBridge = new FlutterJSBridge();\n    const cache = new Cache();\n    const http = new Http();\n    const cookie = new Cookie();\n    const  baseurl=\"https:\/\/www.qidian.com\"\n    const  headers={\n        \"User-Agent\": \"Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/58.0.3029.110 Safari\/537.36\"\n    }\n    async function search(key,page) {\n        var url=\"https:\/\/www.qidian.com\/so\/\"+encodeURIComponent(key)+\".html\"\n        if(page >1 ){\n            url=url+\"?page=\"+page\n        }\n        var data=await flutterBridge.webview(url,\"\",\"\",\"\",JSON.stringify(headers))\n        flutterBridge.text(0,data )\n        var books=[];\n        var html = $.parseHTML( data );\n        $(html).find(\".book-img-text\").find(\"li\").each(function(index) {\n            var $element = $(this);\n            var img = $element.find(\".book-img-box\").find(\"img\").attr('src');\n            var book={\n                \"bookUrl\":\"https:\"+$element.find(\".btn\").find(\"a\").attr('href'),\n                \"name\": $element.find(\".book-info-title\").text(),\n                \"author\": $element.find(\".author\").find(\"a\").eq(0).text(),\n                \"kind\": $element.find(\".author\").find(\"a\").eq(1).text(),\n                \"coverUrl\":\"https:\"+img,\n                \"intro\":$element.find(\".intro\").text(),\n                \"tocUrl\":\"https:\"+$element.find(\".btn\").find(\"a\").attr('href'),\n                \"wordCount\":\"\",\n                \"type\":0,\n                \"latestChapterTitle\":$element.find(\".update\").find(\"a\").text().trim(),\n            }\n            books.push(book);\n        });\n        return JSON.stringify(books);\n    }\n\n    async function info(bookurl) {\n        var data=await flutterBridge.webview(bookurl,\"\",\"\",\"\",JSON.stringify(headers))\n        flutterBridge.text(1,data )\n        var html = $.parseHTML( data );\n        var book={\n            \"bookUrl\":bookurl,\n            \"name\": $(html).find(\"#bookName\").text(),\n            \"author\": $(html).find(\".book-meta\").find(\".author\").text().replaceAll(\"作者:\",\"\"),\n            \"kind\": $(html).find(\".book-attribute\").text().replaceAll(\"\\n\",\"\").replaceAll(\"\\r\",\"\"),\n            \"coverUrl\":\"https:\"+ $(html).find(\".book-detail-img\").find(\"img\").attr('src'),\n            \"intro\": $(html).find(\"#book-intro-detail\").html(),\n            \"tocUrl\":bookurl,\n            \"wordCount\":\"\",\n            \"type\":0,\n            \"latestChapterTitle\": $(html).find(\".book-latest-chapter\").text(),\n        };\n        return JSON.stringify(book);\n    }\n\n    async function chapter(tocUrl,bookurl) {\n        var data=await flutterBridge.webview(bookurl,\"\",\"\",\"\",JSON.stringify(headers))\n        flutterBridge.text(2,data )\n        var html = $.parseHTML( data );\n        var chapters=[];\n        $(html).find(\".catalog-volume\").find(\"li\").each(function(index) {\n            var chapter={\n                \"name\" :$(this).find(\"a\").text(),\n                \"chapterId\":\"https:\"+ $(this).find(\"a\").attr('href'),\n                \"index\" :index,\n                \"isPay\":false,\n                \"isVip\":false,\n                \"isVolume\":false,\n                \"tag\":\"\"\n            };\n            chapters.push(chapter);\n        });\n        return JSON.stringify(chapters);\n    }\n\n    async function content(url,bookurl) {\n        var data=await flutterBridge.webview(url,\"\",\"\",\"\",JSON.stringify(headers))\n        flutterBridge.text(3,data )\n        var html = $.parseHTML( data );\n        var str=\"\"\n        $(html).find(\"main\").children().each(function(index) {\n            var text=$(this).find('.content-text');\n            if(text){\n                str=str+\"\\n\"+text.text()\n            }\n            \/\/flutterBridge.log($(this).html())\n        });\n        return str;\n    }\n\n    async function getfinds() {\n        var finds=[\n            {\"title\":\"男频\",\"url\":\"https:\/\/www.qidian.com\/all\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.4}},\n            {\"title\":\"免费小说\",\"url\":\"https:\/\/www.qidian.com\/all\/vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"精品小说\",\"url\":\"https:\/\/www.qidian.com\/all\/sign2-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"限时免费\",\"url\":\"https:\/\/www.qidian.com\/free\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"月票榜\",\"url\":\"https:\/\/www.qidian.com\/rank\/yuepiao\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"畅销榜\",\"url\":\"https:\/\/www.qidian.com\/rank\/hotsales\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"阅读指数榜\",\"url\":\"https:\/\/www.qidian.com\/rank\/readindex\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"推荐榜\",\"url\":\"https:\/\/www.qidian.com\/rank\/recom\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"收藏榜\",\"url\":\"https:\/\/www.qidian.com\/rank\/collect\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"更新榜\",\"url\":\"https:\/\/www.qidian.com\/rank\/vipup\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"玄幻\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"东方玄幻\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-subCateId8-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"异世大陆\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-subCateId73-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"王朝争霸\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-subCateId58-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"高武世界\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId21-subCateId78-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"奇幻\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-<,page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"现代魔法\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-subCateId38\/-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"剑与魔法\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-subCateId62-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"史诗奇幻\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-subCateId201-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"神秘幻想\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-subCateId202-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"历史神话\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-subCateId20092-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"另类幻想\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId1-subCateId20093-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"仙侠\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"修真文明\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-subCateId18-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"幻想修仙\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-subCateId44-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"现代修真\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-subCateId64-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"神话修真\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-subCateId207-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"古典仙侠\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId22-subCateId20101-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"都市\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"都市生活\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-subCateId12-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"都市异能\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-subCateId16-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"异术超能\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-subCateId74-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"青春校园\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-subCateId130-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"娱乐明星\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-subCateId151-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"商战职场\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId4-subCateId153-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"科幻\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"古武机甲\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId21-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"未来世界\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId25-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"星际文明\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId68-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"超级科技\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId250-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"时空穿梭\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId251-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"进化变异\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId252-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"末世危机\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId9-subCateId253-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"游戏\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"电子竞技\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-subCateId7-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"虚拟网游\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-subCateId70-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"游戏异界\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-subCateId240-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"游戏系统\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-subCateId20102-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"游戏主播\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId7-subCateId20103-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"诸天无限\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20109-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20109-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20109-action1--page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"无限\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20109-subCateId20110-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"诸天\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20109-subCateId20111-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"综漫\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20109-subCateId20112-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"悬疑\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"诡秘悬疑\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-subCateId26-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"奇妙世界\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-subCateId35-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"侦探推理\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-subCateId57-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"探险生存\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-subCateId260-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"古今传奇\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId10-subCateId20095-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"轻小说\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"原生幻想\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-subCateId60-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"恋爱日常\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-subCateId66-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"衍生同人\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-subCateId281-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"搞笑吐槽\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId12-subCateId282-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"历史\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"架空历史\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId22-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"秦汉三国\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId48-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"上古先秦\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId220-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"历史传记\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId32-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"两晋隋唐\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId222-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"五代十国\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId223-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"两宋元明\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId224-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"清史民国\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId225-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"外国历史\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId226-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"民间传说\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId5-subCateId20094-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"军事\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"军旅生涯\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-subCateId54-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"军事战争\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-subCateId65-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"战争幻想\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-subCateId80-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"抗战烽火\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-subCateId230-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"谍战特工\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId6-subCateId231-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"体育\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"篮球运动\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-subCateId28-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"体育赛事\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-subCateId28-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"足球运动\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId8-subCateId28-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"武侠\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"传统武侠\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-subCateId5-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"武侠幻想\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-subCateId30-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"国术无双\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-subCateId206-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"古武未来\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-subCateId20099-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"武侠同人\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId2-subCateId20100-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"现实\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-action0-page{{page}}\/-page{{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"时代叙事\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-subCateId20106-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"家庭伦理\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-subCateId6-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"女性题材\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-subCateId20104-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"青年故事\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-subCateId20108-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"社会悬疑\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-subCateId20105-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"人间百态\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId15-subCateId209-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"短篇\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n            {\"title\":\"新书\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-vip0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"连载\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-action0-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"完本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-action1-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"诗歌散文\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20097-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"人物传记\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20098-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"影视剧本\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20075-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"评论文集\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20077-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"生活随笔\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20078-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"美文游记\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20079-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"短篇小说\",\"url\":\"https:\/\/www.qidian.com\/all\/chanId20076-subCateId20096-page{{page}}\/\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n            {\"title\":\"————\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}\n        ]\n        return  JSON.stringify(finds);\n    }\n\n    async function find(url,page) {\n        var u=url.replace(\"{{page}}\",page)\n        var data=await flutterBridge.webview(u,\"\",\"\",\"\",JSON.stringify(headers))\n        flutterBridge.text(0,data )\n        var books=[];\n        var html = $.parseHTML( data );\n        $(html).find(\".book-img-text\").find(\"li\").each(function(index) {\n            var $element = $(this);\n            var img = $element.find(\".book-img-box\").find(\"img\").attr('src');\n            var book={\n                \"bookUrl\":\"https:\"+$element.find(\".book-img-box\").find(\"a\").attr('href'),\n                \"name\": $element.find(\"h2\").text(),\n                \"author\": $element.find(\".author\").find(\"a\").eq(0).text(),\n                \"kind\": $element.find(\".author\").find(\"a\").eq(1).text(),\n                \"coverUrl\":\"https:\"+img,\n                \"intro\":$element.find(\".intro\").text(),\n                \"tocUrl\":\"https:\"+$element.find(\".book-img-box\").find(\"a\").attr('href'),\n                \"wordCount\":\"\",\n                \"type\":0,\n                \"latestChapterTitle\":$element.find(\".update\").find(\"a\").text().trim(),\n            }\n            books.push(book);\n        });\n        return JSON.stringify(books);\n    }\n\n\n    \/\/返回http开头的则任务登录链接会跳webview,其他的会按照json解析显示弹窗\n    async function getloginurl(){\n        return baseurl;\n    }\n\n    \/\/如果登录 url 为非 http 开头的弹窗界面,每次修改完弹窗就会执行此函数\n    async function login(){\n\n    }\n\n    async function pay(bookurl,url){\n\n    }\n\n    \/\/ url 为图片的url,如果需要传递参数可以在图片后接json字符串,例如:http:\/\/127.0.0.1,{'headers':{'a':'b'}}\n    \/\/图片解密,image 为加密的图片的base64,执行的js必须是字符串所以这参数只能base64转码\n    \/\/这个函数得返回byteList List<int> ,并且能直接被Uint8List.fromList(byteList)接受\n    async function imagedecrypt(url,image){\n\n    }\n    \/\/ 当调用startBrowserWithShouldOverrideUrlLoading时必须有此函数\n    \/\/ url 为每次打开的 url\n    \/\/ 返回 false 则会取消打开这个网页\n    async function shouldOverrideUrlLoading(url){\n        return true;\n    }\n\n\n    \/\/帮助内容,开启帮助后点击帮助将会显示函数反馈的内容\n    \/\/当前函数有三种反馈方式\n    \/\/1. http 开头的链接\n    \/\/2. 纯文字\n    \/\/3. @html: 开头的 html 内容\n    async function gethelp(){\n        return \"发现为空,目录加载失败,点击登录验证一下。\\n\" +\n            \"想看订阅章节,点登录,在我的书架那里登录。\";\n    }\n\n<\/script>\n\n<\/html>\n",
    "login": true,
    "lastUpdateTime": "1769189457685"
}
广告