diff --git a/manifest.json b/manifest.json index 924c403..85a9c97 100644 --- a/manifest.json +++ b/manifest.json @@ -7,14 +7,14 @@ "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { - "safearea" : { - //安全区域配置,仅ioS平台生效 - "background" : "#F5F6F9", //安全区域外的背景颜色,默认值为"#FFFFFF" - "bottom" : { - // 底部安全区域配置 - "offset" : "none|auto" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none" - } - }, + "safearea" : { + //安全区域配置,仅ioS平台生效 + "background" : "#F5F6F9", //安全区域外的背景颜色,默认值为"#FFFFFF" + "bottom" : { + // 底部安全区域配置 + "offset" : "none|auto" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none" + } + }, "usingComponents" : true, "nvueStyleCompiler" : "uni-app", "compilerVersion" : 3, @@ -51,7 +51,39 @@ /* ios打包配置 */ "ios" : {}, /* SDK配置 */ - "sdkConfigs" : {} + "sdkConfigs" : {}, + "icons" : { + "android" : { + "hdpi" : "static/app_logo.png", + "xhdpi" : "static/app_logo.png", + "xxhdpi" : "static/app_logo.png", + "xxxhdpi" : "static/app_logo.png" + }, + "ios" : { + "appstore" : "static/app_logo.png", + "iphone" : { + "app@2x" : "static/app_logo.png", + "app@3x" : "static/app_logo.png", + "spotlight@2x" : "static/app_logo.png", + "spotlight@3x" : "static/app_logo.png", + "settings@2x" : "static/app_logo.png", + "settings@3x" : "static/app_logo.png", + "notification@2x" : "static/app_logo.png", + "notification@3x" : "static/app_logo.png" + }, + "ipad" : { + "app" : "static/app_logo.png", + "app@2x" : "static/app_logo.png", + "proapp@2x" : "static/app_logo.png", + "spotlight" : "static/app_logo.png", + "spotlight@2x" : "static/app_logo.png", + "settings" : "static/app_logo.png", + "settings@2x" : "static/app_logo.png", + "notification@2x" : "static/app_logo.png", + "notification" : "static/app_logo.png" + } + } + } } }, /* 快应用特有相关 */ diff --git a/pages/bookCity/bookCity/index.vue b/pages/bookCity/bookCity/index.vue index f8c2067..bf2f2ac 100644 --- a/pages/bookCity/bookCity/index.vue +++ b/pages/bookCity/bookCity/index.vue @@ -5,7 +5,7 @@ - + @@ -44,6 +44,11 @@ onLoad() { + }, + onShow() { + this.$nextTick(() => { + this.$refs.bookCityHome.isGetIndex() + }) }, methods: { handelCommNavBar(event) { diff --git a/pages/bookCity/components/home/index.vue b/pages/bookCity/components/home/index.vue index c417912..3603d06 100644 --- a/pages/bookCity/components/home/index.vue +++ b/pages/bookCity/components/home/index.vue @@ -130,51 +130,7 @@ } }, mounted() { - uni.showLoading({ - title: '加载中...' - }); - // 也可以直接通过uni.$u.post发出请求,注意此处需要写上接口地址 - const parameter = { - custom: { - token: true - } - } - uni.$u.http.post('/Index', {}, parameter).then((res) => { - uni.hideLoading(); - if (res.status == 1) { - const { - ads, - module1, - charts1, - charts2, - charts3, - charts4, - module3, - module4, - module5, - module6 - } = res.data; - - this.swiperList = baseUrlImage(ads); - this.explosiveDataList = baseUrlImage(module1); - this.explosiveDataList = baseUrlImage(module1); - const rankingDataObj = { - '1': baseUrlImage(charts1), - '2': baseUrlImage(charts2), - '3': baseUrlImage(charts3), - '4': baseUrlImage(charts4) - } - this.rankingDataList = rankingDataObj[this.headerListActive]; - this.rankingDataObj = rankingDataObj; - this.popularityDataList = baseUrlImage(module3); - this.originalDataList = baseUrlImage(module4); - this.recommendDataList = baseUrlImage(module5); - this.moreBooksList = baseUrlImage(module6); - } - }).catch((err) => { - uni.hideLoading(); - console.log(err, "========") - }) + }, methods: { toGridItemPath(row) { @@ -188,6 +144,53 @@ const id = event.currentTarget.dataset.id; this.headerListActive = id; this.rankingDataList = this.rankingDataObj[id]; + }, + isGetIndex() { + uni.showLoading({ + title: '加载中...' + }); + // 也可以直接通过uni.$u.post发出请求,注意此处需要写上接口地址 + const parameter = { + custom: { + token: true + } + } + uni.$u.http.post('/Index', {}, parameter).then((res) => { + uni.hideLoading(); + if (res.status == 1) { + const { + ads, + module1, + charts1, + charts2, + charts3, + charts4, + module3, + module4, + module5, + module6 + } = res.data; + + this.swiperList = baseUrlImage(ads); + this.explosiveDataList = baseUrlImage(module1); + this.explosiveDataList = baseUrlImage(module1); + const rankingDataObj = { + '1': baseUrlImage(charts1), + '2': baseUrlImage(charts2), + '3': baseUrlImage(charts3), + '4': baseUrlImage(charts4) + } + this.rankingDataList = rankingDataObj[this.headerListActive]; + this.rankingDataObj = rankingDataObj; + this.popularityDataList = baseUrlImage(module3); + this.originalDataList = baseUrlImage(module4); + this.recommendDataList = baseUrlImage(module5); + this.moreBooksList = baseUrlImage(module6); + } + }).catch((err) => { + uni.hideLoading(); + console.log(err, "========") + }) } } } diff --git a/pages/bookshelf/bookshelf/bookshelfListBody.vue b/pages/bookshelf/bookshelf/bookshelfListBody.vue index e0184ca..9439be2 100644 --- a/pages/bookshelf/bookshelf/bookshelfListBody.vue +++ b/pages/bookshelf/bookshelf/bookshelfListBody.vue @@ -53,7 +53,7 @@ 删除 - + @@ -51,6 +49,11 @@ + + + @@ -119,7 +122,7 @@ - + - @@ -201,6 +191,7 @@ stepUpPopupShow: false, purchaseFullShow: false, balanceShow: false, + navbarPopupShow:false, balanceTitle: '下一章,付费章节', // bar 的icon barPopupIcon: {}, @@ -338,7 +329,6 @@ custom, content: '' } - console.log(obj, "objobj") callback('success', obj) } if (chapter > newReadDirectoryActive) { @@ -374,7 +364,6 @@ custom, content: '' } - console.log(obj, "objobj") callback('success', obj) } @@ -431,6 +420,7 @@ handelDirectoryItem(row) {}, handelShowStepUp() { this.readingPopupshow = !this.readingPopupshow; + this.navbarPopupShow = !this.navbarPopupShow; this.stepUpPopupShow = false; }, handelDirectoryPopup() { @@ -540,27 +530,27 @@ } mySetStorage('novelMainObj', JSON.stringify(obj)); }, - // 目录划到了最上边 - directoryPopupUpper() { - const isBooksDirectoryPage = this.booksDirectoryPage; - const newBooksDirectoryPage = this.newBooksDirectoryPage; - if (isBooksDirectoryPage > 1 && newBooksDirectoryPage.indexOf(isBooksDirectoryPage) == -1) { - const booksDirectorySid = this.booksDirectorySid; - const booksDirectoryPage = isBooksDirectoryPage - 1; - this.booksDirectoryPage = booksDirectoryPage; - this.isGetDirectory(booksDirectorySid, booksDirectoryPage, 'upper'); - } - }, - // 目录划到了最下边 - directoryPopupLower() { - const isBooksDirectoryPage = this.booksDirectoryPage; - const booksDirectorySid = this.booksDirectorySid; - const booksDirectoryPage = isBooksDirectoryPage + 1; - const newBooksDirectoryPage = [...this.newBooksDirectoryPage, booksDirectoryPage]; - this.newBooksDirectoryPage = newBooksDirectoryPage; - this.booksDirectoryPage = booksDirectoryPage; - this.isGetDirectory(booksDirectorySid, booksDirectoryPage, 'lower'); - }, + // // 目录划到了最上边 + // directoryPopupUpper() { + // const isBooksDirectoryPage = this.booksDirectoryPage; + // const newBooksDirectoryPage = this.newBooksDirectoryPage; + // if (isBooksDirectoryPage > 1 && newBooksDirectoryPage.indexOf(isBooksDirectoryPage) == -1) { + // const booksDirectorySid = this.booksDirectorySid; + // const booksDirectoryPage = isBooksDirectoryPage - 1; + // this.booksDirectoryPage = booksDirectoryPage; + // this.isGetDirectory(booksDirectorySid, booksDirectoryPage, 'upper'); + // } + // }, + // // 目录划到了最下边 + // directoryPopupLower() { + // const isBooksDirectoryPage = this.booksDirectoryPage; + // const booksDirectorySid = this.booksDirectorySid; + // const booksDirectoryPage = isBooksDirectoryPage + 1; + // const newBooksDirectoryPage = [...this.newBooksDirectoryPage, booksDirectoryPage]; + // this.newBooksDirectoryPage = newBooksDirectoryPage; + // this.booksDirectoryPage = booksDirectoryPage; + // this.isGetDirectory(booksDirectorySid, booksDirectoryPage, 'lower'); + // }, isGetDirectory(sid, page, type) { uni.showLoading({ title: '加载中...' @@ -724,7 +714,9 @@ } } } - + .novelReading_content /deep/.u-navbar { + box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2); + } .novelReading_content /deep/.u-navbar__content__title { font-size: 30rpx; } diff --git a/unpackage/cache/appleConfig.ini b/unpackage/cache/appleConfig.ini new file mode 100644 index 0000000..caf1637 --- /dev/null +++ b/unpackage/cache/appleConfig.ini @@ -0,0 +1,17 @@ +[appleAppid] +appleAppid=com.qinjiu.guyanxiaoshuo + +[iosStyle] +iosStyle= + +[universalLinks] +universalLinks= +spaceid= + +[universalLinks_qq] +universalLinks_qq= +spaceid_qq= + +[universalLinks_weibo] +universalLinks_weibo= +spaceid_weibo= diff --git a/unpackage/cache/certdataios b/unpackage/cache/certdataios new file mode 100644 index 0000000..0762c4e --- /dev/null +++ b/unpackage/cache/certdataios @@ -0,0 +1,3 @@ +iosProfile=C:/Users/Administrator/Desktop/小说证书/古言小说证书/guyanxiaoshuo.mobileprovision +ioscertFile=C:/Users/Administrator/Desktop/小说证书/古言小说证书/guyanxiaoshuo.p12 +ioscertPassword=ep/Tdjka4Y7WYqDB6/S7dw== diff --git a/unpackage/dist/build/.automator/app-plus/.automator.json b/unpackage/dist/build/.automator/app-plus/.automator.json new file mode 100644 index 0000000..e69de29 diff --git a/unpackage/dist/build/app-plus/__uniappchooselocation.js b/unpackage/dist/build/app-plus/__uniappchooselocation.js new file mode 100644 index 0000000..bd11f4b --- /dev/null +++ b/unpackage/dist/build/app-plus/__uniappchooselocation.js @@ -0,0 +1 @@ +!function(e){var t={};function A(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,A),i.l=!0,i.exports}A.m=e,A.c=t,A.d=function(e,t,a){A.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},A.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},A.t=function(e,t){if(1&t&&(e=A(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(A.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)A.d(a,i,function(t){return e[t]}.bind(null,i));return a},A.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return A.d(t,"a",t),t},A.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},A.p="",A(A.s=41)}([function(e,t){e.exports={}},function(e,t,A){"use strict";function a(e,t,A,a,i,n,o,s,r,c){var l,u="function"==typeof e?e.options:e;if(r){u.components||(u.components={});var d=Object.prototype.hasOwnProperty;for(var h in r)d.call(r,h)&&!d.call(u.components,h)&&(u.components[h]=r[h])}if(c&&((c.beforeCreate||(c.beforeCreate=[])).unshift((function(){this[c.__module]=this})),(u.mixins||(u.mixins=[])).push(c)),t&&(u.render=t,u.staticRenderFns=A,u._compiled=!0),a&&(u.functional=!0),n&&(u._scopeId="data-v-"+n),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},u._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(u.functional){u._injectStyles=l;var f=u.render;u.render=function(e,t){return l.call(t),f(e,t)}}else{var g=u.beforeCreate;u.beforeCreate=g?[].concat(g,l):[l]}return{exports:e,options:u}}A.d(t,"a",(function(){return a}))},function(e,t,A){"use strict";var a;Object.defineProperty(t,"__esModule",{value:!0}),t.weexPlus=t.default=void 0,a="function"==typeof getUni?getUni:function(){var e=function(e){return"function"==typeof e},t=function(e){return e.then((function(e){return[null,e]})).catch((function(e){return[e]}))},A=/^\$|^on|^create|Sync$|Manager$|^pause/,a=["os","getCurrentSubNVue","getSubNVueById","stopRecord","stopVoice","stopBackgroundAudio","stopPullDownRefresh","hideKeyboard","hideToast","hideLoading","showNavigationBarLoading","hideNavigationBarLoading","canIUse","navigateBack","closeSocket","pageScrollTo","drawCanvas"],n=function(e){return(!A.test(e)||"createBLEConnection"===e)&&!~a.indexOf(e)},o=function(A){return function(){for(var a=arguments.length,i=Array(a>1?a-1:0),n=1;n0&&void 0!==arguments[0]?arguments[0]:{};return e(o.success)||e(o.fail)||e(o.complete)?A.apply(void 0,[o].concat(i)):t(new Promise((function(e,t){A.apply(void 0,[Object.assign({},o,{success:e,fail:t})].concat(i)),Promise.prototype.finally=function(e){var t=this.constructor;return this.then((function(A){return t.resolve(e()).then((function(){return A}))}),(function(A){return t.resolve(e()).then((function(){throw A}))}))}})))}},s=[],r=void 0;function c(e){s.forEach((function(t){return t({origin:r,data:e})}))}var l=i.webview.currentWebview().id,u=new BroadcastChannel("UNI-APP-SUBNVUE");function d(e){var t=i.webview.getWebviewById(e);return t&&!t.$processed&&function(e){e.$processed=!0;var t=i.webview.currentWebview().id===e.id,A="uniNView"===e.__uniapp_origin_type&&e.__uniapp_origin_id,a=e.id;if(e.postMessage=function(e){A?u.postMessage({data:e,to:t?A:a}):w({type:"UniAppSubNVue",data:e})},e.onMessage=function(e){s.push(e)},e.__uniapp_mask_id){r=e.__uniapp_host;var n=e.__uniapp_mask,o=i.webview.getWebviewById(e.__uniapp_mask_id);o=o.parent()||o;var c=e.show,l=e.hide,d=e.close,h=function(){o.setStyle({mask:n})},f=function(){o.setStyle({mask:"none"})};e.show=function(){h();for(var t=arguments.length,A=Array(t),a=0;a1&&void 0!==arguments[1]?arguments[1]:"GET",A=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"application/x-www-form-urlencoded";return"object"===(void 0===e?"undefined":j(e))?"POST"===t.toUpperCase()&&"application/json"===A.toLowerCase()?JSON.stringify(e):Object.keys(e).map((function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])})).join("&"):e},G=weex.requireModule("plusstorage"),T=weex.requireModule("clipboard"),Q=function(){if("function"==typeof getUniEmitter)return getUniEmitter;var e={$on:function(){console.warn("uni.$on failed")},$off:function(){console.warn("uni.$off failed")},$once:function(){console.warn("uni.$once failed")},$emit:function(){console.warn("uni.$emit failed")}};return function(){return e}}();function U(e,t,A){return e[t].apply(e,A)}var F=Object.freeze({loadFontFace:function(t){var A=t.family,a=t.source,i=(t.desc,t.success),n=(t.fail,t.complete);E.addRule("fontFace",{fontFamily:A,src:a.replace(/"/g,"'")});var o={errMsg:"loadFontFace:ok",status:"loaded"};e(i)&&i(o),e(n)&&n(o)},ready:N,request:function(t){var A=t.url,a=t.data,i=t.header,n=t.method,o=void 0===n?"GET":n,s=t.dataType,r=void 0===s?"json":s,c=(t.responseType,t.success),l=t.fail,u=t.complete,d=!1,h=!1,f={};if(i)for(var g in i)h||"content-type"!==g.toLowerCase()?f[g]=i[g]:(h=!0,f["Content-Type"]=i[g]);return"GET"===o&&a&&(A=A+(~A.indexOf("?")?"&"===A.substr(-1)||"?"===A.substr(-1)?"":"&":"?")+P(a)),O.fetch({url:A,method:o,headers:f,type:"json"===r?"json":"text",body:"GET"!==o?P(a,o,f["Content-Type"]):""},(function(t){var A=t.status,a=(t.ok,t.statusText,t.data),i=t.headers,n={};!A||-1===A||d?(n.errMsg="request:fail",e(l)&&l(n)):(n.data=a,n.statusCode=A,n.header=i,e(c)&&c(n)),e(u)&&u(n)})),{abort:function(){d=!0}}},getStorage:function(t){var A=t.key,a=(t.data,t.success),i=t.fail,n=t.complete;G.getItem(A+"__TYPE",(function(t){if("success"===t.result){var o=t.data;G.getItem(A,(function(t){if("success"===t.result){var A=t.data;o&&A?("String"!==o&&(A=JSON.parse(A)),e(a)&&a({errMsg:"getStorage:ok",data:A})):(t.errMsg="setStorage:fail",e(i)&&i(t))}else t.errMsg="setStorage:fail",e(i)&&i(t);e(n)&&n(t)}))}else t.errMsg="setStorage:fail",e(i)&&i(t),e(n)&&n(t)}))},setStorage:function(t){var A=t.key,a=t.data,i=t.success,n=t.fail,o=t.complete,s="String";"object"===(void 0===a?"undefined":j(a))&&(s="Object",a=JSON.stringify(a)),G.setItem(A,a,(function(t){"success"===t.result?G.setItem(A+"__TYPE",s,(function(t){"success"===t.result?e(i)&&i({errMsg:"setStorage:ok"}):(t.errMsg="setStorage:fail",e(n)&&n(t))})):(t.errMsg="setStorage:fail",e(n)&&n(t)),e(o)&&o(t)}))},removeStorage:function(t){var A=t.key,a=(t.data,t.success),i=t.fail,n=t.complete;G.removeItem(A,(function(t){"success"===t.result?e(a)&&a({errMsg:"removeStorage:ok"}):(t.errMsg="removeStorage:fail",e(i)&&i(t)),e(n)&&n(t)})),G.removeItem(A+"__TYPE")},clearStorage:function(e){e.key,e.data,e.success,e.fail,e.complete},getClipboardData:function(t){var A=t.success,a=(t.fail,t.complete);T.getString((function(t){var i={errMsg:"getClipboardData:ok",data:t.data};e(A)&&A(i),e(a)&&a(i)}))},setClipboardData:function(t){var A=t.data,a=t.success,i=(t.fail,t.complete),n={errMsg:"setClipboardData:ok"};T.setString(A),e(a)&&a(n),e(i)&&i(n)},onSubNVueMessage:c,getSubNVueById:d,getCurrentSubNVue:function(){return d(i.webview.currentWebview().id)},$on:function(){return U(Q(),"$on",[].concat(Array.prototype.slice.call(arguments)))},$off:function(){return U(Q(),"$off",[].concat(Array.prototype.slice.call(arguments)))},$once:function(){return U(Q(),"$once",[].concat(Array.prototype.slice.call(arguments)))},$emit:function(){return U(Q(),"$emit",[].concat(Array.prototype.slice.call(arguments)))}}),R={os:{nvue:!0}},V={};return"undefined"!=typeof Proxy?V=new Proxy({},{get:function(e,t){if("os"===t)return{nvue:!0};if("postMessage"===t)return w;if("requireNativePlugin"===t)return I;if("onNavigationBarButtonTap"===t)return S;if("onNavigationBarSearchInputChanged"===t)return C;if("onNavigationBarSearchInputConfirmed"===t)return D;if("onNavigationBarSearchInputClicked"===t)return L;var A=F[t];return A||(A=b(t)),n(t)?o(A):A}}):(Object.keys(R).forEach((function(e){V[e]=R[e]})),V.postMessage=w,V.requireNativePlugin=I,V.onNavigationBarButtonTap=S,V.onNavigationBarSearchInputChanged=C,V.onNavigationBarSearchInputConfirmed=D,V.onNavigationBarSearchInputClicked=L,Object.keys({uploadFile:!0,downloadFile:!0,chooseImage:!0,previewImage:!0,getImageInfo:!0,saveImageToPhotosAlbum:!0,chooseVideo:!0,saveVideoToPhotosAlbum:!0,saveFile:!0,getSavedFileList:!0,getSavedFileInfo:!0,removeSavedFile:!0,openDocument:!0,setStorage:!0,getStorage:!0,getStorageInfo:!0,removeStorage:!0,clearStorage:!0,getLocation:!0,chooseLocation:!0,openLocation:!0,getSystemInfo:!0,getNetworkType:!0,makePhoneCall:!0,scanCode:!0,setScreenBrightness:!0,getScreenBrightness:!0,setKeepScreenOn:!0,vibrateLong:!0,vibrateShort:!0,addPhoneContact:!0,showToast:!0,showLoading:!0,hideToast:!0,hideLoading:!0,showModal:!0,showActionSheet:!0,setNavigationBarTitle:!0,setNavigationBarColor:!0,navigateTo:!0,redirectTo:!0,reLaunch:!0,switchTab:!0,navigateBack:!0,getProvider:!0,login:!0,getUserInfo:!0,share:!0,requestPayment:!0,subscribePush:!0,unsubscribePush:!0,onPush:!0,offPush:!0}).forEach((function(e){var t=F[e];t||(t=b(e)),n(e)?V[e]=o(t):V[e]=t}))),V};var i=new WeexPlus(weex);t.weexPlus=i;var n=a(weex,i,BroadcastChannel);t.default=n},function(e,t,A){Vue.prototype.__$appStyle__={},Vue.prototype.__merge_style&&Vue.prototype.__merge_style(A(4).default,Vue.prototype.__$appStyle__)},function(e,t,A){"use strict";A.r(t);var a=A(0),i=A.n(a);for(var n in a)"default"!==n&&function(e){A.d(t,e,(function(){return a[e]}))}(n);t.default=i.a},function(e,t,A){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var A={onLoad:function(){this.initMessage()},methods:{initMessage:function(){var t=this,A=e.webview.currentWebview().extras||{},a=A.from,i=(A.callback,A.runtime),n=A.data,o=void 0===n?{}:n,s=A.useGlobalEvent;this.__from=a,this.__runtime=i,this.__page=e.webview.currentWebview().id,this.__useGlobalEvent=s,this.data=JSON.parse(JSON.stringify(o)),e.key.addEventListener("backbutton",(function(){"function"==typeof t.onClose?t.onClose():e.webview.currentWebview().close("auto")}));var r=this,c=function(e){var t=e.data&&e.data.__message;t&&r.__onMessageCallback&&r.__onMessageCallback(t.data)};this.__useGlobalEvent?weex.requireModule("globalEvent").addEventListener("plusMessage",c):new BroadcastChannel(this.__page).onmessage=c},postMessage:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=JSON.parse(JSON.stringify({__message:{__page:this.__page,data:t,keep:A}})),i=this.__from;if("v8"===this.__runtime)if(this.__useGlobalEvent)e.webview.postMessageToUniNView(a,i);else{var n=new BroadcastChannel(i);n.postMessage(a)}else{var o=e.webview.getWebviewById(i);o&&o.evalJS("__plusMessage&&__plusMessage(".concat(JSON.stringify({data:a}),")"))}},onMessage:function(e){this.__onMessageCallback=e}}};t.default=A}).call(this,A(2).weexPlus)},function(e,t,A){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var A={data:function(){return{locale:"en",fallbackLocale:"en",localization:{en:{done:"OK",cancel:"Cancel"},zh:{done:"完成",cancel:"取消"},"zh-hans":{},"zh-hant":{},messages:{}}}},onLoad:function(){this.initLocale()},created:function(){this.initLocale()},methods:{initLocale:function(){if(!this.__initLocale){this.__initLocale=!0;var t=(e.webview.currentWebview().extras||{}).data||{};if(t.messages&&(this.localization.messages=t.messages),t.locale)this.locale=t.locale.toLowerCase();else{var A=e.os.language.toLowerCase().split("/")[0].replace("_","-").split("-"),a=A[1];a&&(A[1]={chs:"hans",cn:"hans",sg:"hans",cht:"hant",tw:"hant",hk:"hant",mo:"hant"}[a]||a),A.length=A.length>2?2:A.length,this.locale=A.join("-")}}},localize:function(e){var t=this.locale,A=t.split("-")[0],a=this.fallbackLocale,i=this.localization;function n(e){return i[e]||{}}return n("messages")[e]||n(t)[e]||n(A)[e]||n(a)[e]||e}}};t.default=A}).call(this,A(2).weexPlus)},function(e,t,A){"use strict";var a=A(29),i=A(12),n=A(1);var o=Object(n.a)(i.default,a.b,a.c,!1,null,null,"14d2bcf2",!1,a.a,void 0);(function(e){this.options.style||(this.options.style={}),Vue.prototype.__merge_style&&Vue.prototype.__$appStyle__&&Vue.prototype.__merge_style(Vue.prototype.__$appStyle__,this.options.style),Vue.prototype.__merge_style?Vue.prototype.__merge_style(A(36).default,this.options.style):Object.assign(this.options.style,A(36).default)}).call(o),t.default=o.exports},,,,,function(e,t,A){"use strict";var a=A(13),i=A.n(a);t.default=i.a},function(e,t,A){"use strict";(function(e,a){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(A(5)),n=o(A(6));function o(e){return e&&e.__esModule?e:{default:e}}function s(e,t){var A=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),A.push.apply(A,a)}return A}function r(e,t,A){return t in e?Object.defineProperty(e,t,{value:A,enumerable:!0,configurable:!0,writable:!0}):e[t]=A,e}weex.requireModule("dom").addRule("fontFace",{fontFamily:"unichooselocation",src:"url('data:font/truetype;charset=utf-8;base64,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aG9vc2Vsb2NhdGlvbkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAAoAQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdAAKAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBSAGUAZwB1AGwAYQByAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgB1AG4AaQBjAGgAbwBvAHMAZQBsAG8AYwBhAHQAaQBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAQIBAwEEAQUBBgAKbXlsb2NhdGlvbgZ4dWFuemUFY2xvc2UGc291c3VvAAAAAA==')"});var c=weex.requireModule("mapSearch"),l="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAACcCAMAAAC3Fl5oAAAB3VBMVEVMaXH/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/EhL/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/Dw//AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/GRn/NTX/Dw//Fhb/AAD/AAD/AAD/GRn/GRn/Y2P/AAD/AAD/ExP/Ghr/AAD/AAD/MzP/GRn/AAD/Hh7/AAD/RUX/AAD/AAD/AAD/AAD/AAD/AAD/Dg7/AAD/HR3/Dw//FRX/SUn/AAD/////kJD/DQ3/Zmb/+/v/wMD/mJj/6en/vb3/1NT//Pz/ODj/+fn/3Nz/nJz/j4//9/f/7e3/9vb/7Oz/2Nj/x8f/Ozv/+Pj/3d3/nZ3/2dn//f3/6Oj/2tr/v7//09P/vr7/mZn/l5cdSvP3AAAAe3RSTlMAAhLiZgTb/vztB/JMRhlp6lQW86g8mQ4KFPs3UCH5U8huwlesWtTYGI7RsdVeJGfTW5rxnutLsvXWF8vQNdo6qQbuz7D4hgVIx2xtw8GC1TtZaIw0i84P98tU0/fsj7PKaAgiZZxeVfo8Z52eg1P0nESrENnjXVPUgw/uuSmDAAADsUlEQVR42u3aZ3cTRxgF4GtbYleSLdnGcsENG2ODjbExEHrvhAQCIb1Bem+QdkeuuFMNBBJIfmuOckzZI8/srHYmH3Lm+QNXK632LTvQ03Tu/IWeU/tTGTKT2n+q58L5c00wpXJd47DHEt5w47pKxLbhdLdPKb/7dBYxVLxw1GcI/2h1BcpzKNFHLX2JQ4gumaiitqpEEhEdOMJI9h5AFC3feYzI+7IF2tpSLEOqDXpObPRYFm/jCWho/4Ble7MdoT7fzhhq9yHEz28wltU1UPrJZ0wd66HwicfYvEFIfePTAP8tSLTupBHvtGJFH9bSkNrNWEHzERrT34xSH9Ogr1CijkbVAUH1KRqVqkdQAw07iIAaGlcTqI+/0LjeJJ5J0IIEnkpXMdzs4sTtW9dnZq7fuj2xOMtwVWk88RHDjBYejYvnjD8qjOpfQsUqhvj7oSjxcJIhVj3pyKqpNjYvVjQ/RrXq5YABKi3MCYm5BSrtWO5v11DlmlC4RpU1WRS9SJU7QukOVbpQ9JLu549+Dd0AUOlTbkGEuk85vxLAK5QbuytC3R2j3HoAjZSbFxrmKTcCoJdSk0LLJKV6gSaPMqNTQsvUKGW8JrxKqUWhaZFSeWyh1LTQNE2pHF6mzOy40DQ+S5mLimJcENoKlOnBWsr8KbRNUGYt5LXgd6HtD3lNQIoyN4S2G5RJIUOZm0LbTcqsBqVmhLYZSlkPsP4VWf+Rrd+m1v9o9h8Vv5p42C1R5qL1x7WRglOgVN52yfwNOBu76P+lLPoYidu23KPciIHGa07ZeIW1jvcNtI7q5vexCPGYCmf+m/Y9a3sAwQ5bI9T7ukPgPcn9GToEao+xk1OixJT+GIsvNAbx6eAgPq0xiF+KtkpYKhRXCQ8eFFcJhSWGu3rZ8jJkCM8kz9K4TUnrC6mAgzTsB9tLwQ2W15qfosQ2GrQNpZr7aczbzVjBZsvLcaC1g0bsbIVEnU8DOr6H1KDH2LwtUBi0/JII6Dxm9zUXkH+XMWzfh1Dte1i2Pe3QkC77Zel7aehpO8wyHG6Dtt0NjKxhN6I4uSli/TqJiJJDUQ4NDCURXTrXRy1XcumyD24M+AzhD1RXIIZsl/LoyZmurJHDM7s8lvB2FQ/PmPJ6PseAXP5HGMYAAC7ABbgAF+ACXIALcAEuwAW4ABfgAlyAC3ABLsAFuID/d8Cx4NEt8/byOf0wLnis8zjMq9/Kp7bWw4JOj8u8TlhRl+G/Mp2wpOX48GffvvZ1CyL4B53LAS6zb08EAAAAAElFTkSuQmCC";var u={mixins:[i.default,n.default],data:function(){return{positionIcon:l,mapScale:16,userKeyword:"",showLocation:!0,latitude:39.908692,longitude:116.397477,nearList:[],nearSelectedIndex:-1,nearLoading:!1,nearLoadingEnd:!1,noNearData:!1,isUserLocation:!1,statusBarHeight:20,mapHeight:250,markers:[{id:"location",latitude:39.908692,longitude:116.397477,zIndex:"1",iconPath:l,width:26,height:36}],showSearch:!1,searchList:[],searchSelectedIndex:-1,searchLoading:!1,searchEnd:!1,noSearchData:!1,localization:{en:{search_tips:"Search for a place",no_found:"No results found",nearby:"Nearby",more:"More"},zh:{search_tips:"搜索地点",no_found:"对不起,没有搜索到相关数据",nearby:"附近",more:"更多"}},searchNearFlag:!0,searchMethod:"poiSearchNearBy"}},computed:{disableOK:function(){return this.nearSelectedIndex<0&&this.searchSelectedIndex<0},searchMethods:function(){return[{title:this.localize("nearby"),method:"poiSearchNearBy"},{title:this.localize("more"),method:"poiKeywordsSearch"}]}},filters:{distance:function(e){return e>100?"".concat(e>1e3?(e/1e3).toFixed(1)+"k":e.toFixed(0),"m | "):e>0?"100m内 | ":""}},watch:{searchMethod:function(){this._searchPageIndex=1,this.searchEnd=!1,this.searchList=[],this._searchKeyword&&this.search()}},onLoad:function(){this.statusBarHeight=e.navigator.getStatusbarHeight(),this.mapHeight=e.screen.resolutionHeight/2;var t=this.data;this.userKeyword=t.keyword||"",this._searchInputTimer=null,this._searchPageIndex=1,this._searchKeyword="",this._nearPageIndex=1,this._hasUserLocation=!1,this._userLatitude=0,this._userLongitude=0},onReady:function(){this.mapContext=this.$refs.map1,this.data.latitude&&this.data.longitude?(this._hasUserLocation=!0,this.moveToCenter({latitude:this.data.latitude,longitude:this.data.longitude})):this.getUserLocation()},onUnload:function(){this.clearSearchTimer()},methods:{cancelClick:function(){this.postMessage({event:"cancel"})},doneClick:function(){if(!this.disableOK){var e=this.showSearch&&this.searchSelectedIndex>=0?this.searchList[this.searchSelectedIndex]:this.nearList[this.nearSelectedIndex],t={name:e.name,address:e.address,latitude:e.location.latitude,longitude:e.location.longitude};this.postMessage({event:"selected",detail:t})}},getUserLocation:function(){var t=this;e.geolocation.getCurrentPosition((function(e){var A=e.coordsType,a=e.coords;"wgs84"===A.toLowerCase()?t.wgs84togcjo2(a,(function(e){t.getUserLocationSuccess(e)})):t.getUserLocationSuccess(a)}),(function(e){t._hasUserLocation=!0,a("log","Gelocation Error: code - "+e.code+"; message - "+e.message," at template/__uniappchooselocation.nvue:292")}),{geocode:!1})},getUserLocationSuccess:function(e){this._userLatitude=e.latitude,this._userLongitude=e.longitude,this._hasUserLocation=!0,this.moveToCenter({latitude:e.latitude,longitude:e.longitude})},searchclick:function(t){this.showSearch=t,!1===t&&e.key.hideSoftKeybord()},showSearchView:function(){this.searchList=[],this.showSearch=!0},hideSearchView:function(){this.showSearch=!1,e.key.hideSoftKeybord(),this.noSearchData=!1,this.searchSelectedIndex=-1,this._searchKeyword=""},onregionchange:function(e){var t=this,A=e.detail,a=A.type||e.type;"drag"===(A.causedBy||e.causedBy)&&"end"===a&&this.mapContext.getCenterLocation((function(e){t.searchNearFlag?t.moveToCenter({latitude:e.latitude,longitude:e.longitude}):t.searchNearFlag=!t.searchNearFlag}))},onItemClick:function(e,t){this.searchNearFlag=!1,t.stopPropagation&&t.stopPropagation(),this.nearSelectedIndex!==e&&(this.nearSelectedIndex=e),this.moveToLocation(this.nearList[e]&&this.nearList[e].location)},moveToCenter:function(e){this.latitude===e.latitude&&this.longitude===e.longitude||(this.latitude=e.latitude,this.longitude=e.longitude,this.updateCenter(e),this.moveToLocation(e),this.isUserLocation=this._userLatitude===e.latitude&&this._userLongitude===e.longitude)},updateCenter:function(e){var t=this;this.nearSelectedIndex=-1,this.nearList=[],this._hasUserLocation&&(this._nearPageIndex=1,this.nearLoadingEnd=!1,this.reverseGeocode(e),this.searchNearByPoint(e),this.onItemClick(0,{stopPropagation:function(){t.searchNearFlag=!0}}),this.$refs.nearListLoadmore.resetLoadmore())},searchNear:function(){this.nearLoadingEnd||this.searchNearByPoint({latitude:this.latitude,longitude:this.longitude})},searchNearByPoint:function(e){var t=this;this.noNearData=!1,this.nearLoading=!0,c.poiSearchNearBy({point:{latitude:e.latitude,longitude:e.longitude},key:this.userKeyword,sortrule:1,index:this._nearPageIndex,radius:1e3},(function(e){t.nearLoading=!1,t._nearPageIndex=e.pageIndex+1,t.nearLoadingEnd=e.pageIndex===e.pageNumber,e.poiList&&e.poiList.length?(t.fixPois(e.poiList),t.nearList=t.nearList.concat(e.poiList),t.fixNearList()):t.noNearData=0===t.nearList.length}))},moveToLocation:function(e){e&&this.mapContext.moveToLocation(function(e){for(var t=1;t=2&&"地图位置"===e[0].name){var t=this.getAddressStart(e[1]),A=e[0].address;A.startsWith(t)&&(e[0].name=A.substring(t.length))}},onsearchinput:function(e){var t=this,A=e.detail.value.replace(/^\s+|\s+$/g,"");this.clearSearchTimer(),this._searchInputTimer=setTimeout((function(){clearTimeout(t._searchInputTimer),t._searchPageIndex=1,t.searchEnd=!1,t._searchKeyword=A,t.searchList=[],t.search()}),300)},clearSearchTimer:function(){this._searchInputTimer&&clearTimeout(this._searchInputTimer)},search:function(){var e=this;0===this._searchKeyword.length||this._searchEnd||this.searchLoading||(this.searchLoading=!0,this.noSearchData=!1,c[this.searchMethod]({point:{latitude:this.latitude,longitude:this.longitude},key:this._searchKeyword,sortrule:1,index:this._searchPageIndex,radius:5e4},(function(t){e.searchLoading=!1,e._searchPageIndex=t.pageIndex+1,e.searchEnd=t.pageIndex===t.pageNumber,t.poiList&&t.poiList.length?(e.fixPois(t.poiList),e.searchList=e.searchList.concat(t.poiList)):e.noSearchData=0===e.searchList.length})))},onSearchListTouchStart:function(){e.key.hideSoftKeybord()},onSearchItemClick:function(e,t){t.stopPropagation(),this.searchSelectedIndex!==e&&(this.searchSelectedIndex=e),this.moveToLocation(this.searchList[e]&&this.searchList[e].location)},getAddressStart:function(e){var t=e.addressOrigin||e.address;return e.province+(e.province===e.city?"":e.city)+(/^\d+$/.test(e.district)?"":t.startsWith(e.district)?"":e.district)},fixPois:function(e){for(var t=0;t1?t-1:0),a=1;a1){var r=o.pop();s=o.join("---COMMA---"),0===r.indexOf(" at ")?s+=r:s+="---COMMA---"+r}else s=o[0];console[n](s)}},function(e,t,A){"use strict";A.r(t);var a=A(14),i=A.n(a);for(var n in a)"default"!==n&&function(e){A.d(t,e,(function(){return a[e]}))}(n);t.default=i.a},,,,,function(e,t,A){"use strict";A.r(t);A(3);var a=A(7);a.default.mpType="page",a.default.route="template/__uniappchooselocation",a.default.el="#root",new Vue(a.default)}]); \ No newline at end of file diff --git a/unpackage/dist/build/app-plus/__uniapperror.png b/unpackage/dist/build/app-plus/__uniapperror.png new file mode 100644 index 0000000..4743b25 Binary files /dev/null and b/unpackage/dist/build/app-plus/__uniapperror.png differ diff --git a/unpackage/dist/build/app-plus/__uniappes6.js b/unpackage/dist/build/app-plus/__uniappes6.js new file mode 100644 index 0000000..d4018e8 --- /dev/null +++ b/unpackage/dist/build/app-plus/__uniappes6.js @@ -0,0 +1 @@ +!function(t){"use strict";!function(t){var r={};function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=r,n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{enumerable:!0,get:e})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,r){if(1&r&&(t=n(t)),8&r)return t;if(4&r&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(n.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&r&&"string"!=typeof t)for(var o in t)n.d(e,o,function(r){return t[r]}.bind(null,o));return e},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},n.p="",n(n.s=0)}([function(t,r,n){n(1),n(54),n(61),n(66),n(68),n(69),n(70),n(71),n(73),n(74),n(76),n(84),n(85),n(86),n(95),n(96),n(98),n(99),n(100),n(102),n(103),n(104),n(105),n(106),n(107),n(109),n(110),n(111),n(112),n(121),n(124),n(125),n(127),n(129),n(130),n(131),n(132),n(133),n(135),n(137),n(140),n(141),n(143),n(145),n(146),n(147),n(148),n(150),n(151),n(152),n(153),n(154),n(156),n(157),n(159),n(160),n(161),n(162),n(163),n(164),n(165),n(166),n(167),n(168),n(170),n(171),n(172),n(174),n(178),n(179),n(180),n(181),n(187),n(189),n(192),n(193),n(194),n(195),n(196),n(197),n(198),n(199),n(201),n(202),n(203),n(206),n(207),n(208),n(209),n(210),n(211),n(212),n(213),n(214),n(215),n(216),t.exports=n(217)},function(r,n,e){var o=e(2),i=e(6),u=e(45),c=e(14),a=e(46),f=e(39),s=e(47),l=e(48),p=e(51),g=e(49),v=e(52),h=g("isConcatSpreadable"),d=v>=51||!i(function(){var t=[];return t[h]=!1,t.concat()[0]!==t}),x=p("concat"),y=function(r){if(!c(r))return!1;var n=r[h];return n!==t?!!n:u(r)};o({target:"Array",proto:!0,forced:!d||!x},{concat:function(t){var r,n,e,o,i,u=a(this),c=l(u,0),p=0;for(r=-1,e=arguments.length;r9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n=9007199254740991)throw TypeError("Maximum allowed index exceeded");s(c,p++,i)}return c.length=p,c}})},function(r,n,e){var o=e(3),i=e(4).f,u=e(18),c=e(21),a=e(25),f=e(32),s=e(44);r.exports=function(r,n){var e,l,p,g,v,h=r.target,d=r.global,x=r.stat;if(e=d?o:x?o[h]||a(h,{}):(o[h]||{}).prototype)for(l in n){if(g=n[l],p=r.noTargetGet?(v=i(e,l))&&v.value:e[l],!s(d?l:h+(x?".":"#")+l,r.forced)&&p!==t){if(typeof g==typeof p)continue;f(g,p)}(r.sham||p&&p.sham)&&u(g,"sham",!0),c(e,l,g,r)}}},function(t,r){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof global&&global)||Function("return this")()},function(t,r,n){var e=n(5),o=n(7),i=n(8),u=n(9),c=n(13),a=n(15),f=n(16),s=Object.getOwnPropertyDescriptor;r.f=e?s:function(t,r){if(t=u(t),r=c(r,!0),f)try{return s(t,r)}catch(t){}if(a(t,r))return i(!o.f.call(t,r),t[r])}},function(t,r,n){var e=n(6);t.exports=!e(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,r){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,r,n){var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);r.f=i?function(t){var r=o(this,t);return!!r&&r.enumerable}:e},function(t,r){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},function(t,r,n){var e=n(10),o=n(12);t.exports=function(t){return e(o(t))}},function(t,r,n){var e=n(6),o=n(11),i="".split;t.exports=e(function(){return!Object("z").propertyIsEnumerable(0)})?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,r){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(r,n){r.exports=function(r){if(r==t)throw TypeError("Can't call method on "+r);return r}},function(t,r,n){var e=n(14);t.exports=function(t,r){if(!e(t))return t;var n,o;if(r&&"function"==typeof(n=t.toString)&&!e(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!e(o=n.call(t)))return o;if(!r&&"function"==typeof(n=t.toString)&&!e(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,r){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,r){var n={}.hasOwnProperty;t.exports=function(t,r){return n.call(t,r)}},function(t,r,n){var e=n(5),o=n(6),i=n(17);t.exports=!e&&!o(function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},function(t,r,n){var e=n(3),o=n(14),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},function(t,r,n){var e=n(5),o=n(19),i=n(8);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},function(t,r,n){var e=n(5),o=n(16),i=n(20),u=n(13),c=Object.defineProperty;r.f=e?c:function(t,r,n){if(i(t),r=u(r,!0),i(n),o)try{return c(t,r,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},function(t,r,n){var e=n(14);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,r,n){var e=n(3),o=n(22),i=n(18),u=n(15),c=n(25),a=n(26),f=n(27),s=f.get,l=f.enforce,p=String(a).split("toString");o("inspectSource",function(t){return a.call(t)}),(t.exports=function(t,r,n,o){var a=!!o&&!!o.unsafe,f=!!o&&!!o.enumerable,s=!!o&&!!o.noTargetGet;"function"==typeof n&&("string"!=typeof r||u(n,"name")||i(n,"name",r),l(n).source=p.join("string"==typeof r?r:"")),t!==e?(a?!s&&t[r]&&(f=!0):delete t[r],f?t[r]=n:i(t,r,n)):f?t[r]=n:c(r,n)})(Function.prototype,"toString",function(){return"function"==typeof this&&s(this).source||a.call(this)})},function(r,n,e){var o=e(23),i=e(24);(r.exports=function(r,n){return i[r]||(i[r]=n!==t?n:{})})("versions",[]).push({version:"3.3.6",mode:o?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,r){t.exports=!1},function(t,r,n){var e=n(3),o=n(25),i=e["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,r,n){var e=n(3),o=n(18);t.exports=function(t,r){try{o(e,t,r)}catch(n){e[t]=r}return r}},function(t,r,n){var e=n(22);t.exports=e("native-function-to-string",Function.toString)},function(t,r,n){var e,o,i,u=n(28),c=n(3),a=n(14),f=n(18),s=n(15),l=n(29),p=n(31),g=c.WeakMap;if(u){var v=new g,h=v.get,d=v.has,x=v.set;e=function(t,r){return x.call(v,t,r),r},o=function(t){return h.call(v,t)||{}},i=function(t){return d.call(v,t)}}else{var y=l("state");p[y]=!0,e=function(t,r){return f(t,y,r),r},o=function(t){return s(t,y)?t[y]:{}},i=function(t){return s(t,y)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(r){var n;if(!a(r)||(n=o(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,r,n){var e=n(3),o=n(26),i=e.WeakMap;t.exports="function"==typeof i&&/native code/.test(o.call(i))},function(t,r,n){var e=n(22),o=n(30),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(r,n){var e=0,o=Math.random();r.exports=function(r){return"Symbol("+String(r===t?"":r)+")_"+(++e+o).toString(36)}},function(t,r){t.exports={}},function(t,r,n){var e=n(15),o=n(33),i=n(4),u=n(19);t.exports=function(t,r){for(var n=o(r),c=u.f,a=i.f,f=0;fa;)e(c,n=r[a++])&&(~i(f,n)||f.push(n));return f}},function(t,r,n){var e=n(9),o=n(39),i=n(41),u=function(t){return function(r,n,u){var c,a=e(r),f=o(a.length),s=i(u,f);if(t&&n!=n){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===n)return t||s||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},function(t,r,n){var e=n(40),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},function(t,r){var n=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:n)(t)}},function(t,r,n){var e=n(40),o=Math.max,i=Math.min;t.exports=function(t,r){var n=e(t);return n<0?o(n+r,0):i(n,r)}},function(t,r){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,r){r.f=Object.getOwnPropertySymbols},function(t,r,n){var e=n(6),o=/#|\.prototype\./,i=function(t,r){var n=c[u(t)];return n==f||n!=a&&("function"==typeof r?e(r):!!r)},u=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},a=i.NATIVE="N",f=i.POLYFILL="P";t.exports=i},function(t,r,n){var e=n(11);t.exports=Array.isArray||function(t){return"Array"==e(t)}},function(t,r,n){var e=n(12);t.exports=function(t){return Object(e(t))}},function(t,r,n){var e=n(13),o=n(19),i=n(8);t.exports=function(t,r,n){var u=e(r);u in t?o.f(t,u,i(0,n)):t[u]=n}},function(r,n,e){var o=e(14),i=e(45),u=e(49)("species");r.exports=function(r,n){var e;return i(r)&&("function"!=typeof(e=r.constructor)||e!==Array&&!i(e.prototype)?o(e)&&null===(e=e[u])&&(e=t):e=t),new(e===t?Array:e)(0===n?0:n)}},function(t,r,n){var e=n(3),o=n(22),i=n(30),u=n(50),c=e.Symbol,a=o("wks");t.exports=function(t){return a[t]||(a[t]=u&&c[t]||(u?c:i)("Symbol."+t))}},function(t,r,n){var e=n(6);t.exports=!!Object.getOwnPropertySymbols&&!e(function(){return!String(Symbol())})},function(t,r,n){var e=n(6),o=n(49),i=n(52),u=o("species");t.exports=function(t){return i>=51||!e(function(){var r=[];return(r.constructor={})[u]=function(){return{foo:1}},1!==r[t](Boolean).foo})}},function(t,r,n){var e,o,i=n(3),u=n(53),c=i.process,a=c&&c.versions,f=a&&a.v8;f?o=(e=f.split("."))[0]+e[1]:u&&(!(e=u.match(/Edge\/(\d+)/))||e[1]>=74)&&(e=u.match(/Chrome\/(\d+)/))&&(o=e[1]),t.exports=o&&+o},function(t,r,n){var e=n(34);t.exports=e("navigator","userAgent")||""},function(t,r,n){var e=n(2),o=n(55),i=n(56);e({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},function(r,n,e){var o=e(46),i=e(41),u=e(39),c=Math.min;r.exports=[].copyWithin||function(r,n){var e=o(this),a=u(e.length),f=i(r,a),s=i(n,a),l=arguments.length>2?arguments[2]:t,p=c((l===t?a:i(l,a))-s,a-f),g=1;for(s0;)s in e?e[f]=e[s]:delete e[f],f+=g,s+=g;return e}},function(r,n,e){var o=e(49),i=e(57),u=e(18),c=o("unscopables"),a=Array.prototype;a[c]==t&&u(a,c,i(null)),r.exports=function(t){a[c][t]=!0}},function(r,n,e){var o=e(20),i=e(58),u=e(42),c=e(31),a=e(60),f=e(17),s=e(29)("IE_PROTO"),l=function(){},p=function(){var t,r=f("iframe"),n=u.length;for(r.style.display="none",a.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(" + View + + + + +
+ + + + + + diff --git a/unpackage/dist/build/app-plus/app-config-service.js b/unpackage/dist/build/app-plus/app-config-service.js new file mode 100644 index 0000000..8e6da48 --- /dev/null +++ b/unpackage/dist/build/app-plus/app-config-service.js @@ -0,0 +1,8 @@ + +var isReady=false;var onReadyCallbacks=[]; +var isServiceReady=false;var onServiceReadyCallbacks=[]; +var __uniConfig = {"pages":["pages/bookCity/bookCity/index","pages/bookshelf/bookshelf/index","pages/login/login","pages/loginMobile/loginMobile","pages/classification/classification/index","pages/myInfo/myInfo/index","pages/myInfo/aboutMy/index","pages/myInfo/mySetUp/index","pages/myInfo/problemList/index","pages/myInfo/problemDetail/index","pages/voucherCenter/index","pages/readingRecords/index","pages/signInBookCurrency/index","pages/booksListAll/index","pages/booksTheCharts/index","pages/voucherCenterDetail/index","pages/bookCoinDetail/bookCoinDetail","pages/giveCoinDetail/giveCoinDetail","pages/booksSearchList/booksSearchList","pages/novelReading/novelReading","pages/booksReadingDetail/booksReadingDetail","pages/bookRecommendList/bookRecommendList"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"backgroundColor":"#FFFFFF","borderStyle":"#F5F5F5","selectedColor":"#FF5000","iconWidth":"24px","color":"#666666","fontSize":"10px","height":"68px","list":[{"pagePath":"pages/bookshelf/bookshelf/index","text":"书架","iconPath":"/static/images/tabbar/bookshelf.png","selectedIconPath":"/static/images/tabbar/bookshelfActive.png"},{"pagePath":"pages/bookCity/bookCity/index","text":"书城","iconPath":"/static/images/tabbar/bookCity.png","selectedIconPath":"/static/images/tabbar/bookCityActive.png"},{"pagePath":"pages/classification/classification/index","text":"分类","iconPath":"/static/images/tabbar/classification.png","selectedIconPath":"/static/images/tabbar/classificationActive.png"},{"pagePath":"pages/myInfo/myInfo/index","text":"我的","iconPath":"/static/images/tabbar/myInfo.png","selectedIconPath":"/static/images/tabbar/myInfoActive.png"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"app_ancientSayings","compilerVersion":"3.8.12","entryPagePath":"pages/bookCity/bookCity/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}}; +var __uniRoutes = [{"path":"/pages/bookCity/bookCity/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"书城","navigationStyle":"custom"}},{"path":"/pages/bookshelf/bookshelf/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"书架","navigationStyle":"custom"}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"","navigationStyle":"custom"}},{"path":"/pages/loginMobile/loginMobile","meta":{},"window":{"navigationBarTitleText":"","navigationStyle":"custom"}},{"path":"/pages/classification/classification/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"分类","navigationStyle":"custom"}},{"path":"/pages/myInfo/myInfo/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的"}},{"path":"/pages/myInfo/aboutMy/index","meta":{},"window":{"navigationBarTitleText":"关于我们"}},{"path":"/pages/myInfo/mySetUp/index","meta":{},"window":{"navigationBarTitleText":"设置"}},{"path":"/pages/myInfo/problemList/index","meta":{},"window":{"navigationBarTitleText":"常见问题"}},{"path":"/pages/myInfo/problemDetail/index","meta":{},"window":{"navigationBarTitleText":"常见问题"}},{"path":"/pages/voucherCenter/index","meta":{},"window":{"navigationBarTitleText":"充值中心"}},{"path":"/pages/readingRecords/index","meta":{},"window":{"navigationBarTitleText":"阅读记录"}},{"path":"/pages/signInBookCurrency/index","meta":{},"window":{"navigationBarTitleText":"签到领取书币","navigationStyle":"custom","navigationBarTextStyle":"white"}},{"path":"/pages/booksListAll/index","meta":{},"window":{"navigationBarTitleText":""}},{"path":"/pages/booksTheCharts/index","meta":{},"window":{"navigationBarTitleText":"排行榜","navigationBarBackgroundColor":"transparent","navigationStyle":"custom","titleNView":{"backgroundColor":"transparent","background":"transparent"}}},{"path":"/pages/voucherCenterDetail/index","meta":{},"window":{"navigationBarTitleText":"充值记录"}},{"path":"/pages/bookCoinDetail/bookCoinDetail","meta":{},"window":{"navigationBarTitleText":"书币明细"}},{"path":"/pages/giveCoinDetail/giveCoinDetail","meta":{},"window":{"navigationBarTitleText":"赠币明细"}},{"path":"/pages/booksSearchList/booksSearchList","meta":{},"window":{"navigationBarTitleText":"搜索"}},{"path":"/pages/novelReading/novelReading","meta":{},"window":{"navigationBarTitleText":"","navigationStyle":"custom","enablePullDownRefresh":false,"bounce":"none"}},{"path":"/pages/booksReadingDetail/booksReadingDetail","meta":{},"window":{"navigationBarTitleText":""}},{"path":"/pages/bookRecommendList/bookRecommendList","meta":{},"window":{"navigationBarTitleText":""}}]; +__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); +__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); +service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}}); diff --git a/unpackage/dist/build/app-plus/app-config.js b/unpackage/dist/build/app-plus/app-config.js new file mode 100644 index 0000000..d899cd3 --- /dev/null +++ b/unpackage/dist/build/app-plus/app-config.js @@ -0,0 +1 @@ +(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c1?e-1:0),n=1;n1){var l=s.pop();c=s.join("---COMMA---"),0===l.indexOf(" at ")?c+=l:c+="---COMMA---"+l}else c=s[0];console[a](c)}i.r(e),i.d(e,"log",(function(){return a})),i.d(e,"default",(function(){return s}))},"0de95":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={rate:{value:1,count:5,disabled:!1,size:18,inactiveColor:"#b2b2b2",activeColor:"#FA3534",gutter:4,minCount:1,allowHalf:!1,activeIcon:"star-fill",inactiveIcon:"star",touchable:!0}}},"0e11":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={skeleton:{loading:!0,animate:!0,rows:0,rowsWidth:"100%",rowsHeight:18,title:!0,titleWidth:"50%",titleHeight:18,avatar:!1,avatarSize:32,avatarShape:"circle"}}},"0f2e":function(t,e,i){"use strict";i.r(e);var n=i("4716"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"0f3e":function(t,e,i){"use strict";i.r(e);var n=i("edad"),o=i("7bed");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"b1f995c2",null,!1,n["a"],void 0);e["default"]=s.exports},"0f51":function(t,e,i){"use strict";i.r(e);var n=i("521c"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"0fc7":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{show:{type:Boolean,default:uni.$u.props.modal.show},title:{type:[String],default:uni.$u.props.modal.title},content:{type:String,default:uni.$u.props.modal.content},confirmText:{type:String,default:uni.$u.props.modal.confirmText},cancelText:{type:String,default:uni.$u.props.modal.cancelText},showConfirmButton:{type:Boolean,default:uni.$u.props.modal.showConfirmButton},showCancelButton:{type:Boolean,default:uni.$u.props.modal.showCancelButton},confirmColor:{type:String,default:uni.$u.props.modal.confirmColor},cancelColor:{type:String,default:uni.$u.props.modal.cancelColor},buttonReverse:{type:Boolean,default:uni.$u.props.modal.buttonReverse},zoom:{type:Boolean,default:uni.$u.props.modal.zoom},asyncClose:{type:Boolean,default:uni.$u.props.modal.asyncClose},closeOnClickOverlay:{type:Boolean,default:uni.$u.props.modal.closeOnClickOverlay},negativeTop:{type:[String,Number],default:uni.$u.props.modal.negativeTop},width:{type:[String,Number],default:uni.$u.props.modal.width},confirmButtonShape:{type:String,default:uni.$u.props.modal.confirmButtonShape}}};e.default=n},"102e":function(t,e){t.exports="/static/images/sign_in_calendar.png"},1030:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={columnNotice:{text:"",icon:"volume",mode:"",color:"#f9ae3d",bgColor:"#fdf6ec",fontSize:14,speed:80,step:!1,duration:1500,disableTouch:!0}}},1047:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={keyboard:{mode:"number",dotDisabled:!1,tooltip:!0,showTips:!0,tips:"",showCancel:!0,showConfirm:!0,random:!1,safeAreaInsetBottom:!0,closeOnClickOverlay:!0,show:!1,overlay:!0,zIndex:10075,cancelText:"\u53d6\u6d88",confirmText:"\u786e\u5b9a",autoChange:!1}}},1104:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={search:{shape:"round",bgColor:"#f2f2f2",placeholder:"\u8bf7\u8f93\u5165\u5173\u952e\u5b57",clearabled:!0,focus:!1,showAction:!0,actionStyle:function(){return{}},actionText:"\u641c\u7d22",inputAlign:"left",inputStyle:function(){return{}},disabled:!1,borderColor:"transparent",searchIconColor:"#909399",searchIconSize:22,color:"#606266",placeholderColor:"#909399",searchIcon:"search",margin:"0",animation:!1,value:"",maxlength:"-1",height:32,label:null}}},1136:function(t,e,i){"use strict";i.r(e);var n=i("d6ee"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"11b0":function(t,e){t.exports=function(t){if("undefined"!==typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)},t.exports.__esModule=!0,t.exports["default"]=t.exports},"11bb":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("af76")),r=function(t){return"number"===typeof t?t+"px":t},a={name:"UniNavBar",components:{statusBar:o.default},emits:["clickLeft","clickRight","clickTitle"],props:{dark:{type:Boolean,default:!1},title:{type:String,default:""},leftText:{type:String,default:""},rightText:{type:String,default:""},leftIcon:{type:String,default:""},rightIcon:{type:String,default:""},fixed:{type:[Boolean,String],default:!1},color:{type:String,default:""},backgroundColor:{type:String,default:""},statusBar:{type:[Boolean,String],default:!1},shadow:{type:[Boolean,String],default:!1},border:{type:[Boolean,String],default:!0},height:{type:[Number,String],default:44},leftWidth:{type:[Number,String],default:60},rightWidth:{type:[Number,String],default:60},stat:{type:[Boolean,String],default:""}},computed:{themeBgColor:function(){return this.dark?this.backgroundColor?this.backgroundColor:this.dark?"#333":"#FFF":this.backgroundColor||"#FFF"},themeColor:function(){return this.dark?this.color?this.color:this.dark?"#fff":"#333":this.color||"#333"},navbarHeight:function(){return r(this.height)},leftIconWidth:function(){return r(this.leftWidth)},rightIconWidth:function(){return r(this.rightWidth)}},mounted:function(){uni.report&&this.stat&&""!==this.title&&uni.report("title",this.title)},methods:{onClickLeft:function(){this.$emit("clickLeft")},onClickRight:function(){this.$emit("clickRight")},onClickTitle:function(){this.$emit("clickTitle")}}};e.default=a},"11d4":function(t,e,i){"use strict";i.r(e);var n=i("bba8"),o=i("c9fa");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"0512cc1d",null,!1,n["a"],void 0);e["default"]=s.exports},"11d7":function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uLine:i("030c").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","u-cell-group"),class:t._$s(0,"c",[t.customClass]),style:t._$s(0,"s",[t.$u.addStyle(t.customStyle)]),attrs:{_i:0}},[t._$s(1,"i",t.title)?i("view",{staticClass:t._$s(1,"sc","u-cell-group__title"),attrs:{_i:1}},[t._t("title",[i("text",{staticClass:t._$s(3,"sc","u-cell-group__title__text"),attrs:{_i:3}},[t._v(t._$s(3,"t0-0",t._s(t.title)))])],{_i:2})],2):t._e(),i("view",{staticClass:t._$s(4,"sc","u-cell-group__wrapper"),attrs:{_i:4}},[t._$s(5,"i",t.border)?i("u-line",{attrs:{_i:5}}):t._e(),t._t("default",null,{_i:6})],2)])},r=[]},"120c":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return t._$s(0,"i",t.inited)?i("view",{ref:"u-transition",staticClass:t._$s(0,"sc","u-transition"),class:t._$s(0,"c",t.classes),style:t._$s(0,"s",[t.mergeStyle]),attrs:{_i:0},on:{touchmove:t.noop,click:t.clickHandler}},[t._t("default",null,{_i:1})],2):t._e()},o=[]},1250:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={name:"originalBoolItem",props:{bookTips:{type:String,default:""},bookName:{type:String,default:""},bookImage:{type:String,default:""}},data:function(){return{}}};e.default=n},"125c":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={alert:{title:"",type:"warning",description:"",closable:!1,showIcon:!1,effect:"light",center:!1,fontSize:14}}},"12ba":function(t,e,i){"use strict";i.r(e);var n=i("2b56"),o=i("3b95");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},1316:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("a34a")),r=n(i("448a")),a=n(i("9523")),s=n(i("c973")),c=n(i("1d82")),l=n(i("9e33")),u=n(i("fe1f")),d=n(i("bc83")),f=n(i("edc0")),p=n(i("51a9")),h=n(i("7af7")),_=n(i("7ea9")),v=n(i("57e9")),m=n(i("4978")),g=n(i("349e")),b=(n(i("b147")),n(i("c808")),i("d0cf")),y=i("7f36"),x=(n(i("86af")),n(i("0d31")));function w(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function $(t){for(var e=1;e2&&void 0!==arguments[2]&&arguments[2];return new Promise((function(i){var r=n.booksDirectorySid;n.novelReadingContentText;o&&uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var a={sid:r};e&&(a.id=e),uni.$u.http.post("/read",a).then((function(t){if(uni.hideLoading(),1==t.status){var e=t.data,o=e.novel_content.replace(/<\/p>/g,"\n"),r=$($({},e),{},{content:o.replace(/

/g,""),isStart:""==e.lastid,isEnd:""==e.nextid,chapter:e.chapterorder,title:e.chaptername,isTtitle:e.title});n.readChapterInfoObj=r,i(r)}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/novelReading/novelReading.vue:308")}))}))},loadmoreContent:function(e,i){var n=this;return(0,s.default)(o.default.mark((function a(){var s,c,l,u,d,f,p,h,_;return o.default.wrap((function(o){while(1)switch(o.prev=o.next){case 0:if(s=n.readDirectoryActive,c=n.readChapterLastid,l=n.novelReadingContentText,u=n.readChapterNextid,t("log",e,s,"loadmoreContent"," at pages/novelReading/novelReading.vue:318"),1==e){o.next=24;break}if(!(es)){o.next=24;break}return o.next=19,n.isGetBookInfo(u);case 19:p=o.sent,n.novelReadingContentText=[p].concat((0,r.default)(l)),n.readDirectoryActive=e,1==p.chackpay&&i("success",p),2==p.chackpay&&(n.novelContentColor,n.newCharactersSize,n.bodyReadingBg,h=["slot:test"],_=$($({},p),{},{custom:h,content:""}),t("log",_,"objobj"," at pages/novelReading/novelReading.vue:368"),i("success",_));case 24:case"end":return o.stop()}}),a)})))()},currentChange:function(t){var e=this.novelReadingContentText,i=t.chapter,n=e.filter((function(t){return t.chapter==i}));this.readChapterLastid=n[0].lastid,this.readChapterNextid=n[0].nextid},previousChapter:function(){var t=this;return(0,s.default)(o.default.mark((function e(){var i,n,r;return o.default.wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(i=t.readDirectoryActive,n=t.readChapterLastid,t.novelReadingContentText,n){e.next=6;break}return uni.showToast({icon:"none",title:"\u5df2\u7ecf\u662f\u7b2c\u4e00\u7ae0\u4e86"}),e.abrupt("return");case 6:return e.next=8,t.isGetBookInfo(n);case 8:r=e.sent,t.novelReadingContentText=[r],t.$refs.yingbingReadPage.init({contents:[r],start:0,currentChapter:i-1}),t.readDirectoryActive=i-1;case 12:case"end":return e.stop()}}),e)})))()},nextChapter:function(){var t=this;return(0,s.default)(o.default.mark((function e(){var i,n,r;return o.default.wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(i=t.readDirectoryActive,n=t.readChapterNextid,t.novelReadingContentText,n){e.next=6;break}return uni.showToast({icon:"none",title:"\u5df2\u7ecf\u662f\u6700\u540e\u4e00\u7ae0\u4e86~"}),e.abrupt("return");case 6:return e.next=8,t.isGetBookInfo(n);case 8:r=e.sent,t.novelReadingContentText=[r],t.$refs.yingbingReadPage.init({contents:[r],start:0,currentChapter:i+1}),t.readDirectoryActive=i+1;case 12:case"end":return e.stop()}}),e)})))()},handelDirectoryItem:function(t){},handelShowStepUp:function(){this.readingPopupshow=!this.readingPopupshow,this.navbarPopupShow=!this.navbarPopupShow,this.stepUpPopupShow=!1},handelDirectoryPopup:function(){var t=this.readChapterInfoObj,e=this.readDirectoryActive;uni.navigateTo({url:"/pages/bookRecommendList/bookRecommendList?sid=".concat(t.sid,"&t=").concat(t.isTitle,"&c=").concat(e)})},toPathLogin:function(){var t=this.readChapterInfoObj,e=this.readDirectoryActive;uni.navigateTo({url:"/pages/login/login?sid=".concat(t.sid,"&i=").concat(t.id,"&c=").concat(e,"&to=1")})},directoryPopupClose:function(){},purchaseFullClose:function(){var t=this.readChapterFlag;t||(this.purchaseFullShow=!1)},handelSteUpPopup:function(){this.stepUpPopupShow=!0},balanceConfirm:function(){uni.navigateTo({url:"/pages/voucherCenter/index"})},balanceCancel:function(){this.balanceShow=!1},handelPurchaseFull:function(){var t=this,e=this.readChapterInfoObj;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var i={sid:e.sid,id:e.id,allprice:e.allprice};uni.$u.http.post("/buyall",i).then((function(e){uni.hideLoading(),1==e.status&&2==e.data.status&&(t.balanceShow=!0,t.balanceTitle="")})).catch((function(t){uni.hideLoading()}))},changNovelMainType:function(t){this.novelMainTypeColor=t,this.initPage(t);var e=(0,y.myGetStorage)("novelMainObj")||"{}",i=$($({},JSON.parse(e)),{},{novelMainTypeColor:t});(0,y.mySetStorage)("novelMainObj",JSON.stringify(i))},reduceCharactersSize:function(){var t=this.newCharactersSize;this.newCharactersSize=t-2;var e=(0,y.myGetStorage)("novelMainObj")||"{}",i=$($({},JSON.parse(e)),{},{charactersSize:t-2});(0,y.mySetStorage)("novelMainObj",JSON.stringify(i))},addCharactersSize:function(){var t=this.newCharactersSize;this.newCharactersSize=t+2;var e=(0,y.myGetStorage)("novelMainObj")||"{}",i=$($({},JSON.parse(e)),{},{charactersSize:t+2});(0,y.mySetStorage)("novelMainObj",JSON.stringify(i))},handelCharactersSize:function(){var t=this.defaultCharactersSize;this.newCharactersSize=t;var e=(0,y.myGetStorage)("novelMainObj")||"{}",i=$($({},JSON.parse(e)),{},{charactersSize:t});(0,y.mySetStorage)("novelMainObj",JSON.stringify(i))},directoryPopupUpper:function(){var t=this.booksDirectoryPage,e=this.newBooksDirectoryPage;if(t>1&&-1==e.indexOf(t)){var i=this.booksDirectorySid,n=t-1;this.booksDirectoryPage=n,this.isGetDirectory(i,n,"upper")}},directoryPopupLower:function(){var t=this.booksDirectoryPage,e=this.booksDirectorySid,i=t+1,n=[].concat((0,r.default)(this.newBooksDirectoryPage),[i]);this.newBooksDirectoryPage=n,this.booksDirectoryPage=i,this.isGetDirectory(e,i,"lower")},isGetDirectory:function(e,i,n){var o=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var a={sid:e,page:i};uni.$u.http.post("/getDirectory",a).then((function(t){if(uni.hideLoading(),1==t.status){var e=t.data.directory;o.directoryList="upper"==n?[].concat((0,r.default)(e),(0,r.default)(o.directoryList)):"lower"==n?[].concat((0,r.default)(o.directoryList),(0,r.default)(e)):e}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/novelReading/novelReading.vue:579")}))},initPage:function(t){var e=c.default[t].mainBodyBg;this.navigationBarTitleTextColor=c.default[t].navigationBarTitleTextColor,this.mainBodyBg=e,this.bodyReadingBg=e,this.dialogTextColor=c.default[t].dialogTextColor,this.progressBg=c.default[t].progressBg,this.progressActiveBg=c.default[t].progressActiveBg,this.setUpModeBlack=g.default,this.dialogATextBg=c.default[t].dialogATextBg,this.tabBarTextColor=c.default[t].tabBarTextColor,this.novelContentColor=c.default[t].novelContentColor,this.navigationBarTitleTextBackColor=c.default[t].navigationBarTitleTextBackColor,this.previousChapterBbuttonBg=c.default[t].previousChapterBbuttonBg,this.previousChapterBbuttonTextColor=c.default[t].previousChapterBbuttonTextColor,this.nextChapterBbuttonBg=c.default[t].nextChapterBbuttonBg,this.nextChapterBbuttonTextColor=c.default[t].nextChapterBbuttonTextColor},rightClick:function(){uni.navigateBack()},toBookshelf:function(){uni.reLaunch({url:"/pages/bookCity/bookCity/index"})}},created:function(){var t=(0,y.myGetStorage)("novelMainObj")||"{}",e=JSON.parse(t).novelMainTypeColor||"F3EFE9",i=(0,b.isGetSystemInfo)(),n=i.screenHeight,o=void 0===n?0:n,r=i.statusBarHeight,a=void 0===r?0:r,s=(i.windowHeight,i.devicePixelRatio),g=(i.windowBottom,i.windowWidth);i.screenWidth;this.computeRichTextWidth=g,this.novelMainTypeColor=e,this.newCharactersSize=JSON.parse(t).charactersSize||28,this.bodyReadingHeight=o-a-22*s,this.setUpColorAll=c.default,this.barPopupIcon={F3EFE9:{bookshelf_icon:_.default,directory_icon:v.default,step_up_icon:m.default},CCD9E2:{bookshelf_icon:f.default,directory_icon:h.default,step_up_icon:p.default},333333:{bookshelf_icon:l.default,directory_icon:u.default,step_up_icon:d.default}},this.initPage(e)}};e.default=C}).call(this,i("0de9")["default"])},"13d6":function(t,e,i){"use strict";i.r(e);var n=i("8f3a"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},1410:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uLoadingIcon:i("70a6").default,uIcon:i("7b88").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("button",{staticClass:t._$s(0,"sc","u-button u-reset-button"),class:t._$s(0,"c",t.bemClass),style:t._$s(0,"s",[t.baseColor,t.$u.addStyle(t.customStyle)]),attrs:{"hover-start-time":t._$s(0,"a-hover-start-time",Number(t.hoverStartTime)),"hover-stay-time":t._$s(0,"a-hover-stay-time",Number(t.hoverStayTime)),"form-type":t._$s(0,"a-form-type",t.formType),"open-type":t._$s(0,"a-open-type",t.openType),"app-parameter":t._$s(0,"a-app-parameter",t.appParameter),"hover-stop-propagation":t._$s(0,"a-hover-stop-propagation",t.hoverStopPropagation),"send-message-title":t._$s(0,"a-send-message-title",t.sendMessageTitle),"send-message-path":t._$s(0,"a-send-message-path",t.sendMessagePath),lang:t._$s(0,"a-lang",t.lang),"data-name":t._$s(0,"a-data-name",t.dataName),"session-from":t._$s(0,"a-session-from",t.sessionFrom),"send-message-img":t._$s(0,"a-send-message-img",t.sendMessageImg),"show-message-card":t._$s(0,"a-show-message-card",t.showMessageCard),"hover-class":t._$s(0,"a-hover-class",t.disabled||t.loading?"":"u-button--active"),_i:0},on:{getphonenumber:t.getphonenumber,getuserinfo:t.getuserinfo,error:t.error,opensetting:t.opensetting,launchapp:t.launchapp,click:t.clickHandler}},[t._$s(1,"i",t.loading)?[i("u-loading-icon",{attrs:{mode:t.loadingMode,size:1.15*t.loadingSize,color:t.loadingColor,_i:2}}),i("text",{staticClass:t._$s(3,"sc","u-button__loading-text"),style:t._$s(3,"s",[{fontSize:t.textSize+"px"}]),attrs:{_i:3}},[t._v(t._$s(3,"t0-0",t._s(t.loadingText||t.text)))])]:[t._$s(5,"i",t.icon)?i("u-icon",{attrs:{name:t.icon,color:t.iconColorCom,size:1.35*t.textSize,customStyle:{marginRight:"2px"},_i:5}}):t._e(),t._t("default",[i("text",{staticClass:t._$s(7,"sc","u-button__text"),style:t._$s(7,"s",[{fontSize:t.textSize+"px"}]),attrs:{_i:7}},[t._v(t._$s(7,"t0-0",t._s(t.text)))])],{_i:6})]],2)},r=[]},1437:function(t,e,i){"use strict";i.r(e);var n=i("d0a4"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},1484:function(t,e,i){"use strict";i.r(e);var n=i("eb99"),o=i("c5f2");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"14ec":function(t,e,i){"use strict";i.r(e);var n=i("f0a4"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"155b":function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uIcon:i("7b88").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","u-checkbox"),class:t._$s(0,"c",["u-checkbox-label--"+t.parentData.iconPlacement,t.parentData.borderBottom&&"column"===t.parentData.placement&&"u-border-bottom"]),style:t._$s(0,"s",[t.checkboxStyle]),attrs:{_i:0},on:{click:function(e){return e.stopPropagation(),t.wrapperClickHandler(e)}}},[i("view",{staticClass:t._$s(1,"sc","u-checkbox__icon-wrap"),class:t._$s(1,"c",t.iconClasses),style:t._$s(1,"s",[t.iconWrapStyle]),attrs:{_i:1},on:{click:function(e){return e.stopPropagation(),t.iconClickHandler(e)}}},[t._t("icon",[i("u-icon",{staticClass:t._$s(3,"sc","u-checkbox__icon-wrap__icon"),attrs:{name:"checkbox-mark",size:t.elIconSize,color:t.elIconColor,_i:3}})],{_i:2})],2),i("text",{style:t._$s(4,"s",{color:t.elDisabled?t.elInactiveColor:t.elLabelColor,fontSize:t.elLabelSize,lineHeight:t.elLabelSize}),attrs:{_i:4},on:{click:function(e){return e.stopPropagation(),t.labelClickHandler(e)}}},[t._v(t._$s(4,"t0-0",t._s(t.label)))])])},r=[]},"156b":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("8266"));e.default=function(t){return(0,o.default)(t)}},"15a2":function(t,e,i){"use strict";i.r(e);var n=i("f4f3"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"15df":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={input:{value:"",type:"text",fixed:!1,disabled:!1,disabledColor:"#f5f7fa",clearable:!1,password:!1,maxlength:-1,placeholder:null,placeholderClass:"input-placeholder",placeholderStyle:"color: #c0c4cc",showWordLimit:!1,confirmType:"done",confirmHold:!1,holdKeyboard:!1,focus:!1,autoBlur:!1,disableDefaultPadding:!1,cursor:-1,cursorSpacing:30,selectionStart:-1,selectionEnd:-1,adjustPosition:!0,inputAlign:"left",fontSize:"15px",color:"#303133",prefixIcon:"",prefixIconStyle:"",suffixIcon:"",suffixIconStyle:"",border:"surround",readonly:!1,shape:"square",formatter:null}}},"163b":function(t,e,i){"use strict";i.r(e);var n=i("918e"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"163c":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={noticeBar:{text:function(){return[]},direction:"row",step:!1,icon:"volume",mode:"",color:"#f9ae3d",bgColor:"#fdf6ec",speed:80,fontSize:14,duration:2e3,disableTouch:!0,url:"",linkType:"navigateTo"}}},1644:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={codeInput:{adjustPosition:!0,maxlength:6,dot:!1,mode:"box",hairline:!1,space:10,value:"",focus:!1,bold:!1,color:"#606266",fontSize:18,size:35,disabledKeyboard:!1,borderColor:"#c9cacc",disabledDot:!0}}},1666:function(t,e,i){"use strict";i.r(e);var n=i("d0a2"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"16d1":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={transition:{show:!1,mode:"fade",duration:"300",timingFunction:"ease-out"}}},1730:function(t,e,i){"use strict";i.r(e);var n=i("2ce7"),o=i("0455");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"39a06a06",null,!1,n["a"],void 0);e["default"]=s.exports},"17e7":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={}},1814:function(t,e,i){"use strict";i.r(e);var n=i("4207"),o=i("3163");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"72836044",null,!1,n["a"],void 0);e["default"]=s.exports},1817:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("7037")),r={zeroize:function(t){return a(t)},dateFormat:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd hh:mm:ss",i=e.split(" "),n="",o="";i.forEach((function(t){t.indexOf("yy")>-1?n=t:o=t}));var r=new Date(t),s="";return n.indexOf("yyyy")>-1&&(s+=r.getFullYear()+"-"),n.indexOf("mm")>-1&&(s+=a(r.getMonth()+1)+"-"),n.indexOf("dd")>-1&&(s+=a(r.getDate())+" "),o.indexOf("hh")>-1&&(s+=a(r.getHours())+":"),o.indexOf("mm")>-1&&(s+=a(r.getMinutes())+":"),o.indexOf("ss")>-1&&(s+=a(r.getSeconds())+":"),s.substring(0,s.length-1)},minutesFormat:function(t){var e=Math.floor(t/60%60)>=10?Math.floor(t/60%60):"0"+Math.floor(t/60%60),i=Math.floor(t%60)>=10?Math.floor(t%60):"0"+Math.floor(t%60);return e+":"+i},time2seconds:function(t){var e=60*parseInt(t.split(":")[0])+parseInt(t.split(":")[1].split(".")[0])+parseInt(t.split(":")[1].split(".")[1])/1e3;return e},removeUrl:function(t){var e=t.replace(/^http:\/\/[^/]+/,"");return e.substr(1)},suffix:function(t){var e=t.lastIndexOf("."),i=t.length,n=t.substring(e+1,i);return n},removeSuffix:function(t){var e=t.lastIndexOf(".");if(e>-1){var i=t.substring(0,e);return i}return t},indexOf:function(t,e,i){for(var n=t.length,o=0;o2&&void 0!==arguments[2]?arguments[2]:"minutes",o=new Date(e),r=new Date(i);if(o>r)return t("log","\u5f00\u59cb\u65f6\u95f4\u4e0d\u80fd\u5927\u4e8e\u7ed3\u675f\u65f6\u95f4\uff01"," at uni_modules/yingbing-ReadPage/js_sdk/util.js:147"),!1;var a=r.getTime()/1e3-o.getTime()/1e3;return"minutes"==n?a/60:"hours"==n?a/60/60:a},typeof:function(t){var e=Object.prototype.toString.call(t);return e.slice(8,e.length-1)},randomString:function(t){t=t||32;for(var e="ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678",i=e.length,n="",o=0;o=i.min&&(e=(t/i.value).toFixed(2)+i.label)})),e},pixelunit:function(t){return t.toString().indexOf("px")>-1||t.toString().indexOf("em")>-1||t.toString().indexOf("auto")>-1||t.toString().indexOf("%")>-1?t:t+"rpx"},unitpixel:function(t){return t.toString().indexOf("rpx")>-1?uni.upx2px(t.replace("rpx","")):t.toString().indexOf("px")>-1?parseFloat(t.replace("px","")):t.toString().indexOf("em")>-1||t.toString().indexOf("auto")>-1||t.toString().indexOf("%")>-1?t:parseFloat(uni.upx2px(t))},anytorpx:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return t.toString().indexOf("rpx")>-1?e?t:parseFloat(t.replace("rpx","")):t.toString().indexOf("px")>-1?parseFloat(t.replace("px","")*(750/uni.getSystemInfoSync().windowWidth))+(e?"rpx":0):t.toString().indexOf("auto")>-1?"auto":t.toString().indexOf("%")>-1?parseFloat(t.replace("%","")/100*750)+(e?"rpx":0):t.toString().indexOf("em")>-1||t.toString().indexOf("rem")>-1?parseFloat(32*t.replace("em","").replace("rem",""))+(e?"rpx":0):/^\d+$/.test(t)?parseFloat(t)+(e?"rpx":0):void 0},anytopx:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t.toString().indexOf("rpx")>-1?uni.upx2px(t.replace("rpx",""))+(e?"px":0):t.toString().indexOf("px")>-1?parseFloat(t.replace("px",""))+(e?"px":0):t.toString().indexOf("auto")>-1?"auto":t.toString().indexOf("%")>-1?parseFloat(t.replace("%","")/100*uni.getSystemInfoSync().windowWidth)+(e?"px":0):t.toString().indexOf("em")>-1||t.toString().indexOf("rem")>-1?parseFloat(t.replace("em","").replace("rem","")*uni.getSystemInfoSync().windowWidth)+(e?"px":0):/^\d+$/.test(t)?parseFloat(t)+(e?"px":0):void 0},getRefs:function(t,e,i){return i>=0?t.$refs[e][i]:t.$refs[e]},getEl:function(t){return"string"===typeof t||"number"===typeof t?t:WXEnvironment?t.ref:t instanceof HTMLElement?t:t.$el},getParent:function(t,e){var i=e.$parent;if(i){var n=i.$options.name;while(n!==t){if(i=i.$parent,!i)return null;n=i.$options.name}return i}return null},getChildrens:function(t,e){var i=this,n=[],o=t.split(",");return function t(e){"Array"==i.typeof(e)&&e.forEach((function(e){o.indexOf(e.$options.name)>-1&&n.push(e),e.$children&&e.$children.length>0&&t(e.$children)}))}(e.$children),n},getRect:function(t,e,i){return new Promise((function(e){uni.createSelectorQuery().in(i).select(t).boundingClientRect((function(t){e(t)})).exec()}))}};function a(t){return t>=10?t:"0"+t}e.default=r}).call(this,i("0de9")["default"])},"19c8":function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("448a")),r=i("d0cf"),a=n(i("096b")),s=i("22a5"),c={components:{CommFooter:a.default},data:function(){return{booksTheChartsContentHeigth:0,titleListscroll:0,booksList:[],oneTitleList:[],twoTitleList:[{id:"0",name:"\u5168\u90e8"},{id:"1",name:"\u4eba\u6c14\u699c"},{id:"2",name:"\u7545\u9500\u7248"},{id:"3",name:"\u65b0\u4e66\u699c"},{id:"4",name:"\u5b8c\u7ed3\u7248"}],twoTitleActive:"0",oneTitleActive:"0"}},onLoad:function(t){var e=(0,r.isGetSystemInfo)(),i=(e.windowHeight,e.screenHeight),n=e.statusBarHeight;e.devicePixelRatio;this.booksTheChartsContentHeigth=i-n,this.twoTitleActive=t.chartsType?t.chartsType:"0",this.titleListscroll=i-n},onShow:function(){var e=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});uni.$u.http.post("/getCategory",{}).then((function(t){if(uni.hideLoading(),1==t.status){var i=t.data.list;e.oneTitleList=[{id:"0",title:"\u5168\u90e8"}].concat((0,o.default)(i))}e.getBooks(e.twoTitleActive,0)})).catch((function(i){uni.hideLoading(),t("log",i,"========"," at pages/booksTheCharts/index.vue:131"),e.getBooks(e.twoTitleActive,0)}))},methods:{navbarLeftClick:function(){uni.navigateBack()},getBooks:function(e,i){var n=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var o={type:e,category_id:i};uni.$u.http.post("/getChartsCategory",o,{custom:{token:!0}}).then((function(t){if(uni.hideLoading(),1==t.status){var e=t.data.module;n.booksList=(0,s.baseUrlImage)(e)}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/booksTheCharts/index.vue:162")}))},handelTwoTitle:function(t){var e=t.currentTarget.dataset.id;this.twoTitleActive=e,this.getBooks(e,this.oneTitleActive)},toBooksReadingDetail:function(t){uni.navigateTo({url:"/pages/booksReadingDetail/booksReadingDetail?sid=".concat(t.id,"&t=").concat(t.title)})},handelOneTitle:function(t){var e=t.currentTarget.dataset.id;this.oneTitleActive=e,this.getBooks(this.twoTitleActive,e)}}};e.default=c}).call(this,i("0de9")["default"])},"1a0a":function(t,e,i){"use strict";i.r(e);var n=i("a913"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"1bbe":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={primary:"#3c9cff",info:"#909399",default:"#909399",warning:"#f9ae3d",error:"#f56c6c",success:"#5ac725",mainColor:"#303133",contentColor:"#606266",tipsColor:"#909399",lightColor:"#c0c4cc",borderColor:"#e4e7ed"};e.default=n},"1cd0":function(t,e,i){"use strict";i.r(e);var n=i("6a27"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"1cef":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.deepMerge=function t(){var e={};function i(i,n){"object"===(0,o.default)(e[n])&&"object"===(0,o.default)(i)?e[n]=t(e[n],i):"object"===(0,o.default)(i)?e[n]=t({},i):e[n]=i}for(var n=0,r=arguments.length;n0?a-4:a;for(i=0;i>16&255,c[u++]=e>>8&255,c[u++]=255&e;2===s&&(e=o[t.charCodeAt(i)]<<2|o[t.charCodeAt(i+1)]>>4,c[u++]=255&e);1===s&&(e=o[t.charCodeAt(i)]<<10|o[t.charCodeAt(i+1)]<<4|o[t.charCodeAt(i+2)]>>2,c[u++]=e>>8&255,c[u++]=255&e);return c},e.fromByteArray=function(t){for(var e,i=t.length,o=i%3,r=[],a=0,s=i-o;as?s:a+16383));1===o?(e=t[i-1],r.push(n[e>>2]+n[e<<4&63]+"==")):2===o&&(e=(t[i-2]<<8)+t[i-1],r.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return r.join("")};for(var n=[],o=[],r="undefined"!==typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,c=a.length;s0)throw new Error("Invalid string. Length must be a multiple of 4");var i=t.indexOf("=");-1===i&&(i=e);var n=i===e?0:4-i%4;return[i,n]}function u(t){return n[t>>18&63]+n[t>>12&63]+n[t>>6&63]+n[63&t]}function d(t,e,i){for(var n,o=[],r=e;r0&&void 0!==arguments[0]?arguments[0]:[],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"cover",i=t.map((function(t){return s(s({},t),{},(0,o.default)({},e,"".concat(r.default.baseUrl).concat(t[e])))}));return i}},"22e5":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{class:t._$s(0,"c","_"+t.name+" "+t.attrs.class),style:t._$s(0,"s",t.attrs.style),attrs:{id:t._$s(0,"a-id",t.attrs.id),_i:0}},[t._l(t._$s(1,"f",{forItems:t.childs}),(function(e,n,o,r){return[t._$s("2-"+r,"i","img"==e.name&&(t.opts[1]&&!t.ctrl[n]||t.ctrl[n]<0))?i("image",{key:t._$s(1,"f",{forIndex:o,keyIndex:0,key:n+"_0"}),staticClass:t._$s("2-"+r,"sc","_img"),style:t._$s("2-"+r,"s",e.attrs.style),attrs:{src:t._$s("2-"+r,"a-src",t.ctrl[n]<0?t.opts[2]:t.opts[1]),_i:"2-"+r}}):t._e(),t._$s("3-"+r,"i","img"==e.name)?i("img",{key:t._$s(1,"f",{forIndex:o,keyIndex:1,key:n+"_1"}),class:t._$s("3-"+r,"c","_img "+e.attrs.class),style:t._$s("3-"+r,"s",(-1==t.ctrl[n]?"display:none;":"")+e.attrs.style),attrs:{id:t._$s("3-"+r,"a-id",e.attrs.id),src:t._$s("3-"+r,"a-src",e.attrs.src||(t.ctrl.load?e.attrs["data-src"]:"")),"data-i":t._$s("3-"+r,"a-data-i",n),_i:"3-"+r},on:{load:t.imgLoad,error:t.mediaError,longpress:t.imgLongTap,click:function(e){return e.stopPropagation(),t.imgTap(e)}}}):t._$s("4-"+r,"e","text"==e.type)?i("text",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),attrs:{_i:"4-"+r}},[t._v(t._$s("4-"+r,"t0-0",t._s(e.text)))]):t._$s("5-"+r,"e","br"==e.name)?i("text",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r})}):t._$s("6-"+r,"e","a"==e.name)?i("view",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),class:t._$s("6-"+r,"c",(e.attrs.href?"_a ":"")+e.attrs.class),style:t._$s("6-"+r,"s","display:inline;"+e.attrs.style),attrs:{id:t._$s("6-"+r,"a-id",e.attrs.id),"data-i":t._$s("6-"+r,"a-data-i",n),_i:"6-"+r},on:{click:function(e){return e.stopPropagation(),t.linkTap(e)}}},[i("node",{attrs:{name:"span",childs:e.children,opts:t.opts,_i:"7-"+r}})],1):t._$s("8-"+r,"e",e.html)?i("view",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),class:t._$s("8-"+r,"c","_video "+e.attrs.class),style:t._$s("8-"+r,"s",e.attrs.style),attrs:{id:t._$s("8-"+r,"a-id",e.attrs.id),_i:"8-"+r},domProps:{innerHTML:t._s(t._$s("8-"+r,"v-html",e.html))}}):t._$s("9-"+r,"e","iframe"==e.name)?i("iframe",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),style:t._$s("9-"+r,"s",e.attrs.style),attrs:{allowfullscreen:t._$s("9-"+r,"a-allowfullscreen",e.attrs.allowfullscreen),frameborder:t._$s("9-"+r,"a-frameborder",e.attrs.frameborder),src:t._$s("9-"+r,"a-src",e.attrs.src),_i:"9-"+r}}):t._$s("10-"+r,"e","embed"==e.name)?i("embed",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),style:t._$s("10-"+r,"s",e.attrs.style),attrs:{src:t._$s("10-"+r,"a-src",e.attrs.src),_i:"10-"+r}}):t._$s("11-"+r,"e","audio"==e.name)?i("audio",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),class:t._$s("11-"+r,"c",e.attrs.class),style:t._$s("11-"+r,"s",e.attrs.style),attrs:{id:t._$s("11-"+r,"a-id",e.attrs.id),author:t._$s("11-"+r,"a-author",e.attrs.author),controls:t._$s("11-"+r,"a-controls",e.attrs.controls),loop:t._$s("11-"+r,"a-loop",e.attrs.loop),name:t._$s("11-"+r,"a-name",e.attrs.name),poster:t._$s("11-"+r,"a-poster",e.attrs.poster),src:t._$s("11-"+r,"a-src",e.src[t.ctrl[n]||0]),"data-i":t._$s("11-"+r,"a-data-i",n),_i:"11-"+r},on:{play:t.play,error:t.mediaError}}):t._$s("12-"+r,"e","table"==e.name&&e.c||"li"==e.name)?i("view",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),class:t._$s("12-"+r,"c","_"+e.name+" "+e.attrs.class),style:t._$s("12-"+r,"s",e.attrs.style),attrs:{id:t._$s("12-"+r,"a-id",e.attrs.id),_i:"12-"+r}},[t._$s("13-"+r,"i","li"==e.name)?i("node",{attrs:{childs:e.children,opts:t.opts,_i:"13-"+r}}):t._l(t._$s(14,"f",{forItems:e.children}),(function(e,n,o,a){return i("view",{key:t._$s(14,"f",{forIndex:o,key:n}),class:t._$s("14-"+r+a,"c","_"+e.name+" "+e.attrs.class),style:t._$s("14-"+r+a,"s",e.attrs.style),attrs:{_i:"14-"+r+a}},[t._$s("15-"+r+a,"i","td"==e.name||"th"==e.name)?i("node",{attrs:{childs:e.children,opts:t.opts,_i:"15-"+r+a}}):t._l(t._$s(16,"f",{forItems:e.children}),(function(e,n,o,s){return[t._$s("17-"+r+a+s,"i","td"==e.name||"th"==e.name)?i("view",{key:t._$s(16,"f",{forIndex:o,keyIndex:0,key:n+"_0"}),class:t._$s("17-"+r+a+s,"c","_"+e.name+" "+e.attrs.class),style:t._$s("17-"+r+a+s,"s",e.attrs.style),attrs:{_i:"17-"+r+a+s}},[i("node",{attrs:{childs:e.children,opts:t.opts,_i:"18-"+r+a+s}})],1):i("view",{key:t._$s(16,"f",{forIndex:o,keyIndex:-1,key:"16--1"+s}),class:t._$s("19-"+r+a+s,"c","_"+e.name+" "+e.attrs.class),style:t._$s("19-"+r+a+s,"s",e.attrs.style),attrs:{_i:"19-"+r+a+s}},t._l(t._$s("20-"+r+"-"+a+"-"+s,"f",{forItems:e.children}),(function(e,n,o,c){return i("view",{key:t._$s("20-"+r+"-"+a+"-"+s,"f",{forIndex:o,key:n}),class:t._$s("20-"+r+a+s+"-"+c,"c","_"+e.name+" "+e.attrs.class),style:t._$s("20-"+r+a+s+"-"+c,"s",e.attrs.style),attrs:{_i:"20-"+r+a+s+"-"+c}},[i("node",{attrs:{childs:e.children,opts:t.opts,_i:"21-"+r+a+s+"-"+c}})],1)})),0)]}))],2)}))],2):t._$s("22-"+r,"e",t.handler.use(e))?i("rich-text",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),style:t._$s("22-"+r,"s",e.f),attrs:{id:t._$s("22-"+r,"a-id",e.attrs.id),nodes:t._$s("22-"+r,"a-nodes",[e]),_i:"22-"+r}}):t._$s("23-"+r,"e",2==e.c)?i("view",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),class:t._$s("23-"+r,"c","_"+e.name+" "+e.attrs.class),style:t._$s("23-"+r,"s",e.f+";"+e.attrs.style),attrs:{id:t._$s("23-"+r,"a-id",e.attrs.id),_i:"23-"+r}},t._l(t._$s("24-"+r,"f",{forItems:e.children}),(function(e,n,o,a){return i("node",{key:t._$s("24-"+r,"f",{forIndex:o,key:n}),style:t._$s("24-"+r+"-"+a,"s",e.f),attrs:{name:e.name,attrs:e.attrs,childs:e.children,opts:t.opts,_i:"24-"+r+"-"+a}})})),1):i("node",{key:t._$s(1,"f",{forIndex:o,keyIndex:-1,key:"1--1"+r}),style:t._$s("25-"+r,"s",e.f),attrs:{name:e.name,attrs:e.attrs,childs:e.children,opts:t.opts,_i:"25-"+r}})]}))],2)},o=[]},2307:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={indexAnchor:{text:"",color:"#606266",size:14,bgColor:"#dedede",height:32}}},"23c1":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{openType:String},methods:{onGetUserInfo:function(t){this.$emit("getuserinfo",t.detail)},onContact:function(t){this.$emit("contact",t.detail)},onGetPhoneNumber:function(t){this.$emit("getphonenumber",t.detail)},onError:function(t){this.$emit("error",t.detail)},onLaunchApp:function(t){this.$emit("launchapp",t.detail)},onOpenSetting:function(t){this.$emit("opensetting",t.detail)}}};e.default=n},"254c":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","_book_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","book_box"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","book_box_image"),attrs:{_i:2}},[i("image",{staticClass:t._$s(3,"sc","is_image"),attrs:{src:t._$s(3,"a-src",t.bookImage),_i:3}})]),i("view",{staticClass:t._$s(4,"sc","book_box_title"),attrs:{_i:4}},[t._v(t._$s(4,"t0-0",t._s(t.bookName)))]),i("view",{staticClass:t._$s(5,"sc","book_box_tips"),attrs:{_i:5}},[t._v(t._$s(5,"t0-0",t._s(t.bookTips)))])])])},o=[]},2566:function(t,e){t.exports="/static/images/myInfo/browsingHistoryImage.png"},"256f":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{bookInfo:{type:Object,default:{size:"",score:"",userNum:""}}},data:function(){return{}}};e.default=n},2593:function(t,e,i){"use strict";i.r(e);var n=i("2da8"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"25cd":function(t,e,i){"use strict";i.r(e);var n=i("3da8"),o=i("8ba7");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"366cf4a4",null,!1,n["a"],void 0);e["default"]=s.exports},"272f":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","booksListAll_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","booksListAll_list"),attrs:{_i:1}},[i("scroll-view",{staticClass:t._$s(2,"sc","scroll_y"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","scroll_y_item"),attrs:{_i:3}},t._l(t._$s(4,"f",{forItems:t.booksList}),(function(e,n,o,r){return i("view",{key:t._$s(4,"f",{forIndex:o,key:e.id}),staticClass:t._$s("4-"+r,"sc","booksListAll_list_item"),attrs:{_i:"4-"+r},on:{click:function(i){return t.toBooksReadingDetail(e)}}},[i("CommBookLeftRigth",{attrs:{bookTips:e.category_name,bookName:e.title,bookImage:e.cover,bookIntroduction:e.intro,_i:"5-"+r}})],1)})),0)])])])},o=[]},"278c":function(t,e,i){var n=i("c135"),o=i("9b42"),r=i("6613"),a=i("c240");t.exports=function(t,e){return n(t)||o(t,e)||r(t,e)||a()},t.exports.__esModule=!0,t.exports["default"]=t.exports},2814:function(t,e,i){"use strict";i.r(e);var n=i("96ab"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"295c":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("4e38")),r=o.default.color,a={link:{color:r["u-primary"],fontSize:15,underLine:!1,href:"",mpTips:"\u94fe\u63a5\u5df2\u590d\u5236\uff0c\u8bf7\u5728\u6d4f\u89c8\u5668\u6253\u5f00",lineColor:"",text:""}};e.default=a},2978:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uCellGroup:i("0aba").default,uCell:i("9bd0").default,uIcon:i("7b88").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","otherCellInfo_content"),attrs:{_i:0}},[i("u-cell-group",{attrs:{border:!1,_i:1}},t._l(t._$s(2,"f",{forItems:t.otherSteUpList}),(function(e,n,o,r){return i("u-cell",{key:t._$s(2,"f",{forIndex:o,key:n}),attrs:{title:e.title,isLink:!0,border:!1,titleStyle:e.titleStyle,size:"large",url:e.toPath,_i:"2-"+r},scopedSlots:t._u([{key:"icon",fn:function(t,n,o){return[i("u-icon",{attrs:{size:e.size,name:e.icon,_i:"4-"+r+"-"+o}})]}}],null,!0)})})),1)],1)},r=[]},2983:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","yb-list yb-flex"),attrs:{_i:0}},[i("view",{wxsProps:{"change:prop":"pulldownProp"},staticClass:t._$s(1,"sc","yb-refresh yb-flex yb-flex-1"),attrs:{prop:t._$s(1,"change:pulldownProp",t.pulldownProp),_i:1},on:{}},[i("view",{ref:"ybListPulldown",staticClass:t._$s(2,"sc","yb-list-pulldown yb-flex"),attrs:{_i:2}},[i("list-pulldown",{attrs:{status:t.pulldownStatus,options:t.pulldownOptionsSync,_i:3},scopedSlots:t._u([{key:"pulldown-symbol",fn:function(e,i,n){return[t._t("pulldown-symbol",null,{_i:"5-"+n})]}},{key:"pulldown-loading",fn:function(e,i,n){return[t._t("pulldown-loading",null,{_i:"7-"+n})]}},{key:"pulldown-success",fn:function(e,i,n){return[t._t("pulldown-success",null,{_i:"9-"+n})]}},{key:"pulldown-fail",fn:function(e,i,n){return[t._t("pulldown-fail",null,{_i:"11-"+n})]}},{key:"pulldown-end",fn:function(e,i,n){return[t._t("pulldown-end",null,{_i:"13-"+n})]}}],null,!0)})],1),i("scroll-view",{ref:"ybPulldownScroller",staticClass:t._$s(14,"sc","yb-pulldown-scroller yb-pulldown-scroll-view"),attrs:{"scroll-top":t._$s(14,"a-scroll-top",t.scrollTop),"scroll-with-animation":t._$s(14,"a-scroll-with-animation",t.scrollWithAnimation),_i:14},on:{scroll:t.onScroll,scrolltoupper:t.onScrolltoupper,scrolltolower:t.onScrolltolower}},[t._t("default",null,{_i:15}),t._$s(16,"i",t.loadmoreOptionsSync.show)?[i("list-loadmore",{attrs:{status:t.loadmoreStatus,options:t.loadmoreOptionsSync,_i:17},on:{reload:t.reload},scopedSlots:t._u([{key:"loadmore-symbol",fn:function(e,i,n){return[t._t("loadmore-symbol",null,{_i:"19-"+n})]}},{key:"loadmore-loading",fn:function(e,i,n){return[t._t("loadmore-loading",null,{_i:"21-"+n})]}},{key:"loadmore-fail",fn:function(e,i,n){return[t._t("loadmore-fail",null,{_i:"23-"+n})]}},{key:"loadmore-end",fn:function(e,i,n){return[t._t("loadmore-end",null,{_i:"25-"+n})]}}],null,!0)})]:t._e()],2)])])},o=[]},"29b4":function(t,e,i){"use strict";i.r(e);var n=i("ea79"),o=i("b4d9");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"98d9b214",null,!1,n["a"],void 0);e["default"]=s.exports},"29de":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("0d31")),r={name:"PopularityList",components:{CommBookLeftRigth:o.default},props:{dataList:{type:Array,default:[]},isTitle:{type:String,default:""}},data:function(){return{}},methods:{toBooksReadingDetail:function(t){uni.navigateTo({url:"/pages/booksReadingDetail/booksReadingDetail?sid=".concat(t.id,"&t=").concat(t.title)})}}};e.default=r},"29e9":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={toolbar:{show:!0,cancelText:"\u53d6\u6d88",confirmText:"\u786e\u8ba4",cancelColor:"#909193",confirmColor:"#3c9cff",title:""}}},"2a96":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{length:{type:[String,Number],default:uni.$u.props.swiperIndicator.length},current:{type:[String,Number],default:uni.$u.props.swiperIndicator.current},indicatorActiveColor:{type:String,default:uni.$u.props.swiperIndicator.indicatorActiveColor},indicatorInactiveColor:{type:String,default:uni.$u.props.swiperIndicator.indicatorInactiveColor},indicatorMode:{type:String,default:uni.$u.props.swiperIndicator.indicatorMode}}};e.default=n},"2b56":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","memberRecommend_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","recommend_content_header"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","_header_title_all"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","_title_all_vip_image"),attrs:{_i:3}},[i("image",{staticClass:t._$s(4,"sc","is_image"),attrs:{_i:4}})]),i("view",{staticClass:t._$s(5,"sc","_title_all_name"),attrs:{_i:5}})]),i("view",{staticClass:t._$s(6,"sc","_header_tips"),attrs:{_i:6}})]),i("view",{staticClass:t._$s(7,"sc","recommend_content_body"),attrs:{_i:7}},[i("view",{staticClass:t._$s(8,"sc","_content_body_list"),attrs:{_i:8}},t._l(8,(function(e,n,o,r){return i("view",{key:e,staticClass:t._$s("9-"+r,"sc","_content_body_list_item"),attrs:{_i:"9-"+r}},[i("commBookItemThree",{attrs:{_i:"10-"+r}})],1)})),0)])])},o=[]},"2c64":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e,i){var n=i.config.validateStatus,o=i.statusCode;!o||n&&!n(o)?e(i):t(i)}},"2ce3":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={numberBox:{name:"",value:0,min:1,max:Number.MAX_SAFE_INTEGER,step:1,integer:!1,disabled:!1,disabledInput:!1,asyncChange:!1,inputWidth:35,showMinus:!0,showPlus:!0,decimalLength:null,longPress:!0,color:"#323233",buttonSize:30,bgColor:"#EBECEE",cursorSpacing:100,disableMinus:!1,disablePlus:!1,iconStyle:""}};e.default=n},"2ce5":function(t,e,i){"use strict";i.r(e);var n=i("6167"),o=i("1437");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"2ce7":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","_book_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","book_box"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","book_box_image"),attrs:{_i:2}},[i("image",{staticClass:t._$s(3,"sc","is_image"),attrs:{src:t._$s(3,"a-src",t.bookImage),_i:3}})]),i("view",{staticClass:t._$s(4,"sc","book_box_title"),attrs:{_i:4}},[t._v(t._$s(4,"t0-0",t._s(t.bookName)))]),i("view",{staticClass:t._$s(5,"sc","book_box_tips"),attrs:{_i:5}},[t._v(t._$s(5,"t0-0",t._s(t.bookTips)))])])])},o=[]},"2d12":function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("9523")),r=n(i("d429")),a=n(i("d30c")),s=n(i("bde4")),c=n(i("37d0")),l=n(i("aab3")),u=n(i("c808")),d=i("22a5");function f(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function p(t){for(var e=1;e0){var n=t.touches[0]||t.changedTouches[0];if(Math.abs(n.pageY-i.startY)>Math.abs(n.pageX-i.startX)&&Math.abs(n.pageY-i.startY)>20){var o=n.pageY,r=200/(200+Math.abs(o-i.startY));i.threshold=r*(o-i.startY),i.threshold>200&&(i.threshold=200),i.threshold<-200&&(i.threshold=-200),e.selectComponent(".yb-pulldown-scroller").setStyle({transform:"translateY("+i.threshold+"px)",transition:""}),e.selectComponent(".yb-list-pulldown").setStyle({transform:"translateY("+i.threshold+"px)",transition:""}),i.threshold>0?e.callMethod("pullingdown",i.threshold):e.callMethod("pullingup",Math.abs(i.threshold))}}},touchend:function(t,e){var i=e.getState();i.threshold>120&&i.enablePulldown?(e.selectComponent(".yb-pulldown-scroller").setStyle({transform:"translateY(120px)",transition:"transform .1s"}),e.selectComponent(".yb-list-pulldown").setStyle({transform:"translateY(120px)",transition:"transform .1s"}),e.callMethod("refresh")):(e.selectComponent(".yb-pulldown-scroller").setStyle({transform:"translateY(0)",transition:"transform .1s"}),e.selectComponent(".yb-list-pulldown").setStyle({transform:"translateY(0)",transition:"transform .1s"}))}},t.exports}({exports:{}})}},"37bf":function(t,e,i){"use strict";i.r(e);var n=i("da52"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"37d0":function(t,e,i){"use strict";i.r(e);var n=i("2233"),o=i("842d");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"7656ff31",null,!1,n["a"],void 0);e["default"]=s.exports},"390e":function(t,e,i){"use strict";var n=i("9523");function o(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}var r={trustTags:u("a,abbr,ad,audio,b,blockquote,br,code,col,colgroup,dd,del,dl,dt,div,em,fieldset,h1,h2,h3,h4,h5,h6,hr,i,img,ins,label,legend,li,ol,p,q,ruby,rt,source,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,title,ul,video"),blockTags:u("address,article,aside,body,caption,center,cite,footer,header,html,nav,pre,section"),ignoreTags:u("area,base,canvas,embed,frame,head,iframe,input,link,map,meta,param,rp,script,source,style,textarea,title,track,wbr"),voidTags:u("area,base,br,col,circle,ellipse,embed,frame,hr,img,input,line,link,meta,param,path,polygon,rect,source,track,use,wbr"),entities:{lt:"<",gt:">",quot:'"',apos:"'",ensp:"\u2002",emsp:"\u2003",nbsp:"\xa0",semi:";",ndash:"\u2013",mdash:"\u2014",middot:"\xb7",lsquo:"\u2018",rsquo:"\u2019",ldquo:"\u201c",rdquo:"\u201d",bull:"\u2022",hellip:"\u2026"},tagStyle:{address:"font-style:italic",big:"display:inline;font-size:1.2em",caption:"display:table-caption;text-align:center",center:"text-align:center",cite:"font-style:italic",dd:"margin-left:40px",mark:"background-color:yellow",pre:"font-family:monospace;white-space:pre",s:"text-decoration:line-through",small:"display:inline;font-size:0.8em",u:"text-decoration:underline"}},a=uni.getSystemInfoSync(),s=a.windowWidth,c=u(" ,\r,\n,\t,\f"),l=0;function u(t){for(var e=Object.create(null),i=t.split(","),n=i.length;n--;)e[i[n]]=!0;return e}function d(t,e){var i=t.indexOf("&");while(-1!=i){var n=t.indexOf(";",i+3),o=void 0;if(-1==n)break;"#"==t[i+1]?(o=parseInt(("x"==t[i+2]?"0":"")+t.substring(i+2,n)),isNaN(o)||(t=t.substr(0,i)+String.fromCharCode(o)+t.substr(n+1))):(o=t.substring(i+1,n),(r.entities[o]||"amp"==o&&e)&&(t=t.substr(0,i)+(r.entities[o]||"&")+t.substr(n+1))),i=t.indexOf("&",i+1)}return t}function f(t){this.options=t||{},this.tagStyle=Object.assign(r.tagStyle,this.options.tagStyle),this.imgList=t.imgList||[],this.plugins=t.plugins||[],this.attrs=Object.create(null),this.stack=[],this.nodes=[]}function p(t){this.handler=t}r.ignoreTags.iframe=void 0,r.trustTags.iframe=!0,r.ignoreTags.embed=void 0,r.trustTags.embed=!0,f.prototype.parse=function(t){for(var e=this.plugins.length;e--;)this.plugins[e].onUpdate&&(t=this.plugins[e].onUpdate(t,r)||t);new p(this).parse(t);while(this.stack.length)this.popNode();return this.nodes},f.prototype.expose=function(){for(var t=this.stack.length;t--;){var e=this.stack[t];if("a"==e.name||e.c)return;e.c=1}},f.prototype.hook=function(t){for(var e=this.plugins.length;e--;)if(this.plugins[e].onParse&&0==this.plugins[e].onParse(t,this))return!1;return!0},f.prototype.getUrl=function(t){var e=this.options.domain;return"/"==t[0]?"/"==t[1]?t="".concat(e?e.split("://")[0]:"http",":").concat(t):e&&(t=e+t):!e||t.includes("data:")||t.includes("://")||(t="".concat(e,"/").concat(t)),t},f.prototype.parseStyle=function(t){var e=t.attrs,i=(this.tagStyle[t.name]||"").split(";").concat((e.style||"").split(";")),n={},o="";e.id&&(this.options.useAnchor?this.expose():"img"!=t.name&&"a"!=t.name&&"video"!=t.name&&"audio"!=t.name&&(e.id=void 0)),e.width&&(n.width=parseFloat(e.width)+(e.width.includes("%")?"%":"px"),e.width=void 0),e.height&&(n.height=parseFloat(e.height)+(e.height.includes("%")?"%":"px"),e.height=void 0);for(var r=0,a=i.length;r0||d.includes("safe"))o+=";".concat(u,":").concat(d);else if(!n[u]||d.includes("import")||!n[u].includes("import")){if(d.includes("url")){var f=d.indexOf("(")+1;if(f){while('"'==d[f]||"'"==d[f]||c[d[f]])f++;d=d.substr(0,f)+this.getUrl(d.substr(f))}}else d.includes("rpx")&&(d=d.replace(/[0-9.]+\s*rpx/g,(function(t){return"".concat(parseFloat(t)*s/750,"px")})));n[u]=d}}}return t.attrs.style=o,n},f.prototype.onTagName=function(t){this.tagName=this.xml?t:t.toLowerCase(),"svg"==this.tagName&&(this.xml=!0)},f.prototype.onAttrName=function(t){t=this.xml?t:t.toLowerCase(),"data-"==t.substr(0,5)?"data-src"!=t||this.attrs.src?"img"==this.tagName||"a"==this.tagName?this.attrName=t:this.attrName=void 0:this.attrName="src":(this.attrName=t,this.attrs[t]="T")},f.prototype.onAttrVal=function(t){var e=this.attrName||"";"style"==e||"href"==e?this.attrs[e]=d(t,!0):e.includes("src")?this.attrs[e]=this.getUrl(d(t,!0)):e&&(this.attrs[e]=t)},f.prototype.onOpenTag=function(t){var e=Object.create(null);e.name=this.tagName,e.attrs=this.attrs,this.attrs=Object.create(null);var i=e.attrs,n=this.stack[this.stack.length-1],o=n?n.children:this.nodes,a=this.xml?t:r.voidTags[e.name];if("embed"==e.name&&this.expose(),"video"!=e.name&&"audio"!=e.name||("video"!=e.name||i.id||(i.id="v".concat(l++)),i.controls||i.autoplay||(i.controls="T"),e.src=[],i.src&&(e.src.push(i.src),i.src=void 0),this.expose()),a){if(!this.hook(e)||r.ignoreTags[e.name])return void("base"!=e.name||this.options.domain?"source"==e.name&&n&&("video"==n.name||"audio"==n.name)&&i.src&&n.src.push(i.src):this.options.domain=i.href);var c=this.parseStyle(e);if("img"==e.name){if(i.src&&(i.src.includes("webp")&&(e.webp="T"),i.src.includes("data:")&&!i["original-src"]&&(i.ignore="T"),!i.ignore||e.webp||i.src.includes("cloud://"))){for(var u=this.stack.length;u--;){var d=this.stack[u];if("a"==d.name){e.a=d.attrs;break}d.c=1}i.i=this.imgList.length.toString();var f=i["original-src"]||i.src;this.imgList.push(f),this.options.lazyLoad&&(i["data-src"]=i.src,i.src=void 0)}"inline"==c.display&&(c.display=""),i.ignore&&(c["max-width"]=c["max-width"]||"100%",i.style+=";-webkit-touch-callout:none"),parseInt(c.width)>s&&(c.height=void 0),c.width&&(c.width.includes("auto")?c.width="":(e.w="T",c.height&&!c.height.includes("auto")&&(e.h="T")))}else if("svg"==e.name)return o.push(e),this.stack.push(e),void this.popNode();for(var p in c)c[p]&&(i.style+=";".concat(p,":").concat(c[p].replace(" !important","")));i.style=i.style.substr(1)||void 0}else("pre"==e.name||(i.style||"").includes("white-space")&&i.style.includes("pre"))&&(this.pre=e.pre=!0),e.children=[],this.stack.push(e);o.push(e)},f.prototype.onCloseTag=function(t){var e;for(t=this.xml?t:t.toLowerCase(),e=this.stack.length;e--;)if(this.stack[e].name==t)break;if(-1!=e)while(this.stack.length>e)this.popNode();else if("p"==t||"br"==t){var i=this.stack.length?this.stack[this.stack.length-1].children:this.nodes;i.push({name:t,attrs:{}})}},f.prototype.popNode=function(){var t=this.stack.pop(),e=t.attrs,i=t.children,a=this.stack[this.stack.length-1],c=a?a.children:this.nodes;if(!this.hook(t)||r.ignoreTags[t.name])return"title"==t.name&&i.length&&"text"==i[0].type&&this.options.setTitle&&uni.setNavigationBarTitle({title:i[0].text}),void c.pop();if(t.pre){t.pre=this.pre=void 0;for(var l=this.stack.length;l--;)this.stack[l].pre&&(this.pre=!0)}var u={};if("svg"==t.name){var d="",f=e,p=f.style;return e.style="",e.xmlns="http://www.w3.org/2000/svg",function t(e){for(var i in d+="<".concat(e.name),e.attrs){var n=e.attrs[i];n&&("viewbox"==i&&(i="viewBox"),d+=" ".concat(i,'="').concat(n,'"'))}if(e.children){d+=">";for(var o=0;o")}else d+="/>"}(t),t.name="img",t.attrs={src:"data:image/svg+xml;utf8,".concat(d.replace(/#/g,"%23")),style:p,ignore:"T"},t.children=void 0,void(this.xml=!1)}if(e.align&&("table"==t.name?"center"==e.align?u["margin-inline-start"]=u["margin-inline-end"]="auto":u.float=e.align:u["text-align"]=e.align,e.align=void 0),"font"==t.name&&(e.color&&(u.color=e.color,e.color=void 0),e.face&&(u["font-family"]=e.face,e.face=void 0),e.size)){var h=parseInt(e.size);isNaN(h)||(h<1?h=1:h>7&&(h=7),u["font-size"]=["xx-small","x-small","small","medium","large","x-large","xx-large"][h-1]),e.size=void 0}if((e.class||"").includes("align-center")&&(u["text-align"]="center"),Object.assign(u,this.parseStyle(t)),parseInt(u.width)>s&&(u["max-width"]="100%",u["box-sizing"]="border-box"),r.blockTags[t.name]?t.name="div":r.trustTags[t.name]||this.xml||(t.name="span"),"a"==t.name||"ad"==t.name||"iframe"==t.name)this.expose();else if("video"==t.name){var _='",t.html=_}else if("ul"!=t.name&&"ol"!=t.name||!t.c){if("table"==t.name){var g=parseFloat(e.cellpadding),b=parseFloat(e.cellspacing),y=parseFloat(e.border);if(t.c&&(isNaN(g)&&(g=2),isNaN(b)&&(b=2)),y&&(e.style+=";border:".concat(y,"px solid gray")),t.flag&&t.c){u.display="grid",b?(u["grid-gap"]="".concat(b,"px"),u.padding="".concat(b,"px")):y&&(e.style+=";border-left:0;border-top:0");var x=[],w=[],$=[],C={};(function t(e){for(var i=0;i"==this.content[this.i]||e&&">"==this.content[this.i+1])&&(t&&this.handler[t](this.content.substring(this.start,this.i)),this.i+=e?2:1,this.start=this.i,this.handler.onOpenTag(e),"script"==this.handler.tagName?(this.i=this.content.indexOf("="a"&&t<="z"||t>="A"&&t<="Z")this.start!=this.i&&this.handler.onText(this.content.substring(this.start,this.i)),this.start=++this.i,this.state=this.tagName;else if("/"==t||"!"==t||"?"==t){this.start!=this.i&&this.handler.onText(this.content.substring(this.start,this.i));var e=this.content[this.i+2];if("/"==t&&(e>="a"&&e<="z"||e>="A"&&e<="Z"))return this.i+=2,this.start=this.i,this.state=this.endTag;var i="--\x3e";"!"==t&&"-"==this.content[this.i+2]&&"-"==this.content[this.i+3]||(i=">"),this.i=this.content.indexOf(i,this.i),-1!=this.i&&(this.i+=i.length,this.start=this.i)}else this.i++}else this.start"==t||"/"==t){if(this.handler.onCloseTag(this.content.substring(this.start,this.i)),">"!=t&&(this.i=this.content.indexOf(">",this.i),-1==this.i))return;this.start=++this.i,this.state=this.text}else this.i++},t.exports=f},"393f":function(t,e,i){"use strict";i.r(e);var n=i("155b"),o=i("6103");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"66679f78",null,!1,n["a"],void 0);e["default"]=s.exports},"39ff":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}},"3a1e":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={name:"commNavBar",props:{navBarList:{type:Array,default:[]},navBarActive:{type:String,default:""}},data:function(){return{}},methods:{navBarClick:function(t){this.$emit("navBarClick",t)},toBooksSearchList:function(){uni.navigateTo({url:"/pages/booksSearchList/booksSearchList"})}}};e.default=n},"3b3b":function(t,e,i){"use strict";i.r(e);var n=i("20e0"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"3b95":function(t,e,i){"use strict";i.r(e);var n=i("ea39"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"3c21":function(t,e,i){"use strict";i.r(e);var n=i("40b1"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"3c2a":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("a34a")),r=n(i("c973")),a=n(i("b1c3")),s={name:"u-grid-item",mixins:[uni.$u.mpMixin,uni.$u.mixin,a.default],data:function(){return{parentData:{col:3,border:!0},classes:[]}},mounted:function(){this.init()},computed:{width:function(){return 100/Number(this.parentData.col)+"%"},itemStyle:function(){var t={background:this.bgColor,width:this.width};return uni.$u.deepMerge(t,uni.$u.addStyle(this.customStyle))}},methods:{init:function(){var t=this;uni.$on("$uGridItem",(function(){t.gridItemClasses()})),this.updateParentData(),uni.$emit("$uGridItem"),this.gridItemClasses()},updateParentData:function(){this.getParentData("u-grid")},clickHandler:function(){var t,e=this,i=this.name,n=null===(t=this.parent)||void 0===t?void 0:t.children;n&&null===this.name&&(i=n.findIndex((function(t){return t===e}))),this.parent&&this.parent.childClick(i),this.$emit("click",i)},getItemWidth:function(){var t=this;return(0,r.default)(o.default.mark((function e(){var i,n;return o.default.wrap((function(e){while(1)switch(e.prev=e.next){case 0:if(i=0,!t.parent){e.next=6;break}return e.next=4,t.getParentWidth();case 4:n=e.sent,i=n/Number(t.parentData.col)+"px";case 6:t.width=i;case 7:case"end":return e.stop()}}),e)})))()},getParentWidth:function(){},gridItemClasses:function(){var t=this;if(this.parentData.border){var e=[];this.parent.children.map((function(i,n){if(t===i){var o=t.parent.children.length;(n+1)%t.parentData.col!==0&&n+1!==o&&e.push("u-border-right");var r=o%t.parentData.col===0?t.parentData.col:o%t.parentData.col;n=200&&t<300}}},4716:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={name:"UniStatusBar",data:function(){return{statusBarHeight:uni.getSystemInfoSync().statusBarHeight+"px"}}};e.default=n},4742:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uOverlay:i("dec4").default,uTransition:i("46a5").default,uStatusBar:i("d02e").default,uIcon:i("7b88").default,uSafeBottom:i("d052").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","u-popup"),attrs:{_i:0}},[t._$s(1,"i",t.overlay)?i("u-overlay",{attrs:{show:t.show,duration:t.overlayDuration,customStyle:t.overlayStyle,opacity:t.overlayOpacity,_i:1},on:{click:t.overlayClick}}):t._e(),i("u-transition",{attrs:{show:t.show,customStyle:t.transitionStyle,mode:t.position,duration:t.duration,_i:2},on:{afterEnter:t.afterEnter,click:t.clickHandler}},[i("view",{staticClass:t._$s(3,"sc","u-popup__content"),style:t._$s(3,"s",[t.contentStyle]),attrs:{_i:3},on:{click:function(e){return e.stopPropagation(),t.noop(e)}}},[t._$s(4,"i",t.safeAreaInsetTop)?i("u-status-bar",{attrs:{_i:4}}):t._e(),t._t("default",null,{_i:5}),t._$s(6,"i",t.closeable)?i("view",{staticClass:t._$s(6,"sc","u-popup__content__close"),class:t._$s(6,"c",["u-popup__content__close--"+t.closeIconPos]),attrs:{_i:6},on:{click:function(e){return e.stopPropagation(),t.close(e)}}},[i("u-icon",{attrs:{name:"close",color:"#909399",size:"18",bold:!0,_i:7}})],1):t._e(),t._$s(8,"i",t.safeAreaInsetBottom)?i("u-safe-bottom",{attrs:{_i:8}}):t._e()],2)])],1)},r=[]},"475f":function(t,e,i){"use strict";i.r(e);var n=i("788a"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"47fc":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","u-checkbox-group"),class:this._$s(0,"c",this.bemClass),attrs:{_i:0}},[this._t("default",null,{_i:1})],2)},o=[]},"480f":function(t,e,i){var n=i("c135"),o=i("11b0"),r=i("6613"),a=i("c240");t.exports=function(t){return n(t)||o(t)||r(t)||a()},t.exports.__esModule=!0,t.exports["default"]=t.exports},"48d6":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("7037"));function r(t){return/^[\+-]?(\d+\.?\d*|\.\d+|\d\.\d+e\+\d+)$/.test(t)}function a(t){switch((0,o.default)(t)){case"undefined":return!0;case"string":if(0==t.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!t)return!0;break;case"number":if(0===t||isNaN(t))return!0;break;case"object":if(null===t||0===t.length)return!0;for(var e in t)return!1;return!0}return!1}function s(t){return"[object Object]"===Object.prototype.toString.call(t)}function c(t){return"function"===typeof t}var l={email:function(t){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(t)},mobile:function(t){return/^1([3589]\d|4[5-9]|6[1-2,4-7]|7[0-8])\d{8}$/.test(t)},url:function(t){return/^((https|http|ftp|rtsp|mms):\/\/)(([0-9a-zA-Z_!~*'().&=+$%-]+: )?[0-9a-zA-Z_!~*'().&=+$%-]+@)?(([0-9]{1,3}.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(:[0-9]{1,4})?((\/?)|(\/[0-9a-zA-Z_!~*'().;?:@&=+$,%#-]+)+\/?)$/.test(t)},date:function(t){return!!t&&(r(t)&&(t=+t),!/Invalid|NaN/.test(new Date(t).toString()))},dateISO:function(t){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(t)},number:r,digits:function(t){return/^\d+$/.test(t)},idCard:function(t){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(t)},carNo:function(t){return 7===t.length?/^[\u4eac\u6d25\u6caa\u6e1d\u5180\u8c6b\u4e91\u8fbd\u9ed1\u6e58\u7696\u9c81\u65b0\u82cf\u6d59\u8d63\u9102\u6842\u7518\u664b\u8499\u9655\u5409\u95fd\u8d35\u7ca4\u9752\u85cf\u5ddd\u5b81\u743c\u4f7f\u9886A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9\u6302\u5b66\u8b66\u6e2f\u6fb3]{1}$/.test(t):8===t.length&&/^[\u4eac\u6d25\u6caa\u6e1d\u5180\u8c6b\u4e91\u8fbd\u9ed1\u6e58\u7696\u9c81\u65b0\u82cf\u6d59\u8d63\u9102\u6842\u7518\u664b\u8499\u9655\u5409\u95fd\u8d35\u7ca4\u9752\u85cf\u5ddd\u5b81\u743c\u4f7f\u9886A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/.test(t)},amount:function(t){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(t)},chinese:function(t){return/^[\u4e00-\u9fa5]+$/gi.test(t)},letter:function(t){return/^[a-zA-Z]*$/.test(t)},enOrNum:function(t){return/^[0-9a-zA-Z]*$/g.test(t)},contains:function(t,e){return t.indexOf(e)>=0},range:function(t,e){return t>=e[0]&&t<=e[1]},rangeLength:function(t,e){return t.length>=e[0]&&t.length<=e[1]},empty:a,isEmpty:a,jsonString:function(t){if("string"===typeof t)try{var e=JSON.parse(t);return!("object"!==(0,o.default)(e)||!e)}catch(i){return!1}return!1},landline:function(t){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(t)},object:s,array:function(t){return"function"===typeof Array.isArray?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},code:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6;return new RegExp("^\\d{".concat(e,"}$")).test(t)},func:c,promise:function(t){return s(t)&&c(t.then)&&c(t.catch)},video:function(t){return/\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8)/i.test(t)},image:function(t){var e=t.split("?")[0];return/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i.test(e)},regExp:function(t){return t&&"[object RegExp]"===Object.prototype.toString.call(t)},string:function(t){return"string"===typeof t}};e.default=l},4978:function(t,e){t.exports="/static/images/novelReading/step_up_f3efe.png"},"4afe":function(t,e,i){"use strict";i.r(e);var n=i("868b"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"4b0e":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={picker:{show:!1,showToolbar:!0,title:"",columns:function(){return[]},loading:!1,itemHeight:44,cancelText:"\u53d6\u6d88",confirmText:"\u786e\u5b9a",cancelColor:"#909193",confirmColor:"#3c9cff",visibleItemCount:5,keyName:"text",closeOnClickOverlay:!1,defaultIndex:function(){return[]},immediateChange:!1}}},"4b93":function(t,e,i){"use strict";i.r(e);var n=i("bad9"),o=i("d048");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"df234be4",null,!1,n["a"],void 0);e["default"]=s.exports},"4b93c":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={text:{type:"",show:!0,text:"",prefixIcon:"",suffixIcon:"",mode:"",href:"",format:"",call:!1,openType:"",bold:!1,block:!1,lines:"",color:"#303133",size:15,iconStyle:function(){return{fontSize:"15px"}},decoration:"none",margin:0,lineHeight:"",align:"left",wordWrap:"normal"}}},"4c4f":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={subsection:{list:[],current:0,activeColor:"#3c9cff",inactiveColor:"#303133",mode:"button",fontSize:12,bold:!0,bgColor:"#eeeeef",keyName:"name"}}},"4d0d":function(t,e,i){"use strict";i.r(e);var n=i("09ec"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"4d2d":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("1817")),r={props:{name:{type:String,default:""},size:{type:[Number,String],default:27},color:{type:String,default:""},weight:{type:String,default:"none"}},computed:{Util:function(){return o.default}},data:function(){return{icons:{"arrow-up":"\ue633","arrow-down":"\ue632","angle-arrow-up":"\ue626","angle-arrow-down":"\ue624","angle-arrow-left":"\ue622","angle-arrow-right":"\ue625","check-circle-no":"\ue623","check-circle":"\ue6d3","check-circle-fill":"\ue60f","check-rect-no":"\ue63e","check-rect":"\ue63d","check-rect-fill":"\ue61d",dec:"\ueaf5",dustbin:"\ue63f","dustbin-fill":"\ue603",exclaim:"\ue692","exclaim-circle":"\ue674","exclaim-circle-fill":"\ue62a","empty-wallet":"\ue771","empty-recharge":"\ue766","empty-coupon":"\ue768","empty-profit":"\ue769","empty-withdraw":"\ue76b","empty-notice":"\ue76c","empty-message":"\ue76d","empty-order":"\ue76e","empty-bankcard":"\ue76f","eye-on":"\ue78f","eye-on-fill":"\ue869","eye-off":"\ue8ff","eye-close":"\ue6ad",file:"\ueabe","file-fill":"\ueac4","folder-open-fill":"\ue634",fork:"\ue621","fork-circle":"\ue8b8","fork-circle-fill":"\ue8c5",home:"\ue689","home-fill":"\ueda8",hook:"\ue62b","hook-bend":"\ue7f8","hook-circle":"\ue8ad","hook-circle-fill":"\ue8c3",inc:"\ueaf3","info-circle":"\ue618","info-circle-fill":"\ue67d","more-horizontal":"\ue652","more-vertical":"\ue6d9",trumpet:"\ue7b4","trumpet-fill":"\ue604"}}},beforeCreate:function(){}};e.default=r},"4e38":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={v:"2.0.36",version:"2.0.36",type:["primary","success","info","error","warning"],color:{"u-primary":"#2979ff","u-warning":"#ff9900","u-success":"#19be6b","u-error":"#fa3534","u-info":"#909399","u-main-color":"#303133","u-content-color":"#606266","u-tips-color":"#909399","u-light-color":"#c0c4cc"},unit:"px"};e.default=n},"4e3e":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","PopularityList_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","PopularityList_header"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","PopularityList_header_title"),attrs:{_i:2}},[t._v(t._$s(2,"t0-0",t._s(t.isTitle)))])]),i("view",{staticClass:t._$s(3,"sc","PopularityList_body"),attrs:{_i:3}},t._l(t._$s(4,"f",{forItems:t.dataList}),(function(e,n,o,r){return i("view",{key:t._$s(4,"f",{forIndex:o,key:e.id}),staticClass:t._$s("4-"+r,"sc","PopularityList_body_item"),attrs:{_i:"4-"+r},on:{click:function(i){return t.toBooksReadingDetail(e)}}},[i("CommBookLeftRigth",{attrs:{bookTips:e.category_name,bookName:e.title,bookImage:e.cover,bookIntroduction:e.intro,_i:"5-"+r}})],1)})),0)])},o=[]},"4e42":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("92c7")),r={name:"u-loading-icon",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{array12:Array.from({length:12}),aniAngel:360,webviewHide:!1,loading:!1}},computed:{otherBorderColor:function(){var t=uni.$u.colorGradient(this.color,"#ffffff",100)[80];return"circle"===this.mode?this.inactiveColor?this.inactiveColor:t:"transparent"}},watch:{show:function(t){}},mounted:function(){this.init()},methods:{init:function(){var t=this;setTimeout((function(){t.show&&t.addEventListenerToWebview()}),20)},addEventListenerToWebview:function(){var t=this,e=getCurrentPages(),i=e[e.length-1],n=i.$getAppWebview();n.addEventListener("hide",(function(){t.webviewHide=!0})),n.addEventListener("show",(function(){t.webviewHide=!1}))}}};e.default=r},"4e98":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{title:{type:[String,Number],default:uni.$u.props.cell.title},label:{type:[String,Number],default:uni.$u.props.cell.label},value:{type:[String,Number],default:uni.$u.props.cell.value},icon:{type:String,default:uni.$u.props.cell.icon},disabled:{type:Boolean,default:uni.$u.props.cell.disabled},border:{type:Boolean,default:uni.$u.props.cell.border},center:{type:Boolean,default:uni.$u.props.cell.center},url:{type:String,default:uni.$u.props.cell.url},linkType:{type:String,default:uni.$u.props.cell.linkType},clickable:{type:Boolean,default:uni.$u.props.cell.clickable},isLink:{type:Boolean,default:uni.$u.props.cell.isLink},required:{type:Boolean,default:uni.$u.props.cell.required},rightIcon:{type:String,default:uni.$u.props.cell.rightIcon},arrowDirection:{type:String,default:uni.$u.props.cell.arrowDirection},iconStyle:{type:[Object,String],default:function(){return uni.$u.props.cell.iconStyle}},rightIconStyle:{type:[Object,String],default:function(){return uni.$u.props.cell.rightIconStyle}},titleStyle:{type:[Object,String],default:function(){return uni.$u.props.cell.titleStyle}},size:{type:String,default:uni.$u.props.cell.size},stop:{type:Boolean,default:uni.$u.props.cell.stop},name:{type:[Number,String],default:uni.$u.props.cell.name}}};e.default=n},"4ea4":function(t,e){t.exports=function(t){return t&&t.__esModule?t:{default:t}},t.exports.__esModule=!0,t.exports["default"]=t.exports},"4eec":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","uni-status-bar"),style:this._$s(0,"s",{height:this.statusBarHeight}),attrs:{_i:0}},[this._t("default",null,{_i:1})],2)},o=[]},"4efb":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("4e98")),r={name:"u-cell",data:function(){return{}},mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],computed:{titleTextStyle:function(){return uni.$u.addStyle(this.titleStyle)}},methods:{clickHandler:function(t){this.disabled||(this.$emit("click",{name:this.name}),this.openPage(),this.stop&&this.preventEvent(t))}}};e.default=r},"4f1e":function(t,e,i){"use strict";i.r(e);var n=i("d9bd"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"501e":function(t,e,i){"use strict";i.r(e);var n=i("b137"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"50df":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{bgColor:{type:String,default:uni.$u.props.statusBar.bgColor}}};e.default=n},"514f":function(t,e,i){"use strict";i.r(e);var n=i("cd90"),o=i("15a2");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"47ca9a7f",null,!1,n["a"],void 0);e["default"]=s.exports},"51a8":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("c118")),r=n(i("820a")),a={name:"u--text",mixins:[uni.$u.mpMixin,r.default,uni.$u.mixin],components:{uvText:o.default}};e.default=a},"51a9":function(t,e){t.exports="/static/images/novelReading/step_up_ccd9e2.png"},"521c":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("0c0c")),r={name:"u-toolbar",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],methods:{cancel:function(){this.$emit("cancel")},confirm:function(){this.$emit("confirm")}}};e.default=r},5271:function(t,e,i){"use strict";i.r(e);var n=i("e643"),o=i("e927");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"52b0":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","rankingList_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","rankingList_header"),attrs:{_i:1}},[i("scroll-view",{staticClass:t._$s(2,"sc","_header_list_scroll"),attrs:{_i:2}},t._l(t._$s(3,"f",{forItems:t.headerList}),(function(e,n,o,r){return i("view",{key:t._$s(3,"f",{forIndex:o,key:e.id}),staticClass:t._$s("3-"+r,"sc","_header_list"),attrs:{"data-id":t._$s("3-"+r,"a-data-id",e.id),_i:"3-"+r},on:{click:t.handelRankingList}},[i("view",{class:t._$s("4-"+r,"c",["_header_list_item",t.headerListActive==e.id?"active":""]),attrs:{_i:"4-"+r}},[t._v(t._$s("4-"+r,"t0-0",t._s(e.name)))])])})),0)]),i("view",{staticClass:t._$s(5,"sc","rankingList_body"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","rankingList_body_box"),attrs:{_i:6}},[i("view",{staticClass:t._$s(7,"sc","_body_box_book_list"),attrs:{_i:7}},t._l(t._$s(8,"f",{forItems:t.dataList}),(function(e,n,o,r){return i("view",{key:t._$s(8,"f",{forIndex:o,key:e.id}),staticClass:t._$s("8-"+r,"sc","_book_list_item"),attrs:{_i:"8-"+r},on:{click:function(i){return t.toBooksReadingDetail(e)}}},[i("view",{staticClass:t._$s("9-"+r,"sc","_book_list_item_left"),attrs:{_i:"9-"+r}},[i("image",{staticClass:t._$s("10-"+r,"sc","is_image"),attrs:{src:t._$s("10-"+r,"a-src",e.cover),_i:"10-"+r}}),i("view",{staticClass:t._$s("11-"+r,"sc","_book_list_item_ranking_icon"),attrs:{_i:"11-"+r}},[i("image",{staticClass:t._$s("12-"+r,"sc","is_image"),attrs:{src:t._$s("12-"+r,"a-src",t.rankingIconList[n]),_i:"12-"+r}})])]),i("view",{staticClass:t._$s("13-"+r,"sc","_book_list_item_right"),attrs:{_i:"13-"+r}},[i("view",{staticClass:t._$s("14-"+r,"sc","_book_list_item_title"),attrs:{_i:"14-"+r}},[t._v(t._$s("14-"+r,"t0-0",t._s(e.title)))]),i("view",{staticClass:t._$s("15-"+r,"sc","_book_list_item_tips"),attrs:{_i:"15-"+r}},[t._v(t._$s("15-"+r,"t0-0",t._s(e.category_name)))])])])})),0)])]),i("view",{staticClass:t._$s(16,"sc","rankingList_more"),attrs:{_i:16}},[i("view",{staticClass:t._$s(17,"sc","rankingList_more_btn"),attrs:{_i:17},on:{click:t.toBooksTheCharts}})])])},o=[]},5417:function(t,e,i){"use strict";i.r(e);var n=i("7fa0"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"55a1":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={image:{src:"",mode:"aspectFill",width:"300",height:"225",shape:"square",radius:0,lazyLoad:!0,showMenuByLongpress:!0,loadingIcon:"photo",errorIcon:"error-circle",showLoading:!0,showError:!0,fade:!0,webp:!1,duration:500,bgColor:"#f3f4f6"}}},"55fd":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={modal:{show:!1,title:"",content:"",confirmText:"\u786e\u8ba4",cancelText:"\u53d6\u6d88",showConfirmButton:!0,showCancelButton:!1,confirmColor:"#2979ff",cancelColor:"#606266",buttonReverse:!1,zoom:!0,asyncClose:!1,closeOnClickOverlay:!1,negativeTop:0,width:"650rpx",confirmButtonShape:""}}},"573a":function(t,e,i){"use strict";i.r(e);var n=i("2d99"),o=i("3b3b");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"402b5869",null,!1,n["a"],void 0);e["default"]=s.exports},"57e9":function(t,e){t.exports="/static/images/novelReading/directory_f3efe9.png"},"58a6":function(t,e,i){"use strict";e["a"]=function(t){(t.options.wxs||(t.options.wxs={}))["handler"]=function(t){var e={abbr:!0,b:!0,big:!0,code:!0,del:!0,em:!0,i:!0,ins:!0,label:!0,q:!0,small:!0,span:!0,strong:!0,sub:!0,sup:!0};return t.exports={use:function(t){return!e[t.name]&&-1==(t.attrs.style||"").indexOf("display:inline")&&!t.c}},t.exports}({exports:{}})}},"58b9":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{col:{type:[String,Number],default:uni.$u.props.grid.col},border:{type:Boolean,default:uni.$u.props.grid.border},align:{type:String,default:uni.$u.props.grid.align}}};e.default=n},"58d0":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={listItem:{anchor:""}}},"5a06":function(t,e,i){"use strict";i.r(e);var n=i("6f26"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"5a43":function(t,e){t.exports=function(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,n=new Array(e);i0?parseInt(this.slide):0,topGap:this.topGap>0?parseInt(this.topGap):0,bottomGap:this.bottomGap>0?parseInt(this.bottomGap):0,fontSize:this.fontSize>=12?parseInt(this.fontSize):12,lineHeight:this.lineHeight>=5?parseInt(this.lineHeight):5}}},beforeDestroy:function(){this.clearRefreshTimer(),this.stopAutoplay()},mounted:function(){this.$nextTick((function(){var t=this;setTimeout((function(){_.default.getRect(".yingbing-read-page",t.$refs.yingbingReadPage,t).then((function(e){t.windowWidth=e.width,t.windowHeight=e.height}))}),20)})),this.initFont()},methods:{touchstart:function(t){var e=this;if(this.stopAutoplay(),this.enableClick&&!this.isClickToTouch){this.resetTouch(),this.touchInter=setTimeout((function(){e.touchTime=300}),300);var i=t.touches[0];this.touchstartX=i.pageX,this.touchstartY=i.pageY}},touchmove:function(t){if(this.enableClick&&!this.isClickToTouch){var e=t.touches[0];this.touchmoveX=e.pageX,this.touchmoveY=e.pageY}},touchend:function(t){var e=this;if(this.startAutoplay(),this.touchInter&&(clearTimeout(this.touchInter),this.touchInter=null),this.enableClick&&!this.isClickToTouch){if(this.isClickToTouch=!0,this.touchTime<300&&(Math.abs(this.touchmoveX-this.touchmoveX)<=50||Math.abs(this.touchmoveY-this.touchmoveY)<=50)){var i=0,n=0;if("auto"==this.clickOption.left)i=this.windowWidth/2-this.clickOption.width/2;else{if("number"!=typeof this.clickOption.left)return;i=this.clickOption.left}if("auto"==this.clickOption.top)n=this.windowHeight/2-this.clickOption.height/2;else{if("number"!=typeof this.clickOption.top)return;n=this.clickOption.top}var o=i+this.clickOption.width,r=n+this.clickOption.height;this.touchstartX>=i&&this.touchstartX<=o&&this.touchstartY>=n&&this.touchstartY<=r&&this.$emit("clickTo")}setTimeout((function(){e.isClickToTouch=!1}),50)}},resetTouch:function(){this.touchstartX=0,this.touchstartY=0,this.touchmoveX=0,this.touchmoveY=0,this.touchTime=0},customClick:function(t){this.$emit.apply(this,[t.name].concat((0,a.default)(t.args)))},setCatalog:function(t){this.$emit("setCatalog",t)},init:function(t){var e=this;return(0,r.default)(o.default.mark((function i(){return o.default.wrap((function(i){while(1)switch(i.prev=i.next){case 0:return e.clearRefreshTimer(),i.next=3,e.getComputedTextSize();case 3:e.noChapter?e.computedNochapter(t):(e.contents=t.contents,e.initLoading=!0,e.resetPage({start:parseInt(t.start||0),currentChapter:parseInt(t.currentChapter>=0?t.currentChapter:1)}));case 4:case"end":return i.stop()}}),i)})))()},refresh:function(){var t=this;this.stopAutoplay(),this.clearRefreshTimer(),this.isRefreshing?this.refreshTimer=setTimeout((function(){t.refresh()}),100):(this.isRefreshing=!0,this.resetPage({start:this.pageInfo.start,currentChapter:this.pageInfo.chapter}))},_emitPageInfo:function(t,e){this.isRefreshing=!1,this.$emit("change",t,e)},_reload:function(){var t=this;this.initLoading=!0,this.loadchapter>-1&&this.$emit("loadmore",parseInt(this.loadchapter),(function(e,i){if(t.initLoading=!1,"success"==e){t._resetReload();var n=t.contents.findIndex((function(t){return t.chapter==i.chapter}));n>-1?t.contents[n]=i:t.contents.push(i),t.resetPage({start:t.loadstart||0,currentChapter:t.loadchapter})}else t.loadstatus=e}))},_resetReload:function(){this.loadstatus="",this.loadchapter=-1,this.loadstart=-1},change:function(t){var e=this;this.stopAutoplay(),this.clearRefreshTimer(),this._resetReload(),t.contents&&t.contents.length>0&&t.contents.forEach((function(t){var i=e.contents.findIndex((function(e){return e.chapter==t.chapter}));i>-1?e.contents[i]=t:e.contents.push(t)}));var i=this.contents.findIndex((function(e){return e.chapter==t.currentChapter}));i>-1?(this.initLoading=!0,this.resetPage({start:parseInt(t.start||0),currentChapter:parseInt(t.currentChapter||1)})):this.noChapter?uni.showToast({title:"\u672a\u627e\u5230\u8be5\u7ae0\u8282",icon:"none"}):(this.initLoading=!0,this.$emit("loadmore",parseInt(t.currentChapter),(function(i,n){if(e.initLoading=!1,"success"==i){var o=e.contents.findIndex((function(t){return t.chapter==n.chapter}));o>-1?e.contents[o]=n:e.contents.push(n),e.resetPage({start:parseInt(t.start||0),currentChapter:parseInt(t.currentChapter||1)})}else e.loadstatus=i,e.loadstart=parseInt(t.start||0),e.loadchapter=parseInt(t.currentChapter||1)})))},pagePrev:function(){this.stopAutoplay(),"scroll"!=this.options.pageType?this.pagePrevFlip():this.scrollPrev()},pageNext:function(){this.stopAutoplay(),"scroll"!=this.options.pageType?this.pageNextFlip():this.scrollNext()},startAutoplay:function(){var t=this;this.autoplay&&this.pages.length>0&&this.pages.findIndex((function(e){return e.dataId==t.currentDataId}))1&&void 0!==arguments[1]?arguments[1]:[];t.custom&&t.custom.length>0&&(e.length>0&&(e[e.length-1].isLastPage=!1),t.custom.forEach((function(i){var n="";if(i.indexOf("slot:")>-1)n="slot",i=i.split(":")[1];else{n="custom";var o=i.match(/onclick=\"*([\s\S]*?)\"/gi);o&&o.forEach((function(t){var e=t.match(/onclick=\"*([\s\S]*?)(\(|\")/)[1],n=t.match(/onclick=\"*([\s\S]*?)\"/),o=n[1].replace(e,"");o=o?o.slice(1,o.length-1).replace(/\s/g,""):"",i=i.replace(n[0],"onclick=\"triggerCustomClick('".concat(e,"', [").concat(o,'])"'))}))}var r=e.length>0?e[e.length-1].end:0;e.push({chapter:t.chapter,title:t.title||"",type:n,dataId:1e5*t.chapter+r,start:r,end:r+10,isLastPage:!1,text:i})})),e[e.length-1].isLastPage=!0),this.computedResolve(e),this.computedResolve=null},measureText:function(t){var e=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;t=new String(t),t=t.split("");var n=0;return t.forEach((function(t){/[a-z]/.test(t)?n+=e.measureSize.lower||e.lowerSize||7:/[A-Z]/.test(t)?n+=e.measureSize.upper||e.upperSize||7:/[0-9]/.test(t)?n+=e.measureSize.number||e.numberSize||5.5:/[\u4e00-\u9fa5]/.test(t)?n+=e.measureSize.chinese||e.chineseSize||10:/\s/.test(t)?n+=e.measureSize.space||e.spaceSize||3.5:/[`!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?~]/.test(t)?n+=e.measureSize.special||e.specialSize||8:n+=e.measureSize.other||e.chineseSize||10})),n*i/10},getComputedTextSize:function(t,e){var i=this,n=[];n.push(a.default.getRect(".computed-text-chinese",this.$refs.computedTextChinese,this)),n.push(a.default.getRect(".computed-text-space",this.$refs.computedTextSpace,this)),n.push(a.default.getRect(".computed-text-lower",this.$refs.computedTextLower,this)),n.push(a.default.getRect(".computed-text-upper",this.$refs.computedTextUpper,this)),n.push(a.default.getRect(".computed-text-number",this.$refs.computedTextNumber,this)),n.push(a.default.getRect(".computed-text-special",this.$refs.computedTextSpecial,this)),Promise.all(n).then((function(t){t.forEach((function(t,e){0==e&&(i.chineseSize=.5*t.width),1==e&&(i.spaceSize=.5*t.width),2==e&&(i.lowerSize=.5*t.width),3==e&&(i.upperSize=.5*t.width),4==e&&(i.numberSize=.5*t.width),5==e&&(i.specialSize=.5*t.width)}))}))},computedText:function(t,e){var i=this;return(0,r.default)(o.default.mark((function n(){var r,a,s,c,l,u,d,f,p,h,_,v,m;return o.default.wrap((function(n){while(1)switch(n.prev=n.next){case 0:return n.next=2,i.getRect();case 2:r=n.sent,a=r.width-2*i.options.slide,s=r.height-i.options.topGap-i.options.bottomGap,i.options.headerShow&&(s-=uni.upx2px(50)),i.options.footerShow&&(s-=uni.upx2px(50)),c=i.options.fontSize+i.options.lineHeight,l=[],u={title:t.title||"",chapter:t.chapter,type:"text",dataId:1e5*t.chapter+e,start:e,end:0,isLastPage:!1,text:[]},d=0,f=t.content.substr(e).replace(/\t/g," ").replace(/\u3000/g," "),p=0;case 13:if(!(c+i.options.fontSize+i.options.lineHeight<=s)){n.next=49;break}l.push(""),h=0,_="",v=p;case 18:if(!(v=a)){n.next=25;break}return p=v-_.length+1,n.abrupt("break",43);case 25:return l[l.length-1]+=_,d+=_.length+1,u.end=u.start+d,p=v+1,n.abrupt("break",43);case 30:if(_+=m,i.split&&m!=i.split){n.next=40;break}if(h+=i.measureText(_,i.options.fontSize),!(h>=a)){n.next=36;break}return p=v-_.length+1,n.abrupt("break",43);case 36:l[l.length-1]+=_,d+=_.length,u.end=u.start+d,_="";case 40:v++,n.next=18;break;case 43:if(c+=i.options.fontSize+i.options.lineHeight,!(u.end>=t.content.length-1)){n.next=47;break}return u.isLastPage=!0,n.abrupt("break",49);case 47:n.next=13;break;case 49:return u.text=l,n.abrupt("return",u);case 51:case"end":return n.stop()}}),n)})))()},getRect:function(){var t=this;return new Promise((function(e){var i=uni.createSelectorQuery().in(t);i.select(".yingbing-read-page").boundingClientRect((function(t){e(t)})).exec()}))},getPages:function(t){var e=this,i=[];(function n(){var o=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;e.computedText(t,o).then((function(o){i.push(o),o.isLastPage?e.reset(t,i):n(o.end)}))})()},computedChapter:function(t){var e=this;return new Promise((function(i){e.computedResolve=i,t.content?e.getPages(t):e.reset(t)}))},resetPage:function(t){var e=this;setTimeout((function(){var i=t.currentChapter||e.contents[0].chapter,n=e.contents.findIndex((function(t){return t.chapter==i})),o=-1,r=-1,s=[];e.contents[n].isStart||(o=e.contents.findIndex((function(t){return t.chapter==i-1}))),e.contents[n].isEnd||(r=e.contents.findIndex((function(t){return t.chapter==i+1}))),o>-1&&s.push(e.contents[o]),s.push(e.contents[n]),r>-1&&s.push(e.contents[r]);var c=[];(function n(o){var r=s[o];e.computedChapter(r).then((function(l){if(i==r.chapter){var u=Object.keys(l).findIndex((function(e){return t.start>=l[e].start&&t.start-1?u:0].dataId}c=c.concat(l),o==s.length-1?("scroll"!=e.options.pageType&&(e.firstTipUnable?s[0].isStart||c.unshift({title:s[0].title||"",chapter:s[0].chapter,type:"loading",direction:"prev",dataId:c[0].dataId-1,start:0,end:0}):c.unshift({title:s[0].title||"",chapter:s[0].chapter,type:s[0].isStart?"top":"loading",direction:"prev",dataId:c[0].dataId-1,start:0,end:0}),e.lastTipUnable?s[0].isEnd||c.push({title:r.title||"",chapter:r.chapter,type:"loading",direction:"next",dataId:c[c.length-1].dataId+1,start:0,end:0}):c.push({title:r.title||"",chapter:r.chapter,type:r.isEnd?"bottom":"loading",direction:"next",dataId:c[c.length-1].dataId+1,start:0,end:0})),e.pages=c,"scroll"==e.options.pageType&&e.$refs.list.scrollTo(0),e.$nextTick((function(){"scroll"!=e.options.pageType?(e.$refs.flip.refresh(),e.handleFlipChange(e.currentDataId)):setTimeout((function(){a.default.getRect("#scroll-item_"+e.currentDataId,a.default.getRefs(e,"scrollItem_"+e.currentDataId,0),e).then((function(t){e.$refs.list.scrollTo(t.top)}))}),50),e.initLoading=!1,e.preload(i)}))):setTimeout((function(){n(o+1)}),100)}))})(0)}),50)},computedPage:function(t){var e=this;this.computedChapter(t.content).then((function(i){var n="prev"==t.type?i.concat(e.pages):e.pages.concat(i),o=n.filter((function(t){return"text"==t.type||"custom"==t.type||"slot"==t.type}));if("scroll"!=e.options.pageType){var r=e.contents.findIndex((function(t){return t.chapter==o[0].chapter})),s=e.contents.findIndex((function(t){return t.chapter==o[o.length-1].chapter}));!e.firstTipUnable&&e.contents[r].isStart?o.unshift({title:e.contents[r].title||"",chapter:e.contents[r].chapter,type:"top",direction:"prev",dataId:o[0].dataId-1,start:0,end:0}):o.unshift({title:e.contents[r].title||"",chapter:e.contents[r].chapter,type:"loading",direction:"prev",dataId:o[0].dataId-1,start:0,end:0}),!e.lastTipUnable&&e.contents[s].isEnd?o.push({title:e.contents[s].title||"",chapter:e.contents[s].chapter,type:"bottom",direction:"next",dataId:o[o.length-1].dataId+1,start:0,end:0}):o.push({title:e.contents[s].title||"",chapter:e.contents[s].chapter,type:"loading",direction:"next",dataId:o[o.length-1].dataId+1,start:0,end:0}),e.pages=o;var c=o.findIndex((function(t){return t.dataId==e.currentDataId}));-1==c?(e.currentDataId="next"==t.type?i[0].dataId:i[i.length-1].dataId,e.handleFlipChange(e.currentDataId)):e.startAutoplay()}else{"prev"==t.type?e.pages[0].dataId:e.pages[e.pages.length-1].dataId;a.default.getRect(".scroll-item-wrapper",e.$refs.scrollItemWrapper,e).then((function(n){var o=n.height;e.pages="prev"==t.type?i.concat(e.pages):e.pages.concat(i),"prev"==t.type&&e.$nextTick((function(){var t=this;setTimeout((function(){a.default.getRect(".scroll-item-wrapper",t.$refs.scrollItemWrapper,t).then((function(e){t.$refs.list.scrollTo(e.height-o)}))}),50)}))}))}}))},preload:function(t){var e=this;if(!this.enablePreload)return!1;var i=this.contents.findIndex((function(e){return e.chapter==t})),n=-2,o=-2,r=[];this.contents[i].isStart||(n=this.contents.findIndex((function(e){return e.chapter==t-1}))),this.contents[i].isEnd||(o=this.contents.findIndex((function(e){return e.chapter==t+1}))),-1==n&&r.push(t-1),-1==o&&r.push(t+1),r.length>0&&this.$emit("preload",r,(function(t,i){"success"==t&&i.forEach((function(t){var i=e.contents.findIndex((function(e){return e.chapter==t.chapter}));i>-1?e.contents[i]=t:e.contents.push(t)}))}))},filterPage:function(t){if(t&&t.dataId>-1){var e=this.pages.filter((function(e){return e.chapter==t.chapter&&("text"==e.type||"custom"==e.type||"slot"==e.type)})),i=e.findIndex((function(e){return e.dataId==t.dataId}));return i>-1?i+1+" / "+e.length:"top"==t.type?"\u6700\u524d\u9762":"bottom"==t.type?"\u6700\u540e\u9762":t.type.indexOf("Loading")>-1?"\u8bf7\u7b49\u5f85":""}return"\u52a0\u8f7d\u4e2d"},filterDate:function(){var t=new Date;return a.default.zeroize(t.getHours())+":"+a.default.zeroize(t.getMinutes())}}};e.default=s},"5e7a":function(t,e){t.exports="/static/images/bookCity/new_book.png"},"5ef2":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","memberUserInfo_centent"),attrs:{_i:0}},[e("view",{staticClass:this._$s(1,"sc","member_tips_info"),attrs:{_i:1}},[e("CommVipInfo",{attrs:{_i:2}})],1)])},o=[]},"5f6e":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("5ba6")),r={name:"u-navbar",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{}},methods:{leftClick:function(){this.$emit("leftClick"),this.autoBack&&uni.navigateBack()},rightClick:function(){this.$emit("rightClick")}}};e.default=r},"5f72":function(t,e,i){"use strict";i.r(e);var n=i("8ce2"),o=i("069a");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"7990f3ac",null,!1,n["a"],void 0);e["default"]=s.exports},6069:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;n(i("1817"));e.default={computed:{current:function(){var t=this;return this.pages.findIndex((function(e){return e.dataId==t.currentDataId}))},prevDataId:function(){return this.pages[this.current-1]&&this.pages[this.current-1].dataId},nextDataId:function(){return this.pages[this.current+1]&&this.pages[this.current+1].dataId}},data:function(){return{currentDataId:-1,isShow:!1,viewWidth:0,moreLoading:!1}},methods:{pagePrevFlip:function(){this.$refs.flip.flipToPrev()},pageNextFlip:function(){this.$refs.flip.flipToNext()},reloadLoadmoreFlip:function(t){var e=this.pages.findIndex((function(e){return t.dataId==e.dataId}));this.$set(this.pages[e],"type","loading");var i="next"==t.direction?t.chapter+1:t.chapter-1;this.loadmoreFlip(i,"next"==t.direction?1:-1)},loadmoreFlip:function(t,e){var i=this;this.$emit("loadmore",t,(function(n,o){if(i.moreLoading=!1,"success"==n){var r=i.contents.findIndex((function(t){return t.chapter==o.chapter}));r>-1?i.contents[r]=o:i.contents.push(o),i.computedPage({content:o,type:e>0?"next":"prev"}),i.preload(t)}else{var a=i.pages.findIndex((function(t){return"loading"==t.type&&t.direction==(e>0?"next":"prev")}));i.$set(i.pages[a],"type",n)}}))},handleFlipChangeRender:function(t){this.handleFlipChange(t.detail.dataId)},handleFlipChange:function(t){var e=t-1?(this.computedPage({content:this.contents[r],type:e>0?"next":"prev"}),this.preload(s),this.moreLoading=!1):this.loadmoreFlip(s,e)}else this.startAutoplay()}}}},6103:function(t,e,i){"use strict";i.r(e);var n=i("63c7"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},6167:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uCellGroup:i("0aba").default,uCell:i("9bd0").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","step_other_info"),attrs:{_i:1}},[i("u-cell-group",{attrs:{border:!1,_i:2}},t._l(t._$s(3,"f",{forItems:t.otherSteUpList}),(function(e,n,o,r){return i("u-cell",{key:t._$s(3,"f",{forIndex:o,key:n}),attrs:{title:e.title,isLink:!0,border:!1,titleStyle:e.titleStyle,size:"large",url:e.toPath,_i:"3-"+r}})})),1)],1)])},r=[]},"61f7":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{directoryCount:{type:Number,default:0},bookDirectory:{type:Array,default:[]},bookSid:{type:String,default:""},bookInfo:{type:Object,default:{title:""}}},data:function(){return{}},methods:{toBookRecommendList:function(){uni.navigateTo({url:"/pages/bookRecommendList/bookRecommendList?sid=".concat(this.bookSid,"&t=").concat(this.bookInfo.title)})}}};e.default=n},6265:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965}},"63c7":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("76f7")),r={name:"u-checkbox",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{isChecked:!1,parentData:{iconSize:12,labelDisabled:null,disabled:null,shape:"square",activeColor:null,inactiveColor:null,size:18,value:null,iconColor:null,placement:"row",borderBottom:!1,iconPlacement:"left"}}},computed:{elDisabled:function(){return""!==this.disabled?this.disabled:null!==this.parentData.disabled&&this.parentData.disabled},elLabelDisabled:function(){return""!==this.labelDisabled?this.labelDisabled:null!==this.parentData.labelDisabled&&this.parentData.labelDisabled},elSize:function(){return this.size?this.size:this.parentData.size?this.parentData.size:21},elIconSize:function(){return this.iconSize?this.iconSize:this.parentData.iconSize?this.parentData.iconSize:12},elActiveColor:function(){return this.activeColor?this.activeColor:this.parentData.activeColor?this.parentData.activeColor:"#2979ff"},elInactiveColor:function(){return this.inactiveColor?this.inactiveColor:this.parentData.inactiveColor?this.parentData.inactiveColor:"#c8c9cc"},elLabelColor:function(){return this.labelColor?this.labelColor:this.parentData.labelColor?this.parentData.labelColor:"#606266"},elShape:function(){return this.shape?this.shape:this.parentData.shape?this.parentData.shape:"circle"},elLabelSize:function(){return uni.$u.addUnit(this.labelSize?this.labelSize:this.parentData.labelSize?this.parentData.labelSize:"15")},elIconColor:function(){var t=this.iconColor?this.iconColor:this.parentData.iconColor?this.parentData.iconColor:"#ffffff";return this.elDisabled?this.isChecked?this.elInactiveColor:"transparent":this.isChecked?t:"transparent"},iconClasses:function(){var t=[];return t.push("u-checkbox__icon-wrap--"+this.elShape),this.elDisabled&&t.push("u-checkbox__icon-wrap--disabled"),this.isChecked&&this.elDisabled&&t.push("u-checkbox__icon-wrap--disabled--checked"),t},iconWrapStyle:function(){var t={};return t.backgroundColor=this.isChecked&&!this.elDisabled?this.elActiveColor:"#ffffff",t.borderColor=this.isChecked&&!this.elDisabled?this.elActiveColor:this.elInactiveColor,t.width=uni.$u.addUnit(this.elSize),t.height=uni.$u.addUnit(this.elSize),"right"===this.parentData.iconPlacement&&(t.marginRight=0),t},checkboxStyle:function(){var t={};return this.parentData.borderBottom&&"row"===this.parentData.placement&&uni.$u.error("\u68c0\u6d4b\u5230\u60a8\u5c06borderBottom\u8bbe\u7f6e\u4e3atrue\uff0c\u9700\u8981\u540c\u65f6\u5c06u-checkbox-group\u7684placement\u8bbe\u7f6e\u4e3acolumn\u624d\u6709\u6548"),this.parentData.borderBottom&&"column"===this.parentData.placement&&(t.paddingBottom="8px"),uni.$u.deepMerge(t,uni.$u.addStyle(this.customStyle))}},mounted:function(){this.init()},methods:{init:function(){var t=this;this.updateParentData(),this.parent||uni.$u.error("u-checkbox\u5fc5\u987b\u642d\u914du-checkbox-group\u7ec4\u4ef6\u4f7f\u7528"),this.checked?this.isChecked=!0:uni.$u.test.array(this.parentData.value)&&(this.isChecked=this.parentData.value.some((function(e){return e===t.name})))},updateParentData:function(){this.getParentData("u-checkbox-group")},wrapperClickHandler:function(t){"right"===this.parentData.iconPlacement&&this.iconClickHandler(t)},iconClickHandler:function(t){this.preventEvent(t),this.elDisabled||this.setRadioCheckedStatus()},labelClickHandler:function(t){this.preventEvent(t),this.elLabelDisabled||this.elDisabled||this.setRadioCheckedStatus()},emitEvent:function(){var t=this;this.$emit("change",this.isChecked),this.$nextTick((function(){uni.$u.formValidate(t,"change")}))},setRadioCheckedStatus:function(){this.isChecked=!this.isChecked,this.emitEvent(),"function"===typeof this.parent.unCheckedOther&&this.parent.unCheckedOther(this)}},watch:{checked:function(){this.isChecked=this.checked}}};e.default=r},"644e":function(t,e,i){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={data:function(){return{problemTitle:"",problemList:[]}},onLoad:function(e){t("log",e," at pages/myInfo/problemDetail/index.vue:22");var i=e.problemStatus||1,n={1:{problemTitle:"\u8d60\u5e01\u6709\u6709\u6548\u671f\u5417",problemList:["\u53c2\u52a0\u4e0d\u5b9a\u65f6\u6d3b\u52a8\u5145\u503c\u8d60\u9001\u7684\u8d60\u5e01\u6709\u6548\u671f\u901a\u5e38\u4e3a\u53d1\u653e\u540e\u76843\u5929\uff0c\u5982\u6709\u7279\u6b8a\u6709\u6548\u671f\uff0c\u4f1a\u5728\u6d3b\u52a8\u4e2d\u8bf4\u660e;","\u8d60\u5e01\u5230\u8d26\u540e\u53ef\u5728\u201c\u6211\u7684\u201d-\u201c\u6211\u7684\u8d26\u6237\u201d-\u201c\u8d60\u5e01\u201d\u9875\u9762\u4e2d\u67e5\u770b\u4f7f\u7528\u622a\u6b62\u65e5\u671f\u3002"]},2:{problemTitle:"\u89e3\u9501\u5f97\u7ae0\u8282\u53ef\u4ee5\u6c38\u4e45\u514d\u8d39\u770b\u5417\uff1f",problemList:["\u53ef\u4ee5\u3002"]}};this.problemList=n[i].problemList,this.problemTitle=n[i].problemTitle}};e.default=i}).call(this,i("0de9")["default"])},"64e6":function(t,e,i){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=i("d0cf"),o={data:function(){return{selectVoucherMoneyId:"",footerSafeHeight:0,contentSafeHeight:130,payList:[],annualPass:{},userInfo:{},price:0,preferential:""}},onShow:function(){var e=this,i=(0,n.isGetSystemInfo)(),o=i.windowHeight,r=void 0===o?0:o,a=i.screenHeight,s=void 0===a?0:a,c=i.windowTop,l=void 0===c?0:c,u=s-r-l;u&&(this.contentSafeHeight=u+130),this.isGetPayList();uni.$u.http.post("/getUserInfo",{}).then((function(t){if(uni.hideLoading(),1==t.status){var i=t.data.user;e.userInfo=i}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/voucherCenter/index.vue:105")}))},methods:{selectVoucherMoney:function(t,e){this.selectVoucherMoneyId=t.currentTarget.dataset.id,this.price=e.price,this.preferential=e.title},isGetPayList:function(){var e=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});uni.$u.http.post("/getPayList",{}).then((function(t){uni.hideLoading(),1==t.status&&(e.annualPass=t.data.AnnualPass,e.payList=t.data.list)})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/voucherCenter/index.vue:130")}))}}};e.default=o}).call(this,i("0de9")["default"])},6539:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("50df")),r={name:"u-status-bar",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{}},computed:{style:function(){var t={};return t.height=uni.$u.addUnit(uni.$u.sys().statusBarHeight,"px"),t.backgroundColor=this.bgColor,uni.$u.deepMerge(t,uni.$u.addStyle(this.customStyle))}}};e.default=r},"654c":function(t,e,i){"use strict";i.r(e);var n=i("5ef2"),o=i("8cf4");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"655f":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={form:{model:function(){return{}},rules:function(){return{}},errorType:"message",borderBottom:!0,labelPosition:"left",labelWidth:45,labelAlign:"left",labelStyle:function(){return{}}}}},"657e":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("a34a")),r=n(i("c973")),a=n(i("1817")),s={data:function(){return{pageTo:0,scrollTop:0,scrolling:!1,scrollDate:""}},beforeDestroy:function(){this.scrollTimer&&(clearTimeout(this.scrollTimer),this.scrollTimer=null)},mounted:function(){this.scrollDate=this.filterDate()},methods:{scrollNext:function(){var t=this;this.scrolling||(this.scrolling=!0,this.$refs.list.scrollTo(this.scrollTop+this.windowHeight/2,!0),this.scrollTimer=setTimeout((function(){t.scrolling=!1,clearTimeout(t.scrollTimer),t.scrollTimer=null}),300))},scrollPrev:function(){var t=this;this.scrolling||(this.scrolling=!0,this.$refs.list.scrollTo(this.scrollTop-this.windowHeight/2,!0),this.scrollTimer=setTimeout((function(){t.scrolling=!1,clearTimeout(t.scrollTimer),t.scrollTimer=null}),300))},pulldownScroll:function(t){var e=this,i=this.contents.findIndex((function(t){return t.chapter==e.pages[0].chapter}));this.contents[i].isStart?t("end"):(this.scroll_loadmore({chapter:this.pages[0].chapter-1,type:"prev"},t),this.$refs.list.resetLoadmore())},scrolltoupper:function(){var t=this,e=this.contents.findIndex((function(e){return e.chapter==t.pages[0].chapter-1}));e>-1&&(this.scroll_loadmore({chapter:this.pages[0].chapter-1,type:"prev"}),this.$refs.list.resetLoadmore())},loadmoreScroll:function(t){var e=this;this.stopAutoplay();var i=this.contents.findIndex((function(t){return t.chapter==e.pages[e.pages.length-1].chapter}));this.contents[i].isEnd?t("end"):(this.scroll_loadmore({chapter:this.pages[this.pages.length-1].chapter+1,type:"next"},t),this.$refs.list.resetPulldown())},scroll_loadmore:function(t,e){var i=this,n=t.chapter,o=t.type,r=this.contents.findIndex((function(t){return t.chapter==n}));r>-1?(this.computedPage({content:this.contents[r],type:o}),this.preload(n),e&&e("success")):this.$emit("loadmore",n,(function(t,r){if("success"==t){var a=i.contents.findIndex((function(t){return t.chapter==r.chapter}));a>-1?i.contents[a]=r:i.contents.push(r),i.computedPage({content:r,type:o}),i.preload(n)}e&&e(t)}))},scrollEnd:function(t){var e=this;return(0,r.default)(o.default.mark((function i(){var n,r,a,s,c,l,u;return o.default.wrap((function(i){while(1)switch(i.prev=i.next){case 0:return i.next=2,e.getRect();case 2:n=i.sent,r=Math.floor(t.scrollTop/n.height),a=e.pages[r]?r:e.pages.length-1,s=-1,c=null;case 7:if(!(s<0)){i.next=16;break}return i.next=10,e.getScrollItemRect(e.pages[a].dataId);case 10:l=i.sent,s=l.top,c=e.pages[a],a++,i.next=7;break;case 16:s>=0&&(u=e.pages.filter((function(t){return t.chapter==c.chapter&&("text"==t.type||"custom"==t.type||"slot"==t.type)})),e.contents.findIndex((function(t){return t.chapter==c.chapter})),c.totalPage=u.length,c.currentPage=u.findIndex((function(t){return t.dataId==c.dataId}))+1,e.pageInfo=c,e.scrollDate=e.filterDate(),e.$refs.scrollBattery.getBattery(),e._emitPageInfo(c,e.pages),e.startAutoplay());case 17:case"end":return i.stop()}}),i)})))()},getScrollItemRect:function(t){var e=this;return new Promise((function(i){a.default.getRect("#scroll-item_"+t,a.default.getRefs(e,"scrollItem_"+t,0),e).then((function(t){i(t)}))}))},onScroll:function(t){var e=this;this.stopAutoplay(),"scroll"==this.options.pageType&&(this.scrollTop=t.scrollTop,this.scrollTimer&&(clearTimeout(this.scrollTimer),this.scrollTimer=null),this.scrollTimer=setTimeout((function(){e.scrolling=!1,e.scrollEnd(t)}),300))}}};e.default=s},6609:function(t,e,i){"use strict";i.r(e);var n=i("8be9"),o=i("b7aa");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},6613:function(t,e,i){var n=i("5a43");t.exports=function(t,e){if(t){if("string"===typeof t)return n(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?n(t,e):void 0}},t.exports.__esModule=!0,t.exports["default"]=t.exports},6656:function(t,e,i){"use strict";e["a"]=function(t){(t.options.wxs||(t.options.wxs={}))["flip"]=function(t){function e(t,e,r){var s=e.getState();if(function(t){var e=t.getState();e.interval=!1,e.touchTimer&&(t.clearTimeout(e.touchTimer),e.touchTimer=null)}(e),s.isTouch&&!s.disableTouch){var c=e.getBoundingClientRect(),l=s.vertical?c.height:c.width,u=s.vertical?s.startY:s.startX;if(s.direction||!(s.touchTime<=200)||s.unableClickPage&&"none"!=s.type||r||(u>l/4*3&&s.nextIndex=0&&s.prevIndex!=s.count-1&&(s.direction="prev")),s.direction)if(s.disableTouch=!0,s.touchTime<=200){var d="none"==s.type?0:s.duration,f="next"==s.direction?1:-1;o(-f*l,d,e),e.setTimeout((function(){i(e,!0),e.callMethod("handleFlipChange",f)}),d+50)}else{d="none"==s.type?0:s.duration;if(Math.abs(s.offset)>=l/4){f="next"==s.direction?1:-1;o(-f*l,d,e),e.setTimeout((function(){i(e,!0),e.callMethod("handleFlipChange",f)}),d+50)}else o(0,d,e),e.setTimeout((function(){i(e),n(e)}),d+50)}else"default"==s.loadingState?a(e):"ready"==s.loadingState?function(t){var e=t.getState();e.loadingState="loading";var i=e.loadingType;t.requestAnimationFrame((function(){for(var e=t.selectAllComponents(".yingbing-flip-"+i+"-item"),n=0;n=0&&(i.selectComponent(".yingbing-flip-item_"+o.prevIndex).setStyle({transform:s+"("+(c-a)+"px)","box-shadow":n?"":"real"==o.type?"0 0 30px 20px rgba(0,0,0,0.4)":"cover"==o.type?"0 0 10px 5px rgba(0,0,0,0.3)":"",transition:e>0?"transform "+e+"ms":""}),"real"==o.type&&(i.selectComponent(".yingbing-flip-item-content_"+o.prevIndex).setStyle({transform:s+"("+(a-c)+"px)",transition:e>0?"transform "+e+"ms":""}),i.selectComponent(".yingbing-flip-item-bg_"+o.prevIndex).setStyle({transform:s+"("+c+"px)","box-shadow":n?"":"-5px 0 20px rgba(0,0,0,0.1)",transition:e>0?"transform "+e+"ms, boxShadow "+e+"ms":""}),i.selectComponent(".yingbing-flip-item-shadow_"+o.prevIndex).setStyle({"box-shadow":n?"":"0 0 60px 30px rgba(0,0,0,0.4)",transition:e>0?"boxShadow "+e+"ms":""}))):(o.nextIndex0?"transform "+e+"ms":""}),"real"==o.type&&(i.selectComponent(".yingbing-flip-item-content_"+o.currentIndex).setStyle({transform:s+"("+-c+"px)",transition:e>0?"transform "+e+"ms":""}),i.selectComponent(".yingbing-flip-item-bg_"+o.currentIndex).setStyle({transform:s+"("+(c+a)+"px)","box-shadow":n?"":"-5px 0 20px rgba(0,0,0,0.1)",transition:e>0?"transform "+e+"ms, boxShadow "+e+"ms":""}),i.selectComponent(".yingbing-flip-item-shadow_"+o.currentIndex).setStyle({"box-shadow":n?"":"0 0 60px 30px rgba(0,0,0,0.4)",transition:e>0?"boxShadow "+e+"ms":""})))}))}function r(t,e){var i=e.getState(),n=i.loadingType,o=i.translate,r="pullup"==n?i.pullupHeight:i.pulldownHeight,a=t;Math.abs(i.offset)0&&"next"==i.direction||i.offset<0&&"prev"==i.direction)&&(i.offset=0),Math.abs(i.offset)<=s&&o(i.offset,0,e)}else{if(Math.abs(i.offset)=0&&i.prevIndex!=i.count-1?"none"!=i.type&&(i.direction="prev"):i.pulldownable&&"loading"!=i.loadingState&&"success"!=i.loadingState&&"fail"!=i.loadingState&&(i.loadingType="pulldown",i.offset=i.offset-i.sliderFault,r(i.offset,e))}}},touchend:function(t,i){e(t,i)},touchcancel:function(t,i){e(t,i)},propWatcher:function(t,i,o){o.setTimeout((function(){var r=o.getState();r.vertical=t.vertical,r.pulldownable=t.pulldownable,r.pullupable=t.pullupable,r.pulldownHeight=t.pulldownHeight,r.loadingState=t.loadingState,r.pullupHeight=t.pullupHeight,r.duration=t.duration,r.nextIndex=t.nextIndex,r.prevIndex=t.prevIndex,r.currentIndex=t.currentIndex,r.sliderFault=t.sliderFault,r.count=t.count,r.type=t.type,r.unableClickPage=t.unableClickPage,r.translate=t.translate,i&&t.currentIndex!=i.currentIndex&&n(o),i&&t.loadingState!=i.loadingState&&r.loadingState&&(a(o),o.callMethod("resetLoading")),i&&t.flipTo!=i.flipTo&&0!=t.flipTo&&(r.disableTouch||(t.flipTo<0&&r.prevIndex>=0&&r.prevIndex!=r.count-1&&(r.isTouch=!0,r.touchTime=0,r.direction="prev",e(0,o,!0)),t.flipTo>0&&r.nextIndex=11){var r={phone:t};uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."}),uni.$u.http.post("/SendCode",r).then((function(r){uni.hideLoading(),1==r.status&&uni.navigateTo({url:"/pages/loginMobile/loginMobile?phone=".concat(t,"&sid=").concat(e,"i=").concat(n,"&c=").concat(i,"&to=").concat(o)})})).catch((function(t){cosnole.log(t,"========"),uni.hideLoading()}))}}}};e.default=i}).call(this,i("0de9")["default"])},"755b":function(t,e,i){"use strict";i.r(e);var n=i("07d8"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"760f":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return t._$s(0,"i",t.options.show)?i("view",{staticClass:t._$s(0,"sc","yb-pulldown yb-flex yb-align-center yb-justify-center"),class:t._$s(0,"c",{"yb-row":t.options.row}),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","yb-flex yb-align-center yb-justify-center"),style:t._$s(1,"s",{"margin-left":t.options.row?"-70rpx":0}),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","yb-flex indicator-icon yb-align-center yb-justify-center"),attrs:{_i:2}},[t._$s(3,"i","ready"==t.status||""==t.status)?[i("view",{staticClass:t._$s(4,"sc","yb-flex indicator-symbol"),style:t._$s(4,"s",{transform:"rotateZ("+("ready"==t.status?"180deg":0)+")"}),attrs:{_i:4}},[t._t("pulldown-symbol",[i("list-icon",{attrs:{name:"arrow-down",size:50,color:t.options.color,_i:6}})],{_i:5})],2)]:t._e(),t._$s(7,"i","loading"==t.status)?[t._t("pulldown-loading",[i("list-loading",{attrs:{visible:"loading"==t.status,color:t.options.color,_i:9}})],{_i:8})]:t._e(),t._$s(10,"i","success"==t.status)?[t._t("pulldown-success",[i("list-icon",{attrs:{name:"hook-circle",size:50,color:t.options.color,_i:12}})],{_i:11})]:t._e(),t._$s(13,"i","fail"==t.status)?[t._t("pulldown-fail",[i("list-icon",{attrs:{name:"fork-circle",size:50,color:t.options.color,_i:15}})],{_i:14})]:t._e(),t._$s(16,"i","end"==t.status)?[t._t("pulldown-end",[i("list-icon",{attrs:{name:"hook-circle",size:50,color:t.options.color,_i:18}})],{_i:17})]:t._e()],2)]),i("view",{staticClass:t._$s(19,"sc","yb-flex indicator-text yb-align-center"),attrs:{_i:19}},[i("text",{staticClass:t._$s(20,"sc","refresh-text"),style:t._$s(20,"s",{color:t.options.color}),attrs:{_i:20}},[t._v(t._$s(20,"t0-0",t._s(t.pulldownText)))]),t._$s(21,"i",t.options.enableRefreshTime)?i("text",{staticClass:t._$s(21,"sc","refresh-time"),style:t._$s(21,"s",{color:t.options.color}),attrs:{_i:21}},[t._v(t._$s(21,"t0-0",t._s(t.lastTime)))]):t._e()])]):t._e()},o=[]},"76f7":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{name:{type:[String,Number,Boolean],default:uni.$u.props.checkbox.name},shape:{type:String,default:uni.$u.props.checkbox.shape},size:{type:[String,Number],default:uni.$u.props.checkbox.size},checked:{type:Boolean,default:uni.$u.props.checkbox.checked},disabled:{type:[String,Boolean],default:uni.$u.props.checkbox.disabled},activeColor:{type:String,default:uni.$u.props.checkbox.activeColor},inactiveColor:{type:String,default:uni.$u.props.checkbox.inactiveColor},iconSize:{type:[String,Number],default:uni.$u.props.checkbox.iconSize},iconColor:{type:String,default:uni.$u.props.checkbox.iconColor},label:{type:[String,Number],default:uni.$u.props.checkbox.label},labelSize:{type:[String,Number],default:uni.$u.props.checkbox.labelSize},labelColor:{type:String,default:uni.$u.props.checkbox.labelColor},labelDisabled:{type:[String,Boolean],default:uni.$u.props.checkbox.labelDisabled}}};e.default=n},"76fb":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{bgColor:{type:String,default:uni.$u.props.gap.bgColor},height:{type:[String,Number],default:uni.$u.props.gap.height},marginTop:{type:[String,Number],default:uni.$u.props.gap.marginTop},marginBottom:{type:[String,Number],default:uni.$u.props.gap.marginBottom}}};e.default=n},"771d":function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uPopup:i("adb9").default,uLine:i("030c").default,uLoadingIcon:i("70a6").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("u-popup",{attrs:{mode:"center",zoom:t.zoom,show:t.show,customStyle:{borderRadius:"6px",overflow:"hidden",marginTop:"-"+t.$u.addUnit(t.negativeTop)},closeOnClickOverlay:t.closeOnClickOverlay,safeAreaInsetBottom:!1,duration:400,_i:0},on:{click:t.clickHandler}},[i("view",{staticClass:t._$s(1,"sc","u-modal"),style:t._$s(1,"s",{width:t.$u.addUnit(t.width)}),attrs:{_i:1}},[t._$s(2,"i",t.title)?i("text",{staticClass:t._$s(2,"sc","u-modal__title"),attrs:{_i:2}},[t._v(t._$s(2,"t0-0",t._s(t.title)))]):t._e(),i("view",{staticClass:t._$s(3,"sc","u-modal__content"),style:t._$s(3,"s",{paddingTop:(t.title?12:25)+"px"}),attrs:{_i:3}},[t._t("default",[i("text",{staticClass:t._$s(5,"sc","u-modal__content__text"),attrs:{_i:5}},[t._v(t._$s(5,"t0-0",t._s(t.content)))])],{_i:4})],2),t._$s(6,"i",t.$slots.confirmButton)?i("view",{staticClass:t._$s(6,"sc","u-modal__button-group--confirm-button"),attrs:{_i:6}},[t._t("confirmButton",null,{_i:7})],2):[i("u-line",{attrs:{_i:9}}),i("view",{staticClass:t._$s(10,"sc","u-modal__button-group"),style:t._$s(10,"s",{flexDirection:t.buttonReverse?"row-reverse":"row"}),attrs:{_i:10}},[t._$s(11,"i",t.showCancelButton)?i("view",{staticClass:t._$s(11,"sc","u-modal__button-group__wrapper u-modal__button-group__wrapper--cancel"),class:t._$s(11,"c",[t.showCancelButton&&!t.showConfirmButton&&"u-modal__button-group__wrapper--only-cancel"]),attrs:{_i:11},on:{click:t.cancelHandler}},[i("text",{staticClass:t._$s(12,"sc","u-modal__button-group__wrapper__text"),style:t._$s(12,"s",{color:t.cancelColor}),attrs:{_i:12}},[t._v(t._$s(12,"t0-0",t._s(t.cancelText)))])]):t._e(),t._$s(13,"i",t.showConfirmButton&&t.showCancelButton)?i("u-line",{attrs:{direction:"column",_i:13}}):t._e(),t._$s(14,"i",t.showConfirmButton)?i("view",{staticClass:t._$s(14,"sc","u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm"),class:t._$s(14,"c",[!t.showCancelButton&&t.showConfirmButton&&"u-modal__button-group__wrapper--only-confirm"]),attrs:{_i:14},on:{click:t.confirmHandler}},[t._$s(15,"i",t.loading)?i("u-loading-icon",{attrs:{_i:15}}):i("text",{staticClass:t._$s(16,"sc","u-modal__button-group__wrapper__text"),style:t._$s(16,"s",{color:t.confirmColor}),attrs:{_i:16}},[t._v(t._$s(16,"t0-0",t._s(t.confirmText)))])],1):t._e()],1)]],2)])},r=[]},7807:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={noNetwork:{tips:"\u54ce\u5440\uff0c\u7f51\u7edc\u4fe1\u53f7\u4e22\u5931",zIndex:"",image:"data:image/png;base64,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"}}},"788a":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{bookTips:{type:String,default:""},bookName:{type:String,default:""},bookImage:{type:String,default:""}},data:function(){return{}}};e.default=n},"78b2":function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uIcon:i("7b88").default,uLink:i("b18b").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return t._$s(0,"i",t.show)?i("view",{staticClass:t._$s(0,"sc","u-text"),class:t._$s(0,"c",[]),style:t._$s(0,"s",{margin:t.margin,justifyContent:"left"===t.align?"flex-start":"center"===t.align?"center":"flex-end"}),attrs:{_i:0},on:{click:t.clickHandler}},[t._$s(1,"i","price"===t.mode)?i("text",{class:t._$s(1,"c",["u-text__price",t.type&&"u-text__value--"+t.type]),style:t._$s(1,"s",[t.valueStyle]),attrs:{_i:1}}):t._e(),t._$s(2,"i",t.prefixIcon)?i("view",{staticClass:t._$s(2,"sc","u-text__prefix-icon"),attrs:{_i:2}},[i("u-icon",{attrs:{name:t.prefixIcon,customStyle:t.$u.addStyle(t.iconStyle),_i:3}})],1):t._e(),t._$s(4,"i","link"===t.mode)?i("u-link",{attrs:{text:t.value,href:t.href,underLine:!0,_i:4}}):t._$s(5,"e",t.openType&&t.isMp)?[i("button",{staticClass:t._$s(6,"sc","u-reset-button u-text__value"),style:t._$s(6,"s",[t.valueStyle]),attrs:{"data-index":t._$s(6,"a-data-index",t.index),openType:t._$s(6,"a-openType",t.openType),lang:t._$s(6,"a-lang",t.lang),"session-from":t._$s(6,"a-session-from",t.sessionFrom),"send-message-title":t._$s(6,"a-send-message-title",t.sendMessageTitle),"send-message-path":t._$s(6,"a-send-message-path",t.sendMessagePath),"send-message-img":t._$s(6,"a-send-message-img",t.sendMessageImg),"show-message-card":t._$s(6,"a-show-message-card",t.showMessageCard),"app-parameter":t._$s(6,"a-app-parameter",t.appParameter),_i:6},on:{getuserinfo:t.onGetUserInfo,contact:t.onContact,getphonenumber:t.onGetPhoneNumber,error:t.onError,launchapp:t.onLaunchApp,opensetting:t.onOpenSetting}},[t._v(t._$s(6,"t0-0",t._s(t.value)))])]:i("text",{staticClass:t._$s(7,"sc","u-text__value"),class:t._$s(7,"c",[t.type&&"u-text__value--"+t.type,t.lines&&"u-line-"+t.lines]),style:t._$s(7,"s",[t.valueStyle]),attrs:{_i:7}},[t._v(t._$s(7,"t0-0",t._s(t.value)))]),t._$s(8,"i",t.suffixIcon)?i("view",{staticClass:t._$s(8,"sc","u-text__suffix-icon"),attrs:{_i:8}},[i("u-icon",{attrs:{name:t.suffixIcon,customStyle:t.$u.addStyle(t.iconStyle),_i:9}})],1):t._e()],2):t._e()},r=[]},"799e":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={button:{hairline:!1,type:"info",size:"normal",shape:"square",plain:!1,disabled:!1,loading:!1,loadingText:"",loadingMode:"spinner",loadingSize:15,openType:"",formType:"",appParameter:"",hoverStopPropagation:!0,lang:"en",sessionFrom:"",sendMessageTitle:"",sendMessagePath:"",sendMessageImg:"",showMessageCard:!1,dataName:"",throttleTime:0,hoverStartTime:0,hoverStayTime:200,text:"",icon:"",iconColor:"",color:""}}},"79db":function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("0d31")),r=i("22a5"),a={components:{CommBookLeftRigth:o.default},data:function(){return{booksList:[]}},onLoad:function(e){var i=this,n=e.titleType,o=n?{complete:"\u5b8c\u672c\u4e66\u7c4d",new_book:"\u70ed\u95e8\u65b0\u4e66"}[n]:"\u4e66\u7c4d\u5217\u8868";uni.setNavigationBarTitle({title:o});var a="";"complete"==n?a="/getIntact":"new_book"==n&&(a="/getNewbook"),uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});uni.$u.http.post(a,{},{custom:{token:!0}}).then((function(t){if(uni.hideLoading(),1==t.status){var e=t.data.module;i.booksList=(0,r.baseUrlImage)(e)}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/booksListAll/index.vue:65")}))},methods:{toBooksReadingDetail:function(t){uni.navigateTo({url:"/pages/booksReadingDetail/booksReadingDetail?sid=".concat(t.id,"&t=").concat(t.title)})}}};e.default=a}).call(this,i("0de9")["default"])},"7a2e":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","u-status-bar"),style:this._$s(0,"s",[this.style]),attrs:{_i:0}},[this._t("default",null,{_i:1})],2)},o=[]},"7a67":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{content:String,copyLink:{type:Boolean,default:uni.$u.props.parse.copyLink},domain:String,errorImg:{type:String,default:uni.$u.props.parse.errorImg},lazyLoad:{type:Boolean,default:uni.$u.props.parse.lazyLoad},loadingImg:{type:String,default:uni.$u.props.parse.loadingImg},pauseVideo:{type:Boolean,default:uni.$u.props.parse.pauseVideo},previewImg:{type:Boolean,default:uni.$u.props.parse.previewImg},scrollTable:Boolean,selectable:Boolean,setTitle:{type:Boolean,default:uni.$u.props.parse.setTitle},showImgMenu:{type:Boolean,default:uni.$u.props.parse.showImgMenu},tagStyle:Object,useAnchor:null}};e.default=n},"7af7":function(t,e){t.exports="/static/images/novelReading/directory_ccd9e2.png"},"7b1a":function(t,e,i){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={onLaunch:function(){t("log","App Launch"," at App.vue:4")},onShow:function(){t("log","App Show"," at App.vue:7")},onHide:function(){t("log","App Hide"," at App.vue:10")}};e.default=i}).call(this,i("0de9")["default"])},"7b88":function(t,e,i){"use strict";i.r(e);var n=i("090f"),o=i("14ec");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"53601e10",null,!1,n["a"],void 0);e["default"]=s.exports},"7ba8":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={parse:{copyLink:!0,errorImg:"",lazyLoad:!1,loadingImg:"",pauseVideo:!0,previewImg:!0,setTitle:!0,showImgMenu:!0}}},"7bd2":function(t,e,i){"use strict";i.r(e);var n=i("45e5"),o=i("4102");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"7bed":function(t,e,i){"use strict";i.r(e);var n=i("3c2a"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"7c52":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={album:{urls:function(){return[]},keyName:"",singleSize:180,multipleSize:70,space:6,singleMode:"scaleToFill",multipleMode:"aspectFill",maxCount:9,previewFullImage:!0,rowCount:3,showMore:!0}}},"7cc3":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={indexList:{inactiveColor:"#606266",activeColor:"#5677fc",indexList:function(){return[]},sticky:!0,customNavHeight:0}}},"7de6":function(t,e,i){"use strict";i.r(e);var n=i("1410"),o=i("1a0a");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"21c3eb91",null,!1,n["a"],void 0);e["default"]=s.exports},"7e2e":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("278c")),r=n(i("7037")),a=n(i("48d6")),s=i("8788");function c(t){var e,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:new WeakMap;if(null===t||"object"!==(0,r.default)(t))return t;if(i.has(t))return i.get(t);if(t instanceof Date)e=new Date(t.getTime());else if(t instanceof RegExp)e=new RegExp(t);else if(t instanceof Map)e=new Map(Array.from(t,(function(t){var e=(0,o.default)(t,2),n=e[0],r=e[1];return[n,c(r,i)]})));else if(t instanceof Set)e=new Set(Array.from(t,(function(t){return c(t,i)})));else if(Array.isArray(t))e=t.map((function(t){return c(t,i)}));else if("[object Object]"===Object.prototype.toString.call(t)){e=Object.create(Object.getPrototypeOf(t)),i.set(t,e);for(var n=0,a=Object.entries(t);n0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd";t=e?/^\d{10}$/.test(null===e||void 0===e?void 0:e.toString().trim())?new Date(1e3*e):"string"===typeof e&&/^\d+$/.test(e.trim())?new Date(Number(e)):"string"===typeof e&&e.includes("-")&&!e.includes("T")?new Date(e.replace(/-/g,"/")):new Date(e):new Date;var n={y:t.getFullYear().toString(),m:(t.getMonth()+1).toString().padStart(2,"0"),d:t.getDate().toString().padStart(2,"0"),h:t.getHours().toString().padStart(2,"0"),M:t.getMinutes().toString().padStart(2,"0"),s:t.getSeconds().toString().padStart(2,"0")};for(var r in n){var a=new RegExp("".concat(r,"+")).exec(i)||[],s=(0,o.default)(a,1),c=s[0];if(c){var l="y"===r&&2===c.length?2:0;i=i.replace(c,n[r].slice(l))}}return i}function u(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"both";return t=String(t),"both"==e?t.replace(/^\s+|\s+$/g,""):"left"==e?t.replace(/^\s*/,""):"right"==e?t.replace(/(\s*$)/g,""):"all"==e?t.replace(/\s+/g,""):t}String.prototype.padStart||(String.prototype.padStart=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:" ";if("[object String]"!==Object.prototype.toString.call(e))throw new TypeError("fillString must be String");var i=this;if(i.length>=t)return String(i);var n=t-i.length,o=Math.ceil(n/e.length);while(o>>=1)e+=e,1===o&&(e+=e);return e.slice(0,n)+i});var d={range:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return Math.max(t,Math.min(e,Number(i)))},getPx:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return a.default.number(t)?e?"".concat(t,"px"):Number(t):/(rpx|upx)$/.test(t)?e?"".concat(uni.upx2px(parseInt(t)),"px"):Number(uni.upx2px(parseInt(t))):e?"".concat(parseInt(t),"px"):parseInt(t)},sleep:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:30;return new Promise((function(e){setTimeout((function(){e()}),t)}))},os:function(){return uni.getSystemInfoSync().platform.toLowerCase()},sys:function(){return uni.getSystemInfoSync()},random:function(t,e){if(t>=0&&e>0&&e>=t){var i=e-t+1;return Math.floor(Math.random()*i+t)}return 0},guid:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:32,e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),o=[];if(i=i||n.length,t)for(var r=0;r0&&void 0!==arguments[0]?arguments[0]:void 0,e=this.$parent;while(e){if(!e.$options||e.$options.name===t)return e;e=e.$parent}return!1},addStyle:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"object";if(a.default.empty(t)||"object"===(0,r.default)(t)&&"object"===e||"string"===e&&"string"===typeof t)return t;if("object"===e){t=u(t);for(var i=t.split(";"),n={},o=0;o0&&void 0!==arguments[0]?arguments[0]:"auto",r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null!==(t=null===(e=uni)||void 0===e||null===(i=e.$u)||void 0===i||null===(n=i.config)||void 0===n?void 0:n.unit)&&void 0!==t?t:"px";return o=String(o),a.default.number(o)?"".concat(o).concat(r):o},deepClone:c,deepMerge:function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(e=c(e),"object"!==(0,r.default)(e)||null===e||"object"!==(0,r.default)(i)||null===i)return e;var n=Array.isArray(e)?e.slice():Object.assign({},e);for(var o in i)if(i.hasOwnProperty(o)){var a=i[o],s=n[o];a instanceof Date?n[o]=new Date(a):a instanceof RegExp?n[o]=new RegExp(a):a instanceof Map?n[o]=new Map(a):a instanceof Set?n[o]=new Set(a):"object"===(0,r.default)(a)&&null!==a?n[o]=t(s,a):n[o]=a}return n},error:function(t){0},randomArray:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return t.sort((function(){return Math.random()-.5}))},timeFormat:l,timeFrom:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd";null==t&&(t=Number(new Date)),t=parseInt(t),10==t.toString().length&&(t*=1e3);var i=(new Date).getTime()-t;i=parseInt(i/1e3);var n="";switch(!0){case i<300:n="\u521a\u521a";break;case i>=300&&i<3600:n="".concat(parseInt(i/60),"\u5206\u949f\u524d");break;case i>=3600&&i<86400:n="".concat(parseInt(i/3600),"\u5c0f\u65f6\u524d");break;case i>=86400&&i<2592e3:n="".concat(parseInt(i/86400),"\u5929\u524d");break;default:n=!1===e?i>=2592e3&&i<31536e3?"".concat(parseInt(i/2592e3),"\u4e2a\u6708\u524d"):"".concat(parseInt(i/31536e3),"\u5e74\u524d"):l(t,e)}return n},trim:u,queryParams:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"brackets",n=e?"?":"",o=[];-1==["indices","brackets","repeat","comma"].indexOf(i)&&(i="brackets");var r=function(e){var n=t[e];if(["",void 0,null].indexOf(n)>=0)return"continue";if(n.constructor===Array)switch(i){case"indices":for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:2e3;uni.showToast({title:String(t),icon:"none",duration:e})},type2icon:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"success",e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];-1==["primary","info","error","warning","success"].indexOf(t)&&(t="success");var i="";switch(t){case"primary":i="info-circle";break;case"info":i="info-circle";break;case"error":i="close-circle";break;case"warning":i="error-circle";break;case"success":i="checkmark-circle";break;default:i="checkmark-circle"}return e&&(i+="-fill"),i},priceFormat:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:".",n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:",";t="".concat(t).replace(/[^0-9+-Ee.]/g,"");var o=isFinite(+t)?+t:0,r=isFinite(+e)?Math.abs(e):0,a="undefined"===typeof n?",":n,c="undefined"===typeof i?".":i,l="";l=(r?(0,s.round)(o,r)+"":"".concat(Math.round(o))).split(".");var u=/(-?\d+)(\d{3})/;while(u.test(l[0]))l[0]=l[0].replace(u,"$1".concat(a,"$2"));return(l[1]||"").length1&&void 0!==arguments[1])||arguments[1],i=parseInt(t);return e?/s$/.test(t)?t:"".concat(t,t>30?"ms":"s"):/ms$/.test(t)?i:/s$/.test(t)?i>30?i:1e3*i:i},padZero:function(t){return"00".concat(t).slice(-2)},formValidate:function(t,e){var i=uni.$u.$parent.call(t,"u-form-item"),n=uni.$u.$parent.call(t,"u-form");i&&n&&n.validateField(i.prop,(function(){}),e)},getProperty:function(t,e){if(t){if("string"!==typeof e||""===e)return"";if(-1!==e.indexOf(".")){for(var i=e.split("."),n=t[i[0]]||{},o=1;o1){var o=i[0];e[o]&&"object"===(0,r.default)(e[o])||(e[o]={});i.shift();t(e[o],i,n)}else e[i[0]]=n})(t,n,i)}else t[e]=i}},page:function(){var t,e,i=getCurrentPages();return"/".concat(null!==(t=null===(e=i[i.length-1])||void 0===e?void 0:e.route)&&void 0!==t?t:"")},pages:function(){var t=getCurrentPages();return t},getHistoryPage:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=getCurrentPages(),i=e.length;return e[i-1+t]},setConfig:function(t){var e=t.props,i=void 0===e?{}:e,n=t.config,o=void 0===n?{}:n,r=t.color,a=void 0===r?{}:r,s=t.zIndex,c=void 0===s?{}:s,l=uni.$u.deepMerge;uni.$u.config=l(uni.$u.config,o),uni.$u.props=l(uni.$u.props,i),uni.$u.color=l(uni.$u.color,a),uni.$u.zIndex=l(uni.$u.zIndex,c)}};e.default=d},"7ea9":function(t,e){t.exports="/static/images/novelReading/bookshelf_f3efe.png"},"7ec2":function(t,e,i){var n=i("7037")["default"];function o(){"use strict"; +/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */t.exports=o=function(){return e},t.exports.__esModule=!0,t.exports["default"]=t.exports;var e={},i=Object.prototype,r=i.hasOwnProperty,a=Object.defineProperty||function(t,e,i){t[e]=i.value},s="function"==typeof Symbol?Symbol:{},c=s.iterator||"@@iterator",l=s.asyncIterator||"@@asyncIterator",u=s.toStringTag||"@@toStringTag";function d(t,e,i){return Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{d({},"")}catch(A){d=function(t,e,i){return t[e]=i}}function f(t,e,i,n){var o=e&&e.prototype instanceof _?e:_,r=Object.create(o.prototype),s=new I(n||[]);return a(r,"_invoke",{value:C(t,i,s)}),r}function p(t,e,i){try{return{type:"normal",arg:t.call(e,i)}}catch(A){return{type:"throw",arg:A}}}e.wrap=f;var h={};function _(){}function v(){}function m(){}var g={};d(g,c,(function(){return this}));var b=Object.getPrototypeOf,y=b&&b(b(T([])));y&&y!==i&&r.call(y,c)&&(g=y);var x=m.prototype=_.prototype=Object.create(g);function w(t){["next","throw","return"].forEach((function(e){d(t,e,(function(t){return this._invoke(e,t)}))}))}function $(t,e){var i;a(this,"_invoke",{value:function(o,a){function s(){return new e((function(i,s){(function i(o,a,s,c){var l=p(t[o],t,a);if("throw"!==l.type){var u=l.arg,d=u.value;return d&&"object"==n(d)&&r.call(d,"__await")?e.resolve(d.__await).then((function(t){i("next",t,s,c)}),(function(t){i("throw",t,s,c)})):e.resolve(d).then((function(t){u.value=t,s(u)}),(function(t){return i("throw",t,s,c)}))}c(l.arg)})(o,a,i,s)}))}return i=i?i.then(s,s):s()}})}function C(t,e,i){var n="suspendedStart";return function(o,r){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw r;return B()}for(i.method=o,i.arg=r;;){var a=i.delegate;if(a){var s=k(a,i);if(s){if(s===h)continue;return s}}if("next"===i.method)i.sent=i._sent=i.arg;else if("throw"===i.method){if("suspendedStart"===n)throw n="completed",i.arg;i.dispatchException(i.arg)}else"return"===i.method&&i.abrupt("return",i.arg);n="executing";var c=p(t,e,i);if("normal"===c.type){if(n=i.done?"completed":"suspendedYield",c.arg===h)continue;return{value:c.arg,done:i.done}}"throw"===c.type&&(n="completed",i.method="throw",i.arg=c.arg)}}}function k(t,e){var i=e.method,n=t.iterator[i];if(void 0===n)return e.delegate=null,"throw"===i&&t.iterator["return"]&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==i&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+i+"' method")),h;var o=p(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,h;var r=o.arg;return r?r.done?(e[t.resultName]=r.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,h):r:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,h)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function O(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function I(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function T(t){if(t){var e=t[c];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,n=function e(){for(;++i=0;--n){var o=this.tryEntries[n],a=o.completion;if("root"===o.tryLoc)return i("end");if(o.tryLoc<=this.prev){var s=r.call(o,"catchLoc"),c=r.call(o,"finallyLoc");if(s&&c){if(this.prev=0;--i){var n=this.tryEntries[i];if(n.tryLoc<=this.prev&&r.call(n,"finallyLoc")&&this.prev=0;--e){var i=this.tryEntries[e];if(i.finallyLoc===t)return this.complete(i.completion,i.afterLoc),O(i),h}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var i=this.tryEntries[e];if(i.tryLoc===t){var n=i.completion;if("throw"===n.type){var o=n.arg;O(i)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,i){return this.delegate={iterator:T(t),resultName:e,nextLoc:i},"next"===this.method&&(this.arg=void 0),h}},e}t.exports=o,t.exports.__esModule=!0,t.exports["default"]=t.exports},"7f36":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.mySetStorage=e.myGetStorage=void 0;e.mySetStorage=function(t,e){uni.setStorageSync(t,e)};e.myGetStorage=function(t){return uni.getStorageSync(t)}},"7f6d":function(t,e,i){"use strict";i.r(e);var n=i("005c"),o=i("d18a");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"7fa0":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{bookTips:{type:String,default:""},bookName:{type:String,default:""},bookImage:{type:String,default:""},bookIntroduction:{type:String,default:""}},data:function(){return{}},methods:{}};e.default=n},"805f":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={sticky:{offsetTop:0,customNavHeight:0,disabled:!1,bgColor:"transparent",zIndex:"",index:""}}},"80e5":function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","read-rich-text"),style:this._$s(0,"s",this.richTextStyle),attrs:{_i:0},domProps:{innerHTML:this._s(this._$s(0,"v-html",this.richtext))}})},o=[]},8111:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uIcon:i("7b88").default,uPicker:i("4b93").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","bookRecommendList_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","bookRecommendList_header"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","_header_chapter_num"),attrs:{_i:2}},[t._v(t._$s(2,"t0-0",t._s(t.directoryCount)))]),i("view",{staticClass:t._$s(3,"sc","_header_chapter_all_list"),attrs:{_i:3},on:{click:t.handelChapterShow}},[t._v(t._$s(3,"t0-0",t._s(t.columnsLabel))),i("u-icon",{attrs:{name:"arrow-down",color:"#666666",size:"28rpx",_i:4}})],1)]),i("view",{staticClass:t._$s(5,"sc","bookRecommendList_body"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","chapter_list_box"),attrs:{_i:6}},t._l(t._$s(7,"f",{forItems:t.directory}),(function(e,n,o,r){return i("view",{key:t._$s(7,"f",{forIndex:o,key:e.id}),class:t._$s("7-"+r,"c",["_list_item"]),attrs:{_i:"7-"+r},on:{click:function(i){return t.handelDirectoryItem(e)}}},[i("view",{class:t._$s("8-"+r,"c",["_item_name",t.chapterorder==e.chapterorder?"active":""]),attrs:{_i:"8-"+r}},[t._v(t._$s("8-"+r,"t0-0",t._s(e.chaptername)))]),t._$s("9-"+r,"i",e.isvip)?i("view",{staticClass:t._$s("9-"+r,"sc","_item_chapter_lock"),attrs:{_i:"9-"+r}},[i("image",{staticClass:t._$s("10-"+r,"sc","is_image"),attrs:{_i:"10-"+r}})]):t._e()])})),0)]),t._$s(11,"i",t.commFooterFlag)?i("view",{staticClass:t._$s(11,"sc","commFooter_box"),attrs:{_i:11}},[i("CommFooter",{attrs:{_i:12}})],1):t._e(),i("u-picker",{attrs:{show:t.chapterShow,columns:t.columns,keyName:"label",_i:13},on:{confirm:t.confirmChapterPicker,cancel:t.cancelChapterPicker}})],1)},r=[]},8138:function(t,e,i){"use strict";i.r(e);var n=i("08a9"),o=i("163b");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"de88bf88",null,!1,n["a"],void 0);e["default"]=s.exports},8180:function(t,e,i){"use strict";i.r(e);var n=i("254c"),o=i("475f");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"117262d2",null,!1,n["a"],void 0);e["default"]=s.exports},"81ee":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{data:{type:Array,default:function(){return new Array}},vertical:{type:Boolean,default:!1},current:{type:Number,default:0},type:{type:String,default:"real"},duration:{type:Number,default:100},sliderFault:{type:Number,default:20},bgColor:{type:String,default:"#fcd281"},unableClickPage:{type:Boolean,default:!1},pulldownable:{type:Boolean,default:!1},pulldownHeight:{type:Number,default:80},pullupable:{type:Boolean,default:!1},pullupHeight:{type:Number,default:80}},computed:{dataSync:function(){var t=[];return this.prevIndex>=0&&t.push(this.prevIndex),t.push(this.currentIndex),this.nextIndexthis.count-1&&this.count>2?0:this.currentIndex+1},prevIndex:function(){return this.currentIndex-1<0&&this.count>2?this.count-1:this.currentIndex-1},count:function(){return this.data.length},flipProp:function(){return{vertical:this.vertical,pulldownable:this.pulldownable,pullupable:this.pullupable,pulldownHeight:this.pulldownHeight,pullupHeight:this.pullupHeight,loadingState:this.loadingState,duration:this.duration,unableClickPage:this.unableClickPage,nextIndex:this.nextIndex,prevIndex:this.prevIndex,currentIndex:this.currentIndex,type:this.type,count:this.count,flipTo:this.flipTo,sliderFault:this.sliderFault,translate:this.translate}},pulldownStyle:function(){return this.vertical?{left:0,right:0,top:0,height:this.pulldownHeight+"px",transform:this.translate+"(-"+this.pulldownHeight+"px)"}:{left:0,top:0,bottom:0,width:this.pulldownHeight+"px",transform:this.translate+"(-"+this.pulldownHeight+"px)"}},pullupStyle:function(){return this.vertical?{left:0,right:0,bottom:0,height:this.pullupHeight+"px",transform:this.translate+"("+this.pullupHeight+"px)"}:{right:0,top:0,bottom:0,width:this.pullupHeight+"px",transform:this.translate+"("+this.pullupHeight+"px)"}},shadowStyle:function(){return this.vertical?{bottom:0,right:0,left:0,height:0}:{top:0,bottom:0,right:0,width:0}},translate:function(){return this.vertical?"translateY":"translateX"},fullSize:function(){return this.vertical?"3050rpx":"750rpx"}},data:function(){return{refreshing:!1,currentIndex:0,flipTo:0,loadingState:""}},created:function(){this.currentIndex=this.current},methods:{handleFlipChange:function(t){this.currentIndex=t>0?this.currentIndex+t>this.count-1?0:this.currentIndex+t:this.currentIndex+t<0?this.count-1:this.currentIndex+t,this.$emit("change",{current:this.currentIndex,detail:this.data[this.currentIndex]}),this.$emit("update:current",this.currentIndex)},pullingRefresh:function(t){var e=this;this.$emit(t,(function(t){e.loadingState=t}))},flipToNext:function(){this.flipTo=0,this.$nextTick((function(){this.flipTo=1}))},flipToPrev:function(){this.flipTo=0,this.$nextTick((function(){this.flipTo=-1}))},refresh:function(){this.refreshing=!0,this.$nextTick((function(){this.currentIndex=this.current,this.refreshing=!1}))},resetLoading:function(){this.loadingState=""}},watch:{current:function(t){this.currentIndex=t}}};e.default=n},"820a":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{type:{type:String,default:uni.$u.props.text.type},show:{type:Boolean,default:uni.$u.props.text.show},text:{type:[String,Number],default:uni.$u.props.text.text},prefixIcon:{type:String,default:uni.$u.props.text.prefixIcon},suffixIcon:{type:String,default:uni.$u.props.text.suffixIcon},mode:{type:String,default:uni.$u.props.text.mode},href:{type:String,default:uni.$u.props.text.href},format:{type:[String,Function],default:uni.$u.props.text.format},call:{type:Boolean,default:uni.$u.props.text.call},openType:{type:String,default:uni.$u.props.text.openType},bold:{type:Boolean,default:uni.$u.props.text.bold},block:{type:Boolean,default:uni.$u.props.text.block},lines:{type:[String,Number],default:uni.$u.props.text.lines},color:{type:String,default:uni.$u.props.text.color},size:{type:[String,Number],default:uni.$u.props.text.size},iconStyle:{type:[Object,String],default:uni.$u.props.text.iconStyle},decoration:{type:String,default:uni.$u.props.text.decoration},margin:{type:[Object,String,Number],default:uni.$u.props.text.margin},lineHeight:{type:[String,Number],default:uni.$u.props.text.lineHeight},align:{type:String,default:uni.$u.props.text.align},wordWrap:{type:String,default:uni.$u.props.text.wordWrap}}};e.default=n},"825b":function(t,e,i){"use strict";i.r(e);var n=i("d68e"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},8266:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("9523")),r=n(i("d545")),a=n(i("6e4f")),s=n(i("2c64")),c=i("1cef");function l(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function u(t){for(var e=1;e\u7b2c1\u7ae0 \u773c\u775b\u7a81\u7136\u778e\u4e86

\u6625\u5929\u7684\u9633\u5149\u603b\u662f\u5f88\u6696\uff0c\u5e26\u7740\u9189\u4eba\u7684\u9999\u6c14\u3002

\u827e\u5609\u4fbf\u662f\u62b1\u7740\u8e0f\u9752\u7684\u5ff5\u5934\u6765\u5230\u4e86\u5fae\u6e56\u8fb9\u513f\u4e0a\uff0c\u7f8e\u540d\u5176\u66f0\uff0c\u5bfb\u627e\u751f\u6d3b\u7684\u771f\u8c1b\u3002

\u968f\u610f\u7684\u627e\u4e86\u4e00\u4e2a\u957f\u51f3\u5750\u4e0b\uff0c\u5979\u4ece\u5305\u91cc\u7ffb\u51fa\u4e00\u672c\u7565\u5e26\u6587\u827a\u7684\u6742\u5fd7\u300a\u54f2\u601d\u300b\uff0c\u7136\u540e\u7f8e\u7f8e\u7684\u770b\u4e86\u8d77\u6765\u3002

\u201c\u827e\u5609\uff0c\u6211\u4eec\u8d70\u5230\u54ea\uff0c\u4f60\u5c31\u8ddf\u5230\u54ea\uff0c\u4f60\u600e\u4e48\u8fd9\u4e48\u8d31\u3002\u201d

\u827e\u5609\u95fb\u8a00\u624b\u6307\u4e0d\u53d7\u63a7\u5236\u7684\u62bd\u4e86\u4e00\u4e0b\uff0c\u8fd9\u4e2a\u58f0\u97f3\u8fd8\u771f\u662f\u719f\u6089\u3002\u5979\u5316\u6210\u7070\u90fd\u8bb0\u5f97\u3002

\u7c73\u601d\u601d\uff0c\u5979\u548c\u5979\u7537\u53cb\u7684\u5c0f\u4e09\uff0c\u4e0d\u5bf9\uff0c\u51c6\u786e\u7684\u8bf4\u662f\u524d\u7537\u53cb\u3002

\u628a\u6742\u5fd7\u6536\u56de\u5230\u5305\u5305\u91cc\u9762\uff0c\u827e\u5609\u8f6c\u8eab\u5c31\u8d70\u3002

\u72d7\u54ac\u4eba\u4e00\u53e3\uff0c\u4eba\u603b\u4e0d\u80fd\u54ac\u56de\u53bb\u5427\u3002

\u201c\u5c11\u5728\u8fd9\u88c5\u6a21\u4f5c\u6837\u7684\uff0c\u90fd\u5206\u624b\u4e00\u4e2a\u6708\u4e86\uff0c\u8fd8\u8ddf\u7740\u660a\u660a\u3002\u600e\u4e48\uff1f\u8fd8\u60f3\u5df4\u7740\u660a\u660a\u4e48\uff1f\u201d\u7c73\u601d\u601d\u7d27\u7d27\u7684\u633d\u7740\u9648\u660a\u7684\u624b\u81c2\uff0c\u751a\u81f3\u628a\u80f8\u812f\u90fd\u63c9\u5728\u4e86\u4ed6\u7684\u80f3\u818a\u4e0a\uff0c\u8bed\u6c14\u4e0d\u5584\u3002

\u767d\u4e86\u8fd9\u5bf9\u4e0d\u5acc\u4e22\u4eba\u7684\u7537\u5973\u4e00\u773c\uff0c\u827e\u5609\u540c\u6837\u4e0d\u5c51\uff1a\u201c\u4f60\u6709\u88ab\u5bb3\u5984\u60f3\u75c7\u554a\uff1f\u201d

\u5f00\u73a9\u7b11\uff0c\u597d\u9a6c\u4e0d\u5403\u56de\u5934\u8349\uff0c\u66f4\u4f55\u51b5\u8fd8\u662f\u4e00\u628a\u5012\u4eba\u80c3\u53e3\u7684\u6e23\u8349\uff01

\u201c\u5609\u5609\uff0c\u6211\u77e5\u9053\u4f60\u4e00\u76f4\u5bf9\u601d\u601d\u803f\u803f\u4e8e\u6000\uff0c\u4f46\u73b0\u5728\u6211\u4eec\u4e24\u4e2a\u633a\u5e78\u798f\u7684\u3002\u4f60\u522b\u603b\u662f\u8ddf\u7740\u6211\u4eec\u4e86\uff0c\u597d\u4e0d\u597d\u3002\u201d\u9648\u660a\u81ea\u4ee5\u4e3a\u9177\u7684\u628a\u53e6\u4e00\u53ea\u624b\u63d2\u8fdb\u88e4\u515c\uff0c\u9762\u4e0a\u6545\u610f\u4e00\u526f\u597d\u8bf4\u597d\u5546\u91cf\u7684\u8868\u60c5\uff1a\u201c\u90fd\u662f\u8fc7\u53bb\u5f0f\u4e86\uff0c\u4f60\u5c31\u7b97\u518d\u559c\u6b22\u6211\uff0c\u4e5f\u4e0d\u80fd\u6253\u6270\u6211\u6b63\u5e38\u7684\u751f\u6d3b\u554a\u3002\u201d

\u201c\u4f60\u4fe9\u90fd\u6709\u75c5\u5427\uff0c\u9664\u4e86\u4eca\u5929\uff0c\u6211\u4ec0\u4e48\u65f6\u5019\u8fd8\u8fd9\u4e48\u5012\u9709\u7684\u89c1\u8fc7\u4f60\u4eec\u3002\u201d

\u827e\u5609\u7ec8\u4e8e\u65e0\u6cd5\u6de1\u5b9a\u4e86\uff0c\u5979\u4ee5\u524d\u600e\u4e48\u5c31\u773c\u778e\u6210\u8fd9\u6837\uff0c\u559c\u6b22\u8fd9\u4e48\u4e2a\u4e09\u70ae\uff01

\u770b\u827e\u5609\u4e0d\u627f\u8ba4\uff0c\u7c73\u601d\u601d\u51b7\u7b11\u4e00\u58f0\uff0c\u773c\u775b\u4e2d\u5374\u6ee1\u662f\u5f97\u610f\u4e4b\u8272\u3002

\u4fa7\u5934\u770b\u4e86\u4e00\u773c\u9648\u660a\uff0c\u5979\u6545\u610f\u7528\u4e00\u79cd\u751c\u5f97\u53d1\u817b\u7684\u58f0\u97f3\u8bf4\u9053\uff1a\u201c\u603b\u6709\u4e00\u79cd\u4eba\u89c1\u4e0d\u5f97\u522b\u4eba\u8fc7\u7684\u6bd4\u81ea\u5df1\u597d\uff0c\u660a\u660a\uff0c\u522b\u548c\u5979\u751f\u6c14\u4e86\uff0c\u5979\u633a\u53ef\u601c\u7684\u3002\u201d

\u201c\u653e\u5c41\uff01\u201d\u827e\u5609\u4e00\u628a\u4e22\u6389\u624b\u4e2d\u7684\u5305\u5305\uff0c\u5230\u5e95\u662f\u8c01\u89c1\u4e0d\u5f97\u522b\u4eba\u8fc7\u7684\u6bd4\u81ea\u5df1\u597d\uff1f

\u5979\u6307\u7740\u7c73\u601d\u601d\u7684\u624b\u6307\u5934\u90fd\u5728\u4e0d\u4f4f\u7684\u4e71\u98a4\uff1a\u201c\u7c73\u601d\u601d\uff0c\u4f60\u522b\u4ee5\u4e3a\u4f60\u662f\u5973\u7684\uff0c\u6211\u5c31\u4e0d\u6562\u63cd\u4f60\u4e2b\u7684\uff01\u201d

\u9648\u660a\u4f3c\u4e4e\u6ca1\u60f3\u5230\u524d\u5973\u53cb\u8fd9\u4e48\u4e0d\u914d\u5408\uff0c\u6389\u4e86\u8138\u5b50\uff0c\u4ed6\u4ed7\u7740\u81ea\u5df1\u4e00\u7c73\u516b\u516d\u7684\u5927\u4e2a\u513f\uff0c\u8bed\u6c14\u51f6\u72e0\uff1a\u201c\u827e\u5609\uff0c\u4f60\u522b\u7ed9\u8138\u4e0d\u8981\u3002\u7ed9\u4f60\u4e00\u5206\u949f\uff0c\u73b0\u5728\u9a6c\u4e0a\u6d88\u5931\u5728\u601d\u601d\u9762\u524d\u3002\u201d

\u201c\u9ebb\u86cb\uff01\u201d

\u827e\u5609\u6012\u6781\u53cd\u7b11\uff0c\u8896\u5b50\u4e00\u64b8\uff0c\u548c\u4ed6\u4eec\u62fc\u4e86\uff01\uff01\uff01

\u201c\u827e\u5609\uff01\u4f60\u5c31\u4e3a\u4e86\u8fd9\u4e48\u4e2a\u4e1c\u897f\u62d2\u7edd\u6211\uff01\u201d

\u4f4e\u6c89\u5374\u53c8\u5939\u6742\u6012\u6c14\u7684\u55d3\u97f3\u8ba9\u7c73\u601d\u601d\u77ac\u95f4\u5c0f\u9e7f\u4e71\u649e\uff0c\u987a\u7740\u58f0\u97f3\u7684\u65b9\u5411\u77a7\u53bb\uff0c\u7c73\u601d\u601d\u4e0b\u610f\u8bc6\u7684\u6254\u6389\u9648\u660a\u7684\u80f3\u818a\uff0c\u4f4e\u593445\u5ea6\u89d2\u3002

\u9648\u660a\u7684\u4e2a\u5934\u4e0d\u7b97\u77ee\u4e86\uff0c\u4f46\u6765\u4eba\u9690\u9690\u6bd4\u9648\u660a\u8fd8\u8981\u9ad8\u51fa\u4e00\u4e2a\u8111\u74dc\u5c16\u513f\u3002

\u4fee\u957f\u7684\u8eab\u8eaf\u5728\u9ed1\u8272\u897f\u670d\u7684\u5305\u88f9\u4e0b\u522b\u663e\u5e05\u6c14\uff0c\u886c\u4e0a\u90a3\u53cc\u5e7d\u6df1\u53c8\u9690\u542b\u6012\u6c14\u7684\u7738\u5b50\uff0c\u4ee5\u53ca\u9738\u9053\u7684\u8bed\u6c14\u3002

\u6700\u91cd\u8981\u7684\u662f\uff0c\u4ed6\u8155\u4e0a\u90a3\u6b3e\u4ef7\u503c\u4e03\u767e\u4e07\u7684\u6c5f\u8bd7\u4e39\u987f\u4f20\u627f\u7cfb\u5217\u7684\u624b\u8868\uff01\uff01\uff01

\u7c73\u601d\u601d\u77ac\u95f4\u89c9\u5f97\u9648\u660a\u8fd9\u4e2a\u9ad8\u4e2d\u8001\u5e08\u5f31\u7206\u4e86\uff01

\u633a\u4e86\u633a\u5f15\u4ee5\u4e3a\u50b2\u7684\u80f8\u812f\uff0c\u5979\u9762\u4e0a\u4e00\u526f\u542b\u7f9e\u5e26\u602f\u3002

\u827e\u5609\u6b63\u6253\u7b97\u62fc\u547d\u5462\uff0c\u7a81\u7136\u542c\u89c1\u8fd9\u4e48\u4e00\u58f0\u6012\u543c\uff0c\u7709\u5934\u4e00\u8df3\uff0c\u5979\u5fcd\u4e0d\u4f4f\u8ff7\u832b\u56de\u5934\uff1a\u201c\u4f60\u8d35\u59d3\uff1f\u201d

\u201c\u767d\uff01\u9a86\uff01\u6b4c\uff01\u201d

\u90a3\u58f0\u97f3\u597d\u50cf\u662f\u4ece\u7259\u7f1d\u91cc\u6324\u51fa\u6765\u7684\u4e00\u822c\uff0c\u6bcf\u4e2a\u5b57\u90fd\u54ac\u7259\u5207\u9f7f\uff0c\u6068\u4e0d\u5f97\u628a\u5979\u751f\u541e\u6d3b\u5265\u3002

\u7f29\u4e86\u7f29\u8116\u5b50\uff0c\u827e\u5609\u9762\u4e0a\u5806\u8d77\u5ba2\u5957\u7684\u7b11\u5bb9\uff1a\u201c\u60a8\u662f\uff1f\u201d

\u767d\u9752\u5b87\u6068\u4e0d\u5f97\u4eb2\u624b\u6390\u6b7b\u8fd9\u4e2a\u5973\u4eba\uff01\u64a9\u8d77\u4e86\u706b\u5c31\u5f00\u6e9c\uff0c\u5f53\u4ed6\u662f\u4ec0\u4e48\u4e86\uff01

\u201c\u767d\u9752\u5b87\u3002\u201d\u8584\u5507\u8f7b\u542f\uff0c\u4ed6\u6545\u610f\u91cd\u91cd\u7684\u8bf4\u51fa\u81ea\u5df1\u7684\u540d\u5b57\uff0c\u7136\u540e\u7b49\u7740\u9762\u524d\u4eba\u7684\u53cd\u5e94\u3002

\u4e00\u79d2\u949f\uff0c\u4e24\u79d2\u949f\uff0c\u4e09\u79d2\u949f\u2026\u2026

\u827e\u5609\u7728\u5df4\u7728\u5df4\u773c\u775b\uff0c\u5979\u4e0d\u8bb0\u5f97\u8ba4\u8bc6\u8fd9\u4e48\u4e2a\u5e05\u54e5\u554a\u3002\u6c89\u9ed8\u826f\u4e45\uff0c\u5979\u8bd5\u63a2\u5f00\u53e3\uff1a\u201c\u60a8\u662f\u4e0d\u662f\u8ba4\u9519\u4eba\u4e86\uff1f\u201d

\u767d\u9752\u5b87\u5251\u7709\u4e00\u6311\uff0c\u795e\u60c5\u4f3c\u7b11\u975e\u7b11\uff1a\u201c\u4f60\u4e0d\u53eb\u827e\u5609\uff1f\u201d

\u201c\u53eb\u2026\u2026\u201d

\u201c\u5403\u5e72\u62b9\u51c0\u5c31\u5f00\u6e9c\uff0c\u4f60\u5f53\u6211\u662f\u4ec0\u4e48\uff1f\u201d

\u201c\uff01\uff01\uff01\u201d\u827e\u5609\u795e\u8272\u60ca\u6050\u7684\u77aa\u7740\u9762\u524d\u7684\u7537\u4eba\uff0c\u8bed\u6c14\u6bd4\u521a\u521a\u8fd8\u8981\u65e0\u8f9c\uff1a\u201c\u6211\u90fd\u4e0d\u8ba4\u8bc6\u4f60\uff0c\u5403\u6ce5\u7164\u554a\uff01\u201d

\u7c73\u601d\u601d\u5374\u77ac\u95f4\u660e\u767d\u4e86\u600e\u4e48\u56de\u4e8b\u3002

\u77a7\u7740\u4e00\u526f\u9053\u8c8c\u5cb8\u7136\u7684\u6837\u5b50\uff0c\u6ca1\u60f3\u5230\u4e5f\u5b66\u4eba\u5bb6\u4e00\u591c\u60c5\u3002

\u201c\u5466\u3002\u201d\u7c73\u601d\u601d\u6487\u4e86\u6487\u5634\uff0c\u8bf4\u8bdd\u4e5f\u9178\u6e9c\u6e9c\u7684\uff1a\u201c\u6ca1\u60f3\u5230\u4f60\u672c\u4e8b\u4e0d\u5c0f\u554a\uff0c\u8fd9\u624d\u521a\u548c\u660a\u660a\u5206\u624b\uff0c\u5c31\u508d\u4e0a\u5927\u6b3e\u4e86\u3002\u201d

\u9648\u660a\u867d\u7136\u4e0d\u77e5\u9053\u9762\u524d\u8fd9\u4e2a\u770b\u8d77\u6765\u6bd4\u81ea\u4e2a\u513f\u8fd8\u5c0f\u7684\u7537\u4eba\u662f\u4e0d\u662f\u5927\u6b3e\uff0c\u4e0d\u8fc7\u4ed6\u660e\u663e\u6bd4\u81ea\u5df1\u5e05\u3002\u8fd9\u79cd\u611f\u89c9\u8ba9\u4ed6\u5f88\u4e0d\u723d\uff1a\u201c\u827e\u5609\uff0c\u6211\u6ca1\u60f3\u5230\u4f60\u7adf\u7136\u662f\u8fd9\u79cd\u5973\u4eba\uff01\u201d

\u201c\u5973\u4eba\u4f60\u4e2a\u7403\uff01\u201d\u827e\u5609\u6c14\u7684\u5c0f\u8138\u901a\u7ea2\uff1a\u201c\u4f60\u8fde\u817f\u90fd\u5288\u4e86\uff0c\u6765\u6562\u6765\u6307\u8d23\u6211\uff01\u201d

\u767d\u9752\u5b87\u773c\u775b\u5fae\u772f\uff0c\u521a\u624d\u4ed6\u53ea\u89c9\u5f97\u8fd9\u4e2a\u4eba\u8bf4\u8bdd\u96be\u542c\uff0c\u8fd8\u6ca1\u6765\u5f97\u53ca\u591a\u5173\u6ce8\u8fd9\u4e2a\u4eba\uff0c\u73b0\u5728\u8fd8\u5927\u8a00\u4e0d\u60ed\u7684\u8bf4\u8fd9\u79cd\u9b3c\u8bdd\u3002

\u201c\u6211\u548c\u601d\u601d\u662f\u771f\u5fc3\u76f8\u7231\uff0c\u4f60\u8fd9\u53eb\u4ec0\u4e48\uff1f\u4f60\u8fd9\u662f\u4e00\u591c\u60c5\uff01\u201d

\u9648\u660a\u4e00\u8138\u7684\u75db\u5fc3\uff0c\u6068\u4e0d\u5f97\u7acb\u523b\u548c\u827e\u5609\u5212\u6e05\u754c\u9650\u3002

\u827e\u5609\u6c14\u7684\u773c\u524d\u53d1\u9ed1\uff0c\u773c\u77a7\u7740\u5468\u56f4\u6307\u6307\u70b9\u70b9\u7684\u4eba\u8d8a\u6765\u8d8a\u591a\uff0c\u5979\u6068\u4e0d\u5f97\u548c\u9648\u660a\u540c\u5f52\u4e8e\u5c3d\uff01

\u201c\u8c08\u604b\u7231\u671f\u95f4\u5288\u817f\u7684\u4eba\u9053\u5fb7\u66f4\u9ad8\u5c1a\u4e48\uff1f\u201d\u767d\u9752\u5b87\u51b7\u7b11\u4e00\u58f0\uff0c\u659c\u7740\u773c\u77a7\u7740\u9762\u524d\u5b9e\u5728\u4e0d\u5165\u6d41\u7684\u4e24\u4eba\u3002

\u201c\u5443\uff1f\u201d\u9648\u660a\u6ca1\u60f3\u5230\u8fd9\u4e2a\u7537\u4eba\u4f1a\u5728\u8fd9\u65f6\u5019\u633a\u8eab\u800c\u51fa\uff0c\u4e00\u65f6\u95f4\u6709\u4e9b\u6014\u5fea\uff0c\u4e0d\u8fc7\u60f3\u8d77\u6765\u7c73\u601d\u601d\u8fd8\u5728\u8eab\u4fa7\uff0c\u4ed6\u600e\u4e48\u7740\u4e5f\u4e0d\u80fd\u670d\u8f6f\uff1a\u201c\u6211\u4eec\u7684\u4e8b\u513f\uff0c\u4f60\u5c11\u7ba1\u3002\u201d

\u201c\u6211\u4eec\u7684\u4e8b\u513f\uff0c\u4f60\u5c11\u7ba1\uff01\u201d\u827e\u5609\u4e00\u628a\u633d\u4f4f\u767d\u9752\u5b87\u7684\u80f3\u818a\uff0c\u5b9b\u5982\u4e00\u53ea\u9a84\u50b2\u7684\u5b54\u96c0\uff1a\u201c\u7ba1\u597d\u4f60\u81ea\u5df1\u7684\u4e8b\u513f\u5c31\u884c\u4e86\u3002\u201d

\u767d\u9752\u5b87\u53d1\u89c9\u8eab\u4fa7\u5973\u5b69\u513f\u7684\u52a8\u4f5c\uff0c\u5507\u89d2\u4e0d\u6613\u5bdf\u89c9\u7684\u5f2f\u4e86\u5f2f\uff0c\u5b66\u7740\u827e\u5609\u7684\u8bed\u6c14\uff0c\u767d\u9752\u5b87\u4f38\u624b\u6478\u4e86\u6478\u81c2\u5f2f\u91cc\u7684\u90a3\u53ea\u624b\uff1a\u201c\u636e\u8bf4\u5f53\u5c0f\u4e09\u662f\u5bb9\u6613\u5f62\u6210\u4e60\u60ef\u7684\uff0c\u597d\u5fc3\u5949\u529d\u4e00\u53e5\uff0c\u5c0f\u5fc3\u5934\u4e0a\u957f\u7eff\u3002\u201d

\u201c\u4f60\u4eec\uff01\u201d\u9648\u660a\u6c14\u7684\u6574\u5f20\u8138\u715e\u767d\uff0c\u534a\u5929\u624d\u618b\u51fa\u4e00\u53e5\u8bdd\uff1a\u201c\u601d\u601d\u624d\u4e0d\u4f1a\uff01\u201d

\u201c\u662f\u4e48\uff1f\u201d\u5251\u7709\u4e00\u6311\uff0c\u767d\u9752\u5b87\u7738\u5b50\u5728\u7c73\u601d\u601d\u8eab\u4e0a\u4e00\u626b\u800c\u8fc7\u3002

\u4f46\u4ec5\u4ec5\u56e0\u4e3a\u8fd9\u4e48\u4e00\u626b\uff0c\u7c73\u601d\u601d\u4fbf\u5bb3\u7f9e\u7684\u633a\u4e86\u633a\u80f8\u3002

\u55ef\u2026\u2026\u636e\u8bf4\u7537\u4eba\u90fd\u559c\u6b22\u80f8\u5927\u7684\u3002

\u8ba5\u8bee\u4e00\u7b11\uff0c\u767d\u9752\u5b87\u8bed\u8c03\u90fd\u6ca1\u6709\u8d77\u4f0f\uff1a\u201c\u521a\u624d\u5979\u8fd8\u633d\u7740\u4f60\u5462\uff0c\u600e\u4e48\u8fd9\u4e48\u5feb\u5c31\u56e0\u4e3a\u6211\u770b\u4e86\u4e00\u773c\uff0c\u5c31\u671d\u6211\u629b\u5a9a\u773c\u513f\u4e86\uff1f\u201d\u8bf4\u9053\u8fd9\u91cc\uff0c\u4ed6\u4e0d\u7406\u4f1a\u9648\u660a\u96be\u770b\u7684\u8138\u8272\uff0c\u8f6c\u5934\u671b\u7740\u827e\u5609\uff0c\u4e00\u8138\u9119\u5937\u9053\uff1a\u201c\u4f60\u4e4b\u524d\u7684\u773c\u5149\u4f1a\u4e0d\u4f1a\u592a\u5dee\u70b9\u4e86\uff1f\u201d

\u201c\u8c01\u8bf4\u4e0d\u662f\u5462\u3002\u201d\u827e\u5609\u4f9d\u65e7\u633d\u7740\u767d\u9752\u5b87\uff0c\u4f46\u5979\u7684\u7f8e\u76ee\u5374\u4e00\u76f4\u76ef\u7740\u5bf9\u9762\u7684\u9648\u660a\u3002

\u5c55\u989c\u4e00\u7b11\uff0c\u5979\u8bed\u8c03\u6545\u4f5c\u60c6\u6005\uff1a\u201c\u8c01\u77e5\u9053\u600e\u4e48\u56de\u4e8b\uff0c\u773c\u775b\u7a81\u7136\u5c31\u778e\u4e86\u3002\u201d


"},{title:"\u7b2c2\u7ae0 \u5c31\u8fd9\u6837\u4ea4\u5f80\u4e86\uff1f",chapter:1,isStart:!1,isEnd:!1,id:"1",sub:"\u7b2c2\u7ae0 \u5c31\u8fd9\u6837\u4ea4\u5f80\u4e86\uff1f",content:"

\u7b2c2\u7ae0 \u5c31\u8fd9\u6837\u4ea4\u5f80\u4e86\uff1f


\u201c\u827e\u5609\uff01\u6ca1\u60f3\u5230\u4f60\u8fd9\u4e48\u7cdf\u8e4b\u81ea\u5df1\uff0c\u548c\u7537\u4eba...\u6211\u771f\u540e\u6094\u2026\u2026\u201d

\u201c\u6eda\u86cb\uff01\u201d\u827e\u5609\u61d2\u5f97\u518d\u548c\u9648\u660a\u5e9f\u8bdd\uff0c\u7231\u4e0a\u8fd9\u4e48\u4e00\u4e2a\u6e23\u6e23\uff0c\u662f\u5979\u5f53\u521d\u7741\u773c\u778e\u3002

\u4e0d\u8010\u70e6\u7684\u6012\u543c\u4e00\u58f0\uff0c\u5979\u4e1d\u6beb\u4e0d\u5728\u4e4e\u81ea\u5df1\u7684\u5f62\u8c61\u3002\u6545\u610f\u51b2\u767d\u9752\u5b87\u751c\u751c\u7684\u7b11\u4e86\u7b11\uff1a\u201c\u4eb2\u7231\u7684\uff0c\u6211\u4eec\u8d70\u5427\u3002\u201d

\u7c73\u601d\u601d\u89c1\u767d\u9752\u5b87\u90fd\u6ca1\u6709\u6b63\u773c\u77a7\u5979\u4e00\u773c\uff0c\u800c\u4e14\u521a\u521a\u8fd8\u7ed9\u4e86\u5979\u96be\u582a\uff0c\u5979\u8138\u4e0a\u7684\u6028\u6bd2\u518d\u4e5f\u5fcd\u4e0d\u4f4f\uff1a\u201c\u4f60\u8fd8\u771f\u4e0d\u8981\u8138\uff0c\u508d\u5927\u6b3e\uff01\u201d

\u827e\u5609\u5e76\u4e0d\u751f\u6c14\uff0c\u518d\u5f80\u767d\u9752\u5b87\u8eab\u8fb9\u51d1\u4e86\u51d1\uff0c\u5979\u7b11\u5bb9\u6b20\u63cd\uff1a\u201c\u53ef\u60dc\u67d0\u4eba\u4e0d\u4f46\u4e0d\u8981\u8138\uff0c\u8fde\u80f8\u90fd\u8981\u633a\u51fa\u53bb\u4e86\uff0c\u4e5f\u6ca1\u508d\u4e0a\u5927\u6b3e\uff01\u201d

\u201c\u4f60\u2026\u2026\u201d

\u201c\u4eb2\u7231\u7684~\u201d\u827e\u5609\u6ee1\u610f\u7684\u770b\u7740\u8fd9\u4e2a\u957f\u5f97\u786e\u5b9e\u82f1\u4fca\u7684\u7537\u4eba\uff1a\u201c\u6211\u4eec\u8d70\u5427\u3002\u201d

\u201c\u597d\u3002\u201d

\u6700\u540e\u770b\u4e86\u4e00\u773c\u8138\u8272\u5df2\u7ecf\u4e0d\u80fd\u7528\u96be\u770b\u6765\u5f62\u5bb9\u7684\u4e24\u4e2a\u4eba\uff0c\u4ed6\u633d\u7740\u827e\u5609\u671d\u81ea\u5df1\u7684\u5170\u535a\u57fa\u5c3c\u8d70\u53bb\u3002

\u2026\u2026

\u8f66\u4e0a\u3002

\u827e\u5609\u4e00\u8138\u611f\u52a8\u7684\u671b\u7740\u9a7e\u9a76\u5ea7\u4e0a\u7684\u7537\u4eba\u3002

\u8fd9\u662f\u4e0a\u5929\u6d3e\u6765\u62ef\u6551\u4f17\u751f\u4e8e\u6c34\u706b\u7684\u5929\u4f7f\u4e48\uff01

\u201c\u90a3\u4e2a\u5565\u2026\u2026\u8c22\u8c22\u4f60\uff0c\u771f\u7684\u975e\u5e38\u611f\u8c22\u3002\u201d\u827e\u5609\u7728\u5df4\u7728\u5df4\u773c\u775b\uff0c\u8868\u60c5\u771f\u8bda\uff1a\u201c\u5982\u679c\u4e0d\u662f\u4f60\u5e2e\u6211\uff0c\u4eca\u5929\u6211\u80af\u5b9a\u5f97\u548c\u4ed6\u4eec\u540c\u5f52\u4e8e\u5c3d\u3002\u201d

\u767d\u9752\u5b87\u7709\u5934\u5fae\u76b1\uff0c\u6ca1\u6709\u8bf4\u8bdd\u3002

\u201c\u5e05\u54e5\uff0c\u770b\u5728\u4f60\u8fd9\u4e48\u6709\u540c\u60c5\u5fc3\u7684\u4efd\u4e0a\uff0c\u6211\u8bf7\u4f60\u5403\u996d\u5427\uff0c\u7b97\u662f\u8868\u8fbe\u6211\u7531\u8877\u7684\u8c22\u610f\u3002\u201d

\u767d\u9752\u5b87\u7709\u5934\u518d\u76b1\uff0c\u8fd8\u662f\u6ca1\u6709\u8bf4\u8bdd\u3002

\u201c\u5e05\u54e5\uff1f\u201d\u827e\u5609\u6709\u4e9b\u7591\u60d1\uff0c\u521a\u521a\u8fd8\u80fd\u8bf4\u8bdd\u5462\uff0c\u4e5f\u4e0d\u662f\u54d1\u5df4\u5440\u3002\u4ed4\u7ec6\u601d\u7d22\u4e86\u4e00\u4e0b\u773c\u524d\u7537\u4eba\u7684\u540d\u5b57\uff0c\u5979\u8bd5\u63a2\u5f00\u53e3\uff1a\u201c\u767d\u9752\u5b87\uff1f\u201d

\u767d\u9752\u5b87\u7ec8\u4e8e\u5fcd\u4e0d\u4f4f\u4e86\uff0c\u4fa7\u5934\u4e0d\u60a6\u7684\u671b\u7740\u526f\u9a7e\u9a76\u5ea7\u7684\u5973\u5b69\u513f\uff0c\u4ed6\u8bed\u6c14\u4f4e\u6c89\uff1a\u201c\u4f60\u662f\u771f\u4e0d\u8bb0\u5f97\u6211\u4e86\uff0c\u8fd8\u662f\u5728\u88c5\u7cca\u6d82\uff1f\u201d

\u201c\u6211\uff1f\u201d\u827e\u5609\u95fb\u8a00\u4ed4\u7ec6\u60f3\u4e86\u534a\u5929\uff0c\u8fd8\u662f\u65e0\u8f9c\u7684\u6447\u4e86\u6447\u5934\uff1a\u201c\u4f60\u989c\u503c\u8fd9\u4e48\u51fa\u4f17\uff0c\u6211\u8981\u662f\u8ba4\u8bc6\u4f60\uff0c\u600e\u4e48\u53ef\u80fd\u5fd8\u4e86\u3002\u201d

\u201c\u827e\u5609\uff01\u201d\u767d\u9752\u5b87\u95fb\u8a00\u989d\u5934\u9752\u7b4b\u66b4\u8d77\uff0c\u5f3a\u81ea\u5fcd\u8010\u597d\u4e45\uff0c\u4ed6\u624d\u5e73\u7f13\u4e0b\u6765\uff0c\u8f7b\u8212\u4e86\u4e00\u53e3\u6c14\uff0c\u4ed6\u7f13\u7f13\u5410\u51fa\u56db\u4e2a\u5b57\uff1a\u201c\u591c\u8272\u9152\u5427\u3002\u201d

\u201c\u591c\u8272\u9152\u5427\uff1f\u201d\u90a3\u4e2a\u8ff7\u7cca\u7684\u5973\u5b69\u513f\u8138\u988a\u77ac\u95f4\u6da8\u5f97\u901a\u7ea2\uff0c\u6068\u4e0d\u5f97\u627e\u4e2a\u5730\u7f1d\u94bb\u8fdb\u53bb\u3002

\u88ab\u5288\u817f\u540e\uff0c\u827e\u5609\u5fc3\u60c5\u4e00\u5ea6\u5f88\u4e0d\u597d\uff0c\u6768\u598d\u513f\u4f5c\u4e3a\u5979\u7684\u6b7b\u515a\uff0c\u81ea\u7136\u8981\u5e26\u5979\u53d1\u6cc4\u4e00\u4e0b\u5fc3\u4e2d\u7684\u90c1\u95f7\u3002

\u5979\u548c\u6768\u598d\u513f\u5230\u9152\u5427\u7684\u65f6\u5019\uff0c\u56e0\u4e3a\u65f6\u95f4\u8fd8\u65e9\uff0c\u4eba\u4e0d\u662f\u5f88\u591a\uff0c\u5979\u6709\u4e9b\u653e\u677e\uff0c\u518d\u52a0\u4e0a\u7b2c\u4e00\u6b21\u6765\uff0c\u4e5f\u96be\u514d\u65b0\u5947\uff0c\u5979\u5fcd\u4e0d\u4f4f\u5c31\u591a\u559d\u4e86\u51e0\u53e3\u3002

\u4f46\u827e\u5609\u6709\u4e00\u4e2a\u4e0d\u77e5\u9053\u662f\u4f18\u70b9\u8fd8\u662f\u7f3a\u70b9\u7684\u597d\u4e60\u60ef\uff0c\u53ea\u8981\u559d\u591a\u9152\uff0c\u5c31\u76f4\u63a5\u65ad\u7247\u513f\u3002

\u540e\u6765\u6768\u598d\u513f\u8bf4\u8fc7\uff0c\u56e0\u4e3a\u5979\u4e00\u76f4\u62b1\u7740\u9a6c\u6876\u4e0d\u6492\u624b\uff0c\u975e\u5f97\u558a\u7740\u8981\u6e38\u6cf3\uff0c\u5979\u8fd9\u624d\u62d6\u5979\u56de\u4e86\u5bb6\u3002

\u53ea\u662f\u90a3\u4eba\u4e5f\u4ece\u6ca1\u63d0\u8fc7\u5979\u8fd8\u5076\u9047\u5e05\u54e5\u4e86\u554a\u2026\u2026

\u767d\u9752\u5b87\u540c\u6837\u90c1\u95f7\u3002

\u5982\u679c\u4e0d\u662f\u674e\u98de\u6743\u90a3\u4e2a\u6df7\u86cb\u8bc8\u4ed6\uff0c\u4ed6\u8fd9\u8f88\u5b50\u90fd\u4e0d\u4f1a\u8fdb\u9152\u5427\u3002

\u53ef\u4ed6\u521a\u5750\u4e0b\u6ca1\u591a\u4e45\uff0c\u4fbf\u88ab\u773c\u524d\u8fd9\u4e2a\u5973\u4eba\u8c03\u620f\u4e86\uff01

\u201c\u5e05\u54e5\uff0c\u51fa\u6765\u73a9\uff0c\u600e\u4e48\u8fd8\u4e0d\u559d\u9152\u554a\uff1f\u201d

\u201c\u5e05\u54e5\uff0c\u6211\u770b\u4e0a\u4f60\u4e86\uff0c\u4f60\u600e\u4e48\u79f0\u547c\u554a\uff1f\u201d

\u201c\u6211\u554a\uff1f\u6211\u53eb\u827e\u5609\uff0c\u827e\u5609\u7684\u767d\uff0c\u827e\u5609\u7684\u5609\u5609\uff0c\u563f\u563f\u563f\u2026\u2026\u201d

\u767d\u9752\u5b87\u6700\u521d\u662f\u53cd\u611f\u7684\uff0c\u4ed6\u6700\u8ba8\u538c\u8fd9\u7fa4\u6ce1\u591c\u5e97\u7684\u5973\u4eba\u3002

\u4f46\u827e\u5609\u4e0d\u4e00\u6837\uff0c\u5979\u867d\u7136\u4e0a\u524d\u642d\u8baa\uff0c\u53ef\u5979\u773c\u5e95\u4f9d\u65e7\u7eaf\u6f88\uff0c\u90a3\u5e72\u51c0\u7684\u7b11\u5bb9\u8ba9\u767d\u9752\u5b87\u4e0d\u7531\u81ea\u4e3b\u7684\u60f3\u8981\u4e00\u76f4\u770b\u4e0b\u53bb\u3002

\u4ed6\u4e5f\u4e0d\u77e5\u9053\u600e\u4e48\u4e86\uff0c\u7a81\u7136\u5c31\u60f3\u548c\u5979\u66f4\u591a\u4e9b\u8054\u7cfb\u3002

\u65e0\u89c6\u4e86\u81ea\u5bb6\u597d\u53cb\u6253\u8da3\u7684\u76ee\u5149\uff0c\u767d\u9752\u5b87\u6709\u4e00\u642d\uff0c\u6ca1\u4e00\u642d\u7684\u548c\u827e\u5609\u95f2\u804a\uff0c\u54ea\u6015\u90a3\u4e2a\u5973\u4eba\u6700\u540e\u501f\u7740\u9152\u52b2\u513f\u5c31\u8981\u5403\u4ed6\u8c46\u8150\uff0c\u4ed6\u90fd\u54ac\u54ac\u7259\u6ca1\u8eb2\u5f00\uff01

\u8c01\u4e0d\u77e5\u9053\u4ed6\u767d\u9752\u5b87\u6700\u8ba8\u538c\u5973\u4eba\u8fd1\u8eab\u4e86\uff01

\u773c\u77a7\u7740\u5979\u8d8a\u559d\u8d8a\u591a\uff0c\u767d\u9752\u5b87\u5fc3\u4e2d\u4e0d\u5fcd\uff0c\u672c\u6765\u51c6\u5907\u9001\u5979\u56de\u5bb6\uff0c\u4f46\u8fd9\u4e2a\u4e0d\u77e5\u597d\u6b79\u7684\u5973\u4eba\u5c45\u7136\u50bb\u4e4e\u4e4e\u7684\u51b2\u4ed6\u7b11\u7740\u8bf4\uff1a\u201c\u5e05\u54e5\uff0c\u6211\u5356\u827a\u4e0d\u5356\u8eab\u54e6\u3002\u201d

\u6de1\u5b9a\u7684\u77a5\u4e86\u4e00\u773c\u674e\u98de\u6743\uff0c\u90a3\u4eba\u4fbf\u54c8\u54c8\u7b11\u7740\u8dd1\u5230\u4e86\u821e\u6c60\u3002

\u201c\u5e05\u54e5\uff0c\u4ed6\u600e\u4e48\u8d70\u4e86\uff1f\u201d

\u767d\u9752\u5b87\u521a\u8981\u8bf4\u8bdd\uff0c\u8eab\u4fa7\u7684\u5973\u4eba\u4fbf\u7a81\u7136\u53d8\u4e86\u8138\u8272\uff1a\u201c\u6211\u8981\u53bb\u5395\u6240\uff01\u201d

\u767d\u9752\u5b87\u6015\u5979\u9189\u5012\u5728\u536b\u751f\u95f4\uff0c\u4fbf\u6025\u5207\u7684\u95ee\u5979\u624b\u673a\u53f7\u7801\uff0c\u53ef\u662f\u6362\u6765\u7684\u5374\u662f\u4e00\u9635\u6447\u5934\uff1a\u201c\u4eba\u5bb6\u5356\u827a\u4e0d\u5356\u8eab\uff01\u201d

\u773c\u77a7\u7740\u90a3\u4eba\u614c\u614c\u5f20\u5f20\u7684\u5f80\u5395\u6240\u8dd1\u53bb\uff0c\u4ed6\u7b2c\u4e00\u6b21\u89c9\u5f97\u6005\u7136\u82e5\u5931\u3002

\u540e\u6765\u7684\u51e0\u5929\uff0c\u767d\u9752\u5b87\u6bcf\u5929\u90fd\u4f1a\u53bb\u591c\u8272\u9152\u5427\uff0c\u4f46\u518d\u4e5f\u6ca1\u9047\u5230\u8fc7\u8fd9\u4e2a\u5973\u4eba\u3002

\u5982\u679c\u4e0d\u662f\u4eca\u5929\u5076\u7136\u4ece\u8fd9\u91cc\u7ecf\u8fc7\uff0c\u4ed6\u6216\u8bb8\u5c31\u771f\u7684\u4e0d\u4f1a\u89c1\u5230\u5979\u4e86\u3002

\u2026\u2026

\u201c\u90a3\u4e2a\u5565\u2026\u2026\u767d\u9752\u5b87\uff0c\u6211\u90a3\u5929\u559d\u9ad8\u4e86\uff0c\u65ad\u7247\u513f\u4e86\uff0c\u5982\u679c\u5bf9\u4f60\u505a\u4e86\u4ec0\u4e48\u4e0d\u8be5\u505a\u7684\uff0c\u4f60\u522b\u653e\u5728\u5fc3\u4e0a\u3002\u6211\u7ed9\u4f60\u9053\u6b49\u2026\u2026\u201d

\u767d\u9752\u5b87\u7709\u5934\u4e00\u52a8\u3002

\u201c\u4f60\u522b\u4e0d\u8bf4\u8bdd\u554a\uff0c\u4e0d\u7ba1\u600e\u4e48\u8bf4\uff0c\u4f60\u4e5f\u662f\u4e2a\u7537\u5b50\u6c49\uff0c\u6211\u90fd\u7ed9\u4f60\u9053\u6b49\u4e86\uff0c\u4f60\u4e0d\u80fd\u4e0d\u63a5\u53d7\u3002\u201d

\u201c\u827e\u5609\u3002\u201d\u767d\u9752\u5b87\u7a81\u7136\u5f00\u53e3\u3002

\u201c\u554a\uff1f\u201d

\u201c\u6211\u4eec\u5728\u4e00\u8d77\u5427\u3002\u201d

\u201c\u5565\uff1f\u201d\u827e\u5609\u8ff7\u832b\u7684\u7728\u4e86\u7728\u773c\u775b\uff0c\u4e00\u65f6\u95f4\u6709\u70b9\u6ca1\u53cd\u5e94\u8fc7\u6765\u3002

\u767d\u9752\u5b87\u8f6c\u5934\u671b\u7740\u8eab\u4fa7\u7684\u5973\u5b69\u513f\uff0c\u773c\u795e\u513f\u8ba4\u771f\uff1a\u201c\u6211\u8bf4\uff0c\u6211\u4eec\u4ea4\u5f80\u5427\u3002\u201d

\u827e\u5609\u672c\u6765\u4ee5\u4e3a\u662f\u7b11\u8bdd\uff0c\u4f46\u521a\u60f3\u914d\u5408\u7684\u7b11\u7b11\uff0c\u5979\u4fbf\u53d1\u73b0\u767d\u9752\u5b87\u8bf4\u7684\u662f\u771f\u7684\u3002

\u4ed4\u7ec6\u7684\u6253\u91cf\u7740\u9762\u524d\u4eba\u7684\u8138\u3002

\u8c8c\u4f3c\u633a\u5e05\u7684\uff0c\u5e26\u51fa\u53bb\u80af\u5b9a\u6709\u9762\u5b50\u3002

\u8fd9\u6837\u60f3\u7740\uff0c\u827e\u5609\u563f\u563f\u4e00\u7b11\uff1a\u201c\u597d\u554a\u3002\u201d

\u201c\u989d\uff1f\u201d\u8fd9\u6b21\u8f6e\u5230\u767d\u9752\u5b87\u53d1\u61f5\u4e86\uff1a\u201c\u51fa\u81ea\u5973\u5b69\u5b50\u7684\u77dc\u6301\uff0c\u4f60\u4e0d\u662f\u5e94\u8be5\u62d2\u7edd\u4e48\uff1f\u201d

\u827e\u5609\u597d\u5947\u5b9d\u5b9d\u4f3c\u7684\u53d1\u95ee\uff1a\u201c\u90a3\u4f60\u7684\u610f\u601d\u662f\u2026\u2026\u8ba9\u6211\u62d2\u7edd\uff1f\u201d

\u77a7\u7740\u9762\u524d\u6709\u4e9b\u8ff7\u7cca\u7684\u5973\u5b69\u5b50\uff0c\u767d\u9752\u5b87\u773c\u775b\u90fd\u6696\u4e86\u8d77\u6765\u3002\u52fe\u5507\u4e00\u7b11\uff0c\u4ed6\u55d3\u97f3\u6e29\u548c\u3002

\u201c\u522b\uff0c\u8fd9\u6837\u633a\u597d\u7684\u3002\u201d

\u201c\u563f\u563f\uff0c\u6211\u89c9\u5f97\u4e5f\u662f\u3002\u201d


"},{title:"\u7b2c3\u7ae0 \u5fc5\u987b\u5206\u624b\uff01",chapter:1,isStart:!1,isEnd:!1,id:"2",sub:"\u7b2c3\u7ae0 \u5fc5\u987b\u5206\u624b\uff01",content:"

\u7b2c3\u7ae0 \u5fc5\u987b\u5206\u624b\uff01


\u201chjfgfgdfdhfdhfdghdddddsddddddddddddddddddddddddddddddddddddddddddddddddddd\u4f60\u597d\u4f60\u8fd8\u662f\u4e1c\u65b9\u822a\u7a7a\u65f6\u95f4\u554a\u9ec4\u5927\u53d1\u5361\u838e\u4ee3\u53d1\u5361\u54c8\u9001\u8fbe\u65b9\u770b\u54c8\u624b\u6253\u53d1\u5361\u673a\u54c8\u5e08\u5927\u5f00\u53d1\u673a\u82b1\u6d12\u6297\u6253\u51fb\u5408\u6cd5\u79d1\u6280\u201d

\u7b2c\u4e8c\u5929\u4e00\u5927\u65e9\uff0c\u827e\u5609\u4fbf\u88ab\u4e00\u9635\u7279\u5236\u7684\u624b\u673a\u94c3\u58f0\u5435\u9192\u3002

\u201c\u5582\u3002\u201d

\u201c\u73b0\u5728\u4e0b\u697c\u3002\u201d

\u719f\u6089\u7684\u58f0\u97f3\u8bf4\u8bdd\u4f9d\u65e7\u7b80\u6d01\uff0c\u6487\u4e86\u6487\u5634\uff0c\u5979\u6162\u541e\u541e\u7684\u62c9\u5f00\u7a97\u5e18\u5f80\u5916\u77a7\u53bb\uff1a\u201c\u73b0\u5728\u5c31\u4e0b\u697c\u554a\uff1f\u201d

\u4e00\u8f86\u94f6\u7070\u8272\u4fdd\u65f6\u6377\u6b63\u597d\u505c\u4e0b\u697c\u4e0b\u3002

\u8fd9\u7247\u5c45\u6c11\u697c\u4e0d\u592a\u597d\u627e\uff0c\u7834\u65e7\u7684\u5c0f\u5df7\u4e03\u62d0\u516b\u62d0\uff0c\u8def\u9762\u5751\u5751\u6d3c\u6d3c\uff0c\u5c31\u8fde\u5927\u697c\u7684\u5916\u58c1\u90fd\u6709\u4e9b\u8131\u843d\uff0c\u4ed6\u7528GPS\u627e\u4e86\u597d\u4e45\u624d\u5b9a\u4f4d\u5230\u8fd9\u91cc\u3002

\u4f3c\u4e4e\u53d1\u89c9\u5230\u827e\u5609\u7684\u76ee\u5149\uff0c\u767d\u9752\u5b87\u62ac\u5934\u5f80\u4e0a\u77a7\u53bb\u3002

\u90a3\u4e2a\u5973\u5b69\u513f\u7a7f\u7740\u4e00\u5957\u767d\u8272\u7761\u8863\uff0c\u5934\u53d1\u84ec\u84ec\u7684\u6563\u5728\u80a9\u4e0a\uff0c\u5979\u5c31\u90a3\u6837\u8db4\u5728\u9633\u53f0\u4e0a\u770b\u4ed6\uff0c\u5374\u597d\u50cf\u662f\u4e16\u754c\u4e0a\u6700\u7eaf\u6d01\u65e0\u6687\u7684\u5929\u4f7f\u3002

\u770b\u7740\u5979\u6175\u61d2\u7684\u6a21\u6837\uff0c\u767d\u9752\u5b87\u5fc3\u4e2d\u4e0d\u5feb\uff0c\u8fd9\u4e2a\u6837\u5b50\u600e\u4e48\u80fd\u968f\u4fbf\u7ed9\u522b\u4eba\u770b\u3002

\u5e78\u597d\u6ca1\u8ba9\u4ed6\u4e0d\u60a6\u591a\u4e45\uff0c\u827e\u5609\u4fbf\u8fc5\u901f\u7a9c\u5230\u4e86\u697c\u4e0b\u3002

\u201c\u6211\u4eec\u53bb\u54ea\u513f\u554a\uff1f\u201d

\u827e\u5609\u7b11\u5bb9\u6ee1\u9762\uff0c\u5c31\u8fde\u773c\u775b\u90fd\u4eae\u4eae\u7684\u3002

\u8fd9\u4e0d\u80fd\u602a\u5979\uff0c\u5979\u5b9e\u5728\u592a\u4e45\u6ca1\u6709\u7ea6\u4f1a\u8fc7\u4e86\u3002

\u201c\u4e0a\u8f66\u3002\u201d

\u767d\u9752\u5b87\u770b\u7740\u9762\u524d\u4e00\u8eab\u8fd0\u52a8\u88c5\u7684\u5973\u5b69\u513f\uff0c\u5507\u89d2\u5fcd\u4e0d\u4f4f\u53c8\u626c\u4e86\u626c\uff0c\u76f4\u5230\u90a3\u4eba\u4e0a\u4e86\u8f66\uff0c\u4ed6\u624d\u94bb\u8fdb\u9a7e\u9a76\u5ea7\u3002

\u201c\u767d\u9752\u5b87\uff0c\u5230\u5e95\u53bb\u54ea\u513f\u554a\uff1f\u4f60\u600e\u4e48\u795e\u795e\u79d8\u79d8\u7684\uff0c\u8981\u662f\u4e0d\u597d\u73a9\uff0c\u4fe1\u4e0d\u4fe1\u6211\u5241\u4e86\u4f60~\u201d

\u201c\u767d\u9752\u5b87\uff0c\u4f60\u80fd\u4e0d\u80fd\u8bf4\u8bdd\u554a\uff0c\u5230\u5e95\u53bb\u54ea\u513f\u561b\uff1f\u201d

\u4e00\u8def\u4e0a\u542c\u7740\u90a3\u4e2a\u5c0f\u5973\u4eba\u53fd\u53fd\u55b3\u55b3\u7684\u5570\u55e6\u4e2a\u4e0d\u505c\uff0c\u4ed6\u7b2c\u4e00\u6b21\u6ca1\u6709\u5fc3\u70e6\uff0c\u53cd\u800c\u6709\u79cd\u83ab\u540d\u7684\u5f00\u5fc3\u3002

\u4f3c\u4e4e\u4e00\u76f4\u8fd9\u6837\uff0c\u4e5f\u4e0d\u9519\u2026\u2026

\u6e38\u4e50\u573a\u3002

\u827e\u5609\u76ee\u77aa\u53e3\u5446\u7684\u76ef\u7740\u9762\u524d\u7684\u6469\u5929\u8f6e\uff0c\u4e0b\u610f\u8bc6\u7684\u54bd\u4e86\u4e00\u53e3\u553e\u6cab\uff0c\u5f3a\u7b11\u7740\u95ee\u8eab\u4fa7\u4eba\uff1a\u201c\u4f60\u2026\u2026\u4f60\u8bf4\u8981\u73a9\u8fd9\u4e2a\uff1f\u201d

\u767d\u9752\u5b87\u5251\u7709\u4e00\u6311\uff0c\u7b49\u7740\u827e\u5609\u6b22\u547c\u96c0\u8dc3\u3002

\u4f46\u7b49\u4e86\u597d\u4e45\uff0c\u8eab\u4fa7\u7684\u5973\u5b69\u513f\u53ea\u662f\u4e00\u8138\u90d1\u91cd\u7684\u7b49\u7740\u4ed6\u7b54\u6848\u3002

\u4f3c\u4e4e\u6709\u4ec0\u4e48\u5730\u65b9\u4e0d\u5bf9\u2026\u2026

\u76b1\u4e86\u76b1\u7709\u5934\uff0c\u4ed6\u6c89\u58f0\u9053\uff1a\u201c\u55ef\u3002\u6709\u4ec0\u4e48\u95ee\u9898\u4e48\uff1f\u201d

\u201c\u90a3\u4e2a\u2026\u2026\u201d\u827e\u5609\u8868\u60c5\u6709\u4e9b\u4e0d\u592a\u81ea\u7136\uff0c\u671b\u7740\u524d\u9762\u957f\u957f\u7684\u961f\u4f0d\uff0c\u5979\u773c\u775b\u4e00\u4eae\uff1a\u201c\u4eba\u591a\uff0c\u7b49\u7684\u65f6\u95f4\u592a\u957f\u4e86\uff01\u6211\u4eec\u53bb\u73a9\u522b\u7684\uff01\u201d

\u201c\u5c31\u56e0\u4e3a\u8fd9\u4e2a\uff1f\u201d

\u767d\u9752\u5b87\u8f7b\u677e\u7684\u7b11\u4e86\u7b11\uff0c\u968f\u610f\u7684\u638f\u51fa\u624b\u673a\u6253\u4e86\u4e2a\u7535\u8bdd\uff0c\u4e0d\u8fc7\u4e94\u5206\u949f\uff0c\u6469\u5929\u8f6e\u533a\u4fbf\u88ab\u6e05\u573a\u6e05\u7684\u5e72\u5e72\u51c0\u51c0\u3002

\u827e\u5609\u4e0d\u6562\u7f6e\u4fe1\u7684\u76ef\u7740\u767d\u9752\u5b87\uff0c\u5634\u5507\u54c6\u55e6\u4e86\u534a\u5929\uff0c\u624d\u5410\u51fa\u4e00\u53e5\u8bdd\uff1a\u201c\u4f60\u592a\u5389\u5bb3\u4e86\u2026\u2026\u201d

\u767d\u9752\u5b87\u4ee5\u4e3a\u8fd9\u662f\u5938\u4ed6\uff0c\u5fcd\u4e0d\u4f4f\u626c\u4e86\u626c\u7709\u3002

\u6628\u5929\u665a\u4e0a\u4ed6\u7279\u610f\u95ee\u7684\u674e\u98de\u6743\uff0c\u5e26\u5973\u5b69\u5b50\u51fa\u6765\u5f97\u53bb\u54ea\u91cc\u73a9\uff0c\u90a3\u4eba\u53ea\u7ed9\u4ed6\u53d1\u8fc7\u6765\u4e00\u53e5\u8bdd\u3002

\u4f20\u8bf4\u6469\u5929\u8f6e\u662f\u6700\u63a5\u8fd1\u5e78\u798f\u7684\u5730\u65b9\u3002

\u767d\u9752\u5b87\u7422\u78e8\u4e86\u534a\u5929\uff0c\u6700\u540e\u624d\u53cd\u5e94\u8fc7\u6765\u5e94\u8be5\u5e26\u7740\u827e\u5609\u6765\u5750\u6469\u5929\u8f6e\u3002

\u201c\u767d\u9752\u5b87\u3002\u201d\u827e\u5609\u4e0b\u610f\u8bc6\u7684\u6413\u7740\u8863\u89d2\uff0c\u5c3d\u529b\u7ec4\u7ec7\u8bed\u8a00\uff1a\u201c\u90a3\u4e2a\u2026\u2026\u54b1\u4eec\u80fd\u4e0d\u80fd\u73a9\u522b\u7684\u2026\u2026\u6211\u6709\u70b9\u6015\u2026\u2026\u201d

\u6015\u9ad8\u4e24\u4e2a\u5b57\u8fd8\u6ca1\u6709\u8bf4\u5b8c\uff0c\u767d\u9752\u5b87\u624b\u673a\u54cd\u4e86\u8d77\u6765\u3002

\u6253\u5f00\u624b\u673a\uff0c\u674e\u98de\u6743\u518d\u6b21\u53d1\u6765\u4e00\u6761\u77ed\u4fe1\u3002

\u5973\u4eba\u8bf4\u4e0d\u8981\uff0c\u5c31\u662f\u8981\u3002\u4e86\u7136\u7684\u70b9\u4e86\u70b9\u5934\uff0c\u4ed6\u61c2\u4e86\u3002

\u89c1\u767d\u9752\u5b87\u628a\u624b\u673a\u653e\u4e0b\uff0c\u827e\u5609\u7ee7\u7eed\u8bf4\u9053\uff1a\u201c\u6211\u771f\u7684\u4e0d\u60f3\u73a9\u2026\u2026\u201d

\u201c\u8d70\u3002\u201d\u4e0d\u518d\u7406\u4f1a\u827e\u5609\u7684\u610f\u89c1\uff0c\u767d\u9752\u5b87\u62d6\u7740\u5979\u5c31\u5f80\u6469\u5929\u8f6e\u65b9\u5411\u8d70\u53bb\u3002

\u201c\u767d\u9752\u5b87\uff0c\u4f60\u542c\u6211\u8bf4\uff0c\u54b1\u4eec\u53bb\u73a9\u522b\u7684\uff01\u73a9\u4ec0\u4e48\u90fd\u884c\uff01\u522b\u73a9\u8fd9\u4e2a\uff01\u6211\u6c42\u4f60\u4e86\uff0c\u767d\u9752\u5b87\uff01\u201d

\u827e\u5609\u88ab\u767d\u9752\u5b87\u534a\u62d6\u534a\u62fd\u7684\u6254\u8fdb\u6469\u5929\u8f6e\uff0c\u90a3\u7fa4\u5de5\u4f5c\u4eba\u5458\u6781\u6709\u773c\u529b\u89c1\u513f\u7684\u8fc5\u901f\u542f\u52a8\u3002

\u6574\u4e2a\u683c\u5b50\u7f13\u7f13\u4e0a\u5347\u3002\u827e\u5609\u60ca\u6050\u7684\u770b\u7740\u5916\u9762\u4e0d\u65ad\u62d4\u8d77\u7684\u666f\u8272\uff0c\u53cc\u817f\u90fd\u5728\u5fcd\u4e0d\u4f4f\u98a4\u6296\u3002\u54ac\u4e86\u54ac\u7259\uff0c\u5979\u7a81\u7136\u95ed\u4e0a\u4e86\u773c\u775b\u3002\u71ac\u4e00\u4f1a\u513f\u5c31\u4e0b\u53bb\u4e86\uff01

\u800c\u6b64\u65f6\uff0c\u767d\u9752\u5b87\u5df2\u7ecf\u6536\u5230\u4e86\u7b2c\u4e09\u6761\u77ed\u4fe1\u3002

\u966a\u5979\u4e00\u8d77\u770b\u5916\u9762\u7684\u666f\u8272\u3002

\u767d\u9752\u5b87\u4fa7\u5934\u770b\u4e86\u4e00\u773c\u827e\u5609\uff1a\u201c\u628a\u773c\u775b\u7741\u5f00\u3002\u201d

\u201c\u6211\u4e0d\uff01\u201d

\u201c\u6211\u966a\u4f60\u770b\u98ce\u666f\u3002\u201d

\u201c\u4e0d\u770b\uff01\u201d

\u770b\u4ed6\u59b9\u7684\u98ce\u666f\uff01

\u767d\u9752\u5b87\u76ef\u7740\u827e\u5609\u770b\u4e86\u534a\u5929\uff0c\u8584\u5507\u8f7b\u542f\uff0c\u4ed6\u4e00\u672c\u6b63\u7ecf\u7684\u5f00\u53e3\uff1a\u201c\u8001\u9f20\u3002\u201d

\u201c\u554a\uff01\u6551\u547d\u554a\uff01\u201d\u827e\u5609\u6761\u4ef6\u53cd\u5c04\u4f3c\u7684\u7741\u5f00\u773c\u775b\u5f80\u4e0a\u4e00\u8e66\uff0c\u6574\u4e2a\u683c\u5b50\u7a81\u7136\u6643\u4e86\u6643\uff0c\u5c31\u662f\u8fd9\u8f7b\u5fae\u7684\u4e00\u6643\uff0c\u5979\u4fbf\u6015\u7684\u5dee\u70b9\u54ed\u51fa\u6765\u3002

\u6273\u6b63\u8eab\u4fa7\u5973\u4eba\u7684\u8111\u888b\uff0c\u767d\u9752\u5b87\u4e00\u672c\u6b63\u7ecf\uff1a\u201c\u770b\u98ce\u666f\u3002\u201d

\u201c\uff01\uff01\uff01\u201d

\u683c\u5b50\u8fd8\u5728\u4e0a\u5347\uff0c\u827e\u5609\u8138\u8272\u767d\u7684\u4e0d\u50cf\u6837\u5b50\u3002

\u7830\uff01

\u5c31\u5728\u5347\u5230\u6700\u9ad8\u70b9\u7684\u65f6\u5019\uff0c\u4e00\u58f0\u5de8\u54cd\u4f20\u6765\uff0c\u6469\u5929\u8f6e\u7a81\u7136\u505c\u6b62\u4e86\u5de5\u4f5c\u3002

\u4e0d\u4f46\u827e\u5609\uff0c\u5c31\u8fde\u767d\u9752\u5b87\u90fd\u53d8\u4e86\u8138\u8272\u3002

\u201c\u554a\uff01\u6551\u547d\u554a\uff01\u201d\u827e\u5609\u7684\u773c\u6cea\u662f\u771f\u7684\u5feb\u8981\u6d41\u51fa\u6765\u4e86\uff0c\u5979\u6d51\u8eab\u98a4\u6296\u4e2a\u4e0d\u505c\uff0c\u58f0\u97f3\u90fd\u6296\u5f97\u4e0d\u50cf\u6837\u5b50\uff1a\u201c\u8981\u6b7b\u4e86\uff0c\u6211\u8981\u6b7b\u4e86\uff0c\u6211\u8981\u6b7b\u4e86\u3002\u201d

\u767d\u9752\u5b87\u8fc5\u901f\u638f\u51fa\u624b\u673a\u51c6\u5907\u6253\u7535\u8bdd\uff0c\u5374\u53c8\u770b\u89c1\u674e\u98de\u6743\u7684\u77ed\u4fe1\u3002

\u60ca\u559c\u5417\uff1f\u5bf9\u5979\u6df1\u60c5\u4e9b\u3002

\u9976\u662f\u767d\u9752\u5b87\u60c5\u5546\u518d\u4f4e\uff0c\u4e5f\u77e5\u9053\u8fd9\u6b21\u8fc7\u706b\u4e86\uff0c\u6025\u5fd9\u62e8\u901a\u674e\u98de\u6743\u7684\u624b\u673a\uff0c\u4ed6\u8bed\u6c14\u96be\u89c1\u7684\u6025\u4fc3\uff1a\u201c\u5feb\u53d1\u52a8\u673a\u5668\uff0c\u5feb\u70b9\uff01\u201d

\u6469\u5929\u8f6e\u7f13\u7f13\u4e0b\u964d\uff0c\u827e\u5609\u7684\u8138\u8272\u5374\u6709\u70b9\u53d1\u9752\u3002

\u201c\u5609\u5609\u2026\u2026\u201d\u767d\u9752\u5b87\u5f20\u4e86\u5f20\u5634\uff0c\u4e0d\u77e5\u9053\u8be5\u600e\u4e48\u89e3\u91ca\u3002

\u827e\u5609\u5e76\u4e0d\u7406\u4f1a\u767d\u9752\u5b87\uff0c\u5979\u76ee\u89c6\u524d\u65b9\uff0c\u5750\u7684\u7b14\u76f4\uff0c\u53ea\u662f\u4e00\u76f4\u6253\u98a4\u7684\u53cc\u817f\u66b4\u9732\u4e86\u5979\u5185\u5fc3\u7684\u6050\u60e7\u3002

\u770b\u7740\u5979\u8fd9\u4e2a\u6837\u5b50\uff0c\u767d\u9752\u5b87\u5fc3\u4e2d\u66f4\u52a0\u6127\u759a\u3002\u53ef\u662f\u4ed6\u521a\u521a\u62b1\u4f4f\u5979\uff0c\u4fbf\u88ab\u90a3\u4eba\u4e00\u5df4\u638c\u6325\u5f00\u3002

\u770b\u7740\u81ea\u5df1\u7a7a\u7a7a\u7684\u53cc\u624b\uff0c\u767d\u9752\u5b87\u6709\u70b9\u96be\u8fc7\u3002

\u8fd9\u662f\u4ed6\u4eba\u751f\u4e2d\u7b2c\u4e00\u6b21\u7ea6\u4f1a\uff0c\u53ef\u662f\u88ab\u4ed6\u641e\u7838\u4e86\u3002

\u683c\u5b50\u7f13\u7f13\u843d\u5728\u5730\u4e0a\uff0c\u5927\u95e8\u4e00\u5f00\uff0c\u827e\u5609\u7387\u5148\u51b2\u4e86\u51fa\u53bb\u3002

\u5979\u7684\u6b65\u5b50\u6709\u4e9b\u4e0d\u7a33\uff0c\u8e09\u8e09\u8dc4\u8dc4\u7684\u8dd1\u5230\u6469\u5929\u8f6e\u7684\u5de5\u4f5c\u53f0\uff0c\u795e\u6001\u614c\u5f20\uff1a\u201c\u888b\u5b50\uff01\uff01\uff01\u201d

\u4e00\u628a\u62fd\u8fc7\u4e00\u4e2a\u65b9\u4fbf\u888b\uff0c\u5979\u7a81\u7136\u5f13\u8d77\u8eab\u5b50\u5267\u70c8\u7684\u5455\u5410\u8d77\u6765\u3002

\u201c\u5455\uff01\u201d

\u80c3\u91cc\u4e0d\u505c\u7684\u7ffb\u817e\u7740\uff0c\u827e\u5609\u89c9\u5f97\u4e94\u810f\u90fd\u79fb\u4e86\u4f4d\u3002

\u4e0d\u77e5\u9053\u662f\u56e0\u4e3a\u540e\u6015\uff0c\u8fd8\u662f\u5455\u5410\u7684\u592a\u96be\u53d7\uff0c\u5979\u7684\u773c\u6cea\u77ac\u95f4\u5f6a\u4e86\u51fa\u6765\u3002

\u5988\u86cb\uff0c\u4e22\u6b7b\u4eba\u4e86\uff01

\u201c\u5455\uff01\u201d

\u201c\u5609\u5609\uff0c\u4f60\u600e\u4e48\u6837\uff1f\u201d\u767d\u9752\u5b87\u8fc5\u901f\u51b2\u4e86\u8fc7\u6765\uff0c\u53ef\u662f\u521a\u521a\u629a\u4e0a\u9762\u524d\u5973\u5b69\u513f\u7684\u540e\u80cc\uff0c\u4fbf\u53c8\u88ab\u4e00\u722a\u5b50\u6325\u5f00\u3002

\u88ab\u6325\u5f00\u7684\u624b\u4e0b\u610f\u8bc6\u7684\u6525\u6210\u4e86\u62f3\u5934\uff0c\u4ed6\u795e\u60c5\u61ca\u6094\u4e2d\u53c8\u5939\u6742\u7740\u5fc3\u75bc\uff1a\u201c\u4e0b\u6b21\u2026\u2026\u4e0b\u6b21\u6211\u4eec\u4e0d\u5750\u6469\u5929\u8f6e\u4e86\u3002\u201d

\u201c\u4e0b\u6b21\uff01\uff01\uff01\u201d

\u827e\u5609\u6254\u6389\u65b9\u4fbf\u888b\uff0c\u64e6\u4e86\u64e6\u5634\u5df4\uff0c\u5979\u6c14\u547c\u547c\u7684\u76ef\u7740\u9762\u524d\u7684\u7f6a\u9b41\u7978\u9996\uff1a\u201c\u4f60\u8fd8\u60f3\u6709\u4e0b\u6b21\uff01\u201d

\u89c1\u767d\u9752\u5b87\u4e0d\u89e3\uff0c\u827e\u5609\u6068\u7684\u76f4\u8dfa\u811a\u3002

\u201c\u767d\u9752\u5b87\uff0c\u6211\u8fd9\u8f88\u5b50\u90fd\u4e0d\u60f3\u518d\u89c1\u5230\u4f60\u3002\u52b3\u8d44\u8981\u548c\u4f60\u5206\u624b\uff01\uff01\uff01\u201d


"},{title:"\u7b2c4\u7ae0 \u5931\u8d25\u7684\u73ab\u7470\u82b1\u6d77",chapter:1,isStart:!1,isEnd:!1,id:"3",sub:"\u7b2c4\u7ae0 \u5931\u8d25\u7684\u73ab\u7470\u82b1\u6d77",content:"

\u7b2c4\u7ae0 \u5931\u8d25\u7684\u73ab\u7470\u82b1\u6d77


\u4e0d\u51fa\u827e\u5609\u7684\u610f\u6599\uff0c\u7b2c\u4e8c\u5929\uff0c\u90a3\u4ef6\u4e8b\u513f\u679c\u7136\u6210\u4e86\u7126\u70b9\u3002

\u4f46\u6700\u8ba9\u827e\u5609\u6124\u6012\u7684\u662f\uff0c\u5a92\u4f53\u5e76\u4e0d\u77e5\u9053\u90a3\u4e2a\u7537\u4eba\u662f\u8c01\uff0c\u5374\u628a\u5979\u7956\u5b97\u5341\u516b\u4ee3\u90fd\u7ffb\u51fa\u6765\u4e86\u3002

\u4e0d\u8fc7\u7b2c\u4e09\u5929\uff0c\u4e8b\u60c5\u5c31\u88ab\u4eba\u538b\u4e86\u4e0b\u53bb\uff0c\u518d\u6ca1\u6709\u5a92\u4f53\u6562\u63d0\u3002\u4f46\u5404\u4e2a\u5b66\u6821\u4f9d\u65e7\u4e0d\u6562\u5728\u98ce\u53e3\u6d6a\u5c16\u513f\u4e0a\u96c7\u7528\u5979\u3002

\u671f\u95f4\u767d\u9752\u5b87\u4e5f\u6253\u8fc7\u7535\u8bdd\uff0c\u827e\u5609\u5374\u4e0d\u60f3\u63a5\u3002\u773c\u77a7\u7740\u4f59\u7cae\u4e0d\u591a\u4e86\uff0c\u827e\u5609\u4fbf\u6253\u7b97\u53bb\u8d85\u5e02\u4e70\u70b9\u3002\u4e0d\u8fc7\u4e0b\u4e86\u697c\uff0c\u5979\u53c8\u5230\u4e86\u5e02\u4e2d\u5fc3\u6b65\u884c\u8857\u3002

\u5973\u751f\u5fc3\u60c5\u4e0d\u597d\u600e\u4e48\u529e\uff1f\u5f53\u7136\u662f\u4e70\u4e70\u4e70\u554a\uff01\u7ba1\u5b83\u6709\u6ca1\u6709\u5b58\u6b3e\uff01

\u53ef\u60dc\u4e00\u5230\u6b65\u884c\u8857\uff0c\u827e\u5609\u7684\u5c0f\u5b87\u5b99\u77ac\u95f4\u7206\u53d1\u3002

\u4ec0\u4e48\u53eb\u51a4\u5bb6\u8def\u7a84\uff1f

\u767d\u9752\u5b87\u6b64\u65f6\u4e00\u8eab\u767d\u8272\u4f11\u95f2\u88c5\uff0c\u6b63\u5728\u548c\u8eab\u8fb9\u4e00\u4e2a\u4e8c\u5341\u5c81\u51fa\u5934\u7684\u5973\u5b69\u513f\u76f8\u8c08\u751a\u6b22\u3002\u90a3\u4e2a\u5973\u5b69\u4e5f\u5f88\u6f02\u4eae\uff0c\u4e00\u6839\u9a6c\u5c3e\u677e\u677e\u7684\u7ed1\u5728\u8111\u540e\uff0c\u7b11\u5bb9\u660e\u8273\u52a8\u4eba\u3002\u5979\u8fde\u5de5\u4f5c\u90fd\u6ca1\u4e86\uff0c\u4ed6\u8fd8\u5728\u6ce1\u59b9\u5b50\uff01\u8001\u5a18\u4e0d\u53d1\u5a01\uff0c\u4f60\u5f53\u6211\u662fhello kitty\uff01\u638f\u51fa\u624b\u673a\u770b\u4e86\u4e00\u4e0b\u81ea\u5df1\u7684\u5986\u5bb9\u548c\u53d1\u578b\uff0c\u5979\u62cd\u4e86\u62cd\u8138\uff0c\u626f\u51fa\u4e00\u62b9\u65e2\u5a07\u7f9e\uff0c\u53c8\u751c\u871c\u7684\u7b11\u5bb9\u3002

\u201c\u8001\u516c\uff5e\u201d

\u767d\u9752\u5b87\u7709\u5934\u4e00\u8df3\uff0c\u4ed6\u600e\u4e48\u542c\u5230\u827e\u5609\u7684\u58f0\u97f3\u4e86\uff1f\u60f3\u8d77\u8fd9\u51e0\u5929\u4e00\u76f4\u8eb2\u7740\u4ed6\u7684\u5973\u4eba\uff0c\u4ed6\u5fcd\u4e0d\u4f4f\u82e6\u7b11\uff0c\u90fd\u51fa\u5e7b\u89c9\u4e86\u3002

\u827e\u5609\u89c1\u767d\u9752\u5b87\u8fde\u5934\u90fd\u4e0d\u56de\uff0c\u6124\u6012\u66f4\u751a\u3002\u8e6d\u8e6d\u8dd1\u5230\u767d\u9752\u5b87\u548c\u90a3\u4e2a\u5973\u5b69\u513f\u4e2d\u95f4\uff0c\u5979\u7b11\u5bb9\u751c\u871c:\u201c\u8001\u516c\uff5e\u600e\u4e48\u4e0d\u63a5\u7535\u8bdd\u554a\uff5e\u201d\u767d\u9752\u5b87\u773c\u7738\u5fae\u5706\uff0c\u5f88\u5feb\u5c31\u53cd\u5e94\u8fc7\u6765\u600e\u4e48\u56de\u4e8b\u4e86\u3002

\u4f46\u6ca1\u7b49\u4ed6\u8bf4\u8bdd\uff0c\u827e\u5609\u7ee7\u7eed\u626e\u5a07\u7f9e:\u201c\u6211\u521a\u624d\u628a\u68c0\u67e5\u62a5\u544a\u53d6\u51fa\u6765\u4e86\uff0c\u4eba\u5bb6\u6000\u5b55\u4e86\u5566\uff5e\u201d\u201c\u6000\u5b55\uff1f\u201d\u767d\u9752\u5b87\u76b1\u7709\u53cd\u95ee\uff0c\u8fd9\u4e2a\u5973\u4eba\u600e\u4e48\u8111\u6d1e\u8fd9\u4e48\u5927\uff1f

\u201c\u8fd9\u4e0d\u662f\u591a\u4e8f\u8001\u516c\u5389\u5bb3\u561b\uff5e\u201d\u827e\u5609\u8bf4\u5230\u8fd9\u91cc\uff0c\u751a\u81f3\u7ea2\u4e86\u8138\u3002

\u201c\uff01\uff01\uff01\u201d

\u201c\u4f60\u662f\u4ed6\u59bb\u5b50\uff1f\u201d\u90a3\u4e2a\u5973\u5b69\u513f\u8868\u60c5\u6709\u4e9b\u602a\u5f02\u3002

\u201c\u5f53\u7136\u4e86\uff01\u201d

\u827e\u5609\u8868\u60c5\u5e78\u798f\uff0c\u4f46\u5fc3\u4e2d\u5374\u6697\u6697\u7ed9\u81ea\u4e2a\u513f\u6253\u6c14\u513f\uff0c\u5979\u975e\u5f97\u62c6\u6563\u4ed6\u4eec\uff01

\u201c\u53ef\u6211\u662f\u4ed6\u7684\u5973\u670b\u53cb\u3002\u201d\u5973\u5b69\u513f\u8868\u60c5\u6709\u4e9b\u5446\u5446\u7684\uff0c\u534a\u5929\u624d\u618b\u51fa\u8fd9\u4e48\u4e00\u53e5\u8bdd\u3002

\u6709\u4e86\u8fd9\u4e48\u6f02\u4eae\u7684\u5973\u670b\u53cb\uff0c\u8fd8\u6765\u62db\u60f9\u8001\u5a18\uff01

\u827e\u5609\u8868\u60c5\u60ca\u6050\uff0c\u597d\u50cf\u6ca1\u53cd\u5e94\u8fc7\u6765\u600e\u4e48\u56de\u4e8b\uff0c\u4e0d\u8fc7\u5f88\u5feb\uff0c\u5979\u4fbf\u4e00\u526f\u6ceb\u7136\u6b32\u6ce3\u7684\u6a21\u6837\uff1a\u201c\u7adf\u7136\u53c8\u80cc\u7740\u6211\u627e\u522b\u7684\u5973\u4eba\u3002\u201d

\u8f6c\u5934\u770b\u7740\u9762\u65e0\u8868\u60c5\u7684\u767d\u9752\u5b87\uff0c\u5979\u4f3c\u4e4e\u662f\u5728\u63a7\u8bc9\uff1a\u201c\u8001\u516c\uff0c\u5979\u662f\u8fd9\u4e2a\u6708\u7b2c\u51e0\u4e2a\u4e86\uff1f\u201d

\u767d\u9752\u5b87\u4f3c\u4e4e\u5fc3\u60c5\u4e0d\u9519\uff0c\u4ed6\u5507\u89d2\u4e00\u52fe\uff0c\u8bed\u6c14\u6beb\u4e0d\u8fdf\u7591\uff1a\u201c\u5c31\u4f60\u4eec\u4e24\u4e2a\u3002\u201d

\uff01\uff01\uff01

\u4e0d\u8981\u8138\uff01

\u4e0d\u7b49\u827e\u5609\u8bf4\u8bdd\uff0c\u90a3\u4e2a\u5973\u5b69\u513f\u9762\u4e0a\u5df2\u7ecf\u76c8\u4e0a\u4e86\u611f\u52a8\u7684\u795e\u8272\u3002

\u770b\u7740\u82f1\u4fca\u9ad8\u5927\u7684\u7537\u4eba\uff0c\u5979\u8bed\u6c14\u6fc0\u52a8\uff1a\u201c\u771f\u7684\u53ea\u6709\u6211\u4eec\u4e24\u4e2a\u4e48\uff1f\u592a\u597d\u4e86\uff0c\u6211\u80fd\u5f97\u5230\u4f60\u4e8c\u5206\u4e4b\u4e00\u7684\u7231\uff01\u201d

\u827e\u5609\u6709\u70b9\u8499\uff0c\u5267\u60c5\u4e0d\u5e94\u8be5\u8fd9\u4e48\u53d1\u5c55\u554a\u3002

\u8ff7\u832b\u7684\u770b\u4e86\u4e00\u773c\u5bf9\u9762\u7684\u5973\u5b69\u513f\uff0c\u5979\u5f88\u5feb\u628a\u76ee\u5149\u9501\u5728\u767d\u9752\u5b87\u7684\u8eab\u4e0a\u3002

\u4f60\u5c0f\u5b50\u5f88\u62db\u8702\u554a\u3002

\u767d\u9752\u5b87\u7709\u6bdb\u4e00\u6311\uff0c\u90a3\u5f53\u7136\u3002

\u201c\u59d0\u59d0\uff01\u201d\u90a3\u4e2a\u5973\u5b69\u513f\u6fc0\u52a8\u7684\u62fd\u4f4f\u827e\u5609\u7684\u80f3\u818a\uff0c\u6ee1\u8138\u7684\u4e5e\u6c42\uff1a\u201c\u59d0\u59d0\uff0c\u4f60\u80fd\u7b54\u5e94\u6211\u4e00\u4ef6\u4e8b\u513f\u4e48\uff1f\u201d

\u827e\u5609\u7728\u4e86\u7728\u773c\uff1a\u201c\u4e0d\u80fd\u3002\u201d

\u201c\u59d0\u59d0~\u201d

\u5979\u5feb\u8981\u88ab\u8fd9\u58f0\u59d0\u59d0\u7ed9\u53eb\u9165\u4e86\uff0c\u8fd9\u4e48\u597d\u7684\u5973\u5b69\u513f\uff0c\u600e\u4e48\u5c31\u975e\u5f97\u4e0a\u8fd9\u6761\u8d3c\u8239\u3002

\u201c\u6211\u4e0d\u4f1a\u628a\u6211\u8001\u516c\u8ba9\u7ed9\u4f60\u7684\u3002\u201d

\u201c\u6211\u4e0d\u62a2\u59d0\u59d0\u7684\u8001\u516c\u3002\u201d\u5973\u5b69\u513f\u4e00\u8138\u8ba4\u771f\u7684\u6447\u4e86\u6447\u5934\uff1a\u201c\u6211\u4eec\u5171\u4f8d\u4e00\u592b\uff0c\u600e\u4e48\u6837\uff1f\u201d

\u201c\uff01\uff01\uff01\u201d

\u4e0d\u600e\u4e48\u6837\uff01

\u767d\u9752\u5b87\u201c\u5657\u55e4\u201d\u4e00\u58f0\u7b11\u4e86\u51fa\u6765\uff0c\u5c31\u8fde\u58f0\u97f3\u90fd\u67d3\u4e0a\u4e86\u4e00\u4e1d\u7b11\u610f\uff1a\u201c\u6211\u89c9\u5f97\u53ef\u4ee5\u3002\u201d

\u201c\u6211\u89c9\u5f97\u4e0d\u53ef\u4ee5\uff01\u201d

\u201c\u59d0\u59d0\u3002\u201d\u90a3\u4e2a\u5973\u5b69\u513f\u4e0d\u4f9d\u7684\u6447\u4e86\u6447\u827e\u5609\u7684\u624b\u81c2\uff0c\u773c\u4e2d\u77ac\u95f4\u5c31\u76c8\u6ee1\u4e86\u6cea\u6c34\uff1a\u201c\u4f60\u770b\uff0c\u4ed6\u957f\u5f97\u8fd9\u4e48\u5e05\uff0c\u8fd8\u8fd9\u4e48\u6709\u94b1\uff0c\u80af\u5b9a\u80fd\u517b\u6d3b\u6211\u4eec\u4e24\u4e2a\u4eba\u7684\uff0c\u59d0\u59d0\uff0c\u4ee5\u540e\u6709\u597d\u4e1c\u897f\u4f60\u5148\u5403\uff0c\u597d\u8863\u670d\u4f60\u5148\u7a7f\uff0c\u6211\u4f1a\u4e56\u4e56\u542c\u4f60\u8bdd\u7684\u2026\u2026\u201d

\u827e\u5609\u670d\u4e86\u3002

\u5979\u7b2c\u4e00\u6b21\u77e5\u9053\u4ec0\u4e48\u53eb\u505a\u201c\u5927\u5199\u7684\u670d\u201d\u3002

\u770b\u7740\u827e\u5609\u51cc\u4e71\u7684\u8868\u60c5\uff0c\u767d\u9752\u5b87\u6709\u4e9b\u4e0d\u5fcd\uff1a\u201c\u767d\u6e05\u6c34\uff0c\u522b\u95f9\u4e86\u3002\u201d

\u767d\uff1f

\u8c01\u544a\u8bc9\u5979\u5730\u7f1d\u5728\u54ea\uff01

\u201c\u54e6\u3002\u201d\u89c1\u54e5\u54e5\u53d1\u8bdd\uff0c\u767d\u6e05\u6c34\u8c03\u76ae\u7684\u5410\u4e86\u5410\u820c\u5934\uff1a\u201c\u4f60\u5c31\u662f\u5609\u5609\u59d0\u59d0\u5427\uff0c\u54e5\u54e5\u524d\u51e0\u5929\u7684\u8822\u4e8b\u5df2\u7ecf\u6d41\u4f20\u5f00\u4e86\u3002\u201d

\u4e1d\u6beb\u4e0d\u6015\u767d\u9752\u5b87\u77aa\u8fc7\u6765\u7684\u76ee\u5149\uff0c\u5979\u5f00\u5fc3\u7684\u62c9\u4f4f\u827e\u5609\uff1a\u201c\u5609\u5609\u59d0\u59d0\uff0c\u6211\u54e5\u54e5\u8fd9\u4e2a\u4eba\u54ea\u70b9\u90fd\u597d\uff0c\u5c31\u662f\u5728\u8ba8\u5973\u5b69\u5b50\u559c\u6b22\u8fd9\u4ef6\u4e8b\u513f\u4e0a\u5c11\u4e00\u6839\u7b4b\uff0c\u4f60\u522b\u751f\u54e5\u54e5\u6c14\uff0c\u597d\u4e0d\u597d\u561b\uff1f\u201d

\u827e\u5609\u6ca1\u60f3\u5230\u5979\u662f\u767d\u9752\u5b87\u7684\u59b9\u59b9\uff0c\u6b64\u65f6\u4fcf\u8138\u4e00\u7ea2\uff0c\u53ea\u80fd\u55ef\u55ef\u554a\u554a\u7684\u7b54\u5e94\u7740\u3002

\u201c\u5609\u5609\u3002\u201d\u767d\u9752\u5b87\u4e5f\u6709\u4e9b\u4e0d\u81ea\u5728\uff0c\u90a3\u5929\u90a3\u4ef6\u4e8b\u513f\u786e\u5b9e\u662f\u4ed6\u6b20\u8003\u8651\u4e86\uff0c\u4ed6\u4e5f\u4e0d\u77e5\u9053\uff0c\u5f53\u65f6\u600e\u4e48\u5c31\u76f8\u4fe1\u674e\u98de\u6743\u90a3\u5b59\u5b50\u7684\u8bdd\u4e86\u3002

\u5176\u5b9e\u767d\u9752\u5b87\u8981\u662f\u4e00\u5f00\u59cb\u5c31\u548c\u5b66\u6821\u4eae\u51fa\u4ed6\u7684\u8eab\u4efd\uff0c\u5c31\u662f\u501f\u90a3\u4e2a\u6821\u957f\u5341\u4e2a\u80c6\u5b50\uff0c\u4ed6\u4e5f\u4e0d\u6562\u7092\u5979\u7684\u9c7f\u9c7c\u3002

\u53ef\u662f\u4e00\u6d89\u53ca\u5230\u8fd9\u4e2a\u53e4\u7075\u7cbe\u602a\u7684\u5973\u5b69\u513f\uff0c\u4ed6\u7684\u5927\u8111\u5c31\u4e0d\u4f1a\u601d\u8003\u4e86\u3002

\u5176\u5b9e\u4ed6\u60f3\u8fc7\u7ed9\u90a3\u4e2a\u6821\u957f\u65bd\u538b\uff0c\u6216\u8005\u8ba9\u5176\u4ed6\u5b66\u6821\u7684\u6821\u957f\u62db\u8058\u5979\u3002

\u4e0d\u8fc7\u674e\u98de\u6743\u7ed9\u4e86\u4ed6\u4e2a\u66f4\u597d\u7684\u601d\u8def\u3002

\u4ed6\u4e3a\u4ec0\u4e48\u8fd8\u4fe1\u90a3\u4e2a\u4eba\u7684\u8bdd\u2026\u2026

\u201c\u554a\uff1f\u201d

\u827e\u5609\u6b63\u5728\u96be\u4e3a\u60c5\uff0c\u542c\u89c1\u6709\u4eba\u53eb\u5979\uff0c\u5979\u4e0b\u610f\u8bc6\u7684\u7b54\u5e94\u4e86\u4e0b\u6765\u3002

\u201c\u5bf9\u4e0d\u8d77\u2026\u2026\u201d

\u767d\u6e05\u6c34\u89c1\u4e86\u9b3c\u4f3c\u7684\u76ef\u7740\u81ea\u5bb6\u54e5\u54e5\uff0c\u5979\u8033\u6735\u6709\u6ca1\u6709\u51fa\u6bdb\u75c5\uff1f\u767d\u9752\u5b87\u521a\u624d\u8bf4\u4ec0\u4e48\uff1f

\u201c\u554a\uff1f\u554a\u3002\u201d\u827e\u5609\u6320\u4e86\u6320\u8111\u888b\uff0c\u5176\u5b9e\u5979\u5fc3\u91cc\u672c\u6765\u633a\u6c14\u7684\uff0c\u4e0d\u8fc7\u89c1\u773c\u524d\u7684\u7537\u4eba\u653e\u8f6f\u4e86\u8eab\u6bb5\uff0c\u5979\u7a81\u7136\u4e5f\u4e0d\u597d\u610f\u601d\u8d77\u6765\uff1a\u201c\u6ca1\u4e8b\uff0c\u6ca1\u4e8b\uff0c\u591a\u5927\u70b9\u4e8b\uff0c\u6211\u6b63\u597d\u4e5f\u4e0d\u60f3\u5728\u90a3\u505a\u4e86\uff0c\u6b63\u597d\u6362\u4e2a\u73af\u5883\u3002\u54c8\u54c8\u2026\u2026\u201d

\u5e72\u7b11\u4e24\u58f0\uff0c\u5979\u81ea\u5df1\u4e5f\u89c9\u5f97\u7406\u7531\u6709\u4e9b\u7275\u5f3a\u3002

\u201c\u6211\u548c\u59d0\u59b9\u7ea6\u4e86\u901b\u8857\uff0c\u4f60\u4eec\u5148\u804a\u3002\u201d\u767d\u6e05\u6c34\u5728\u827e\u5609\u770b\u4e0d\u89c1\u7684\u89d2\u5ea6\u51b2\u81ea\u5bb6\u54e5\u54e5\u6bd4\u4e86\u4e00\u4e2a\u52a0\u6cb9\u7684\u624b\u52bf\uff0c\u627e\u4e86\u4e2a\u501f\u53e3\u5c31\u6e9c\u8d70\u4e86\u3002

\u89c1\u767d\u6e05\u6c34\u8d70\u4e86\uff0c\u827e\u5609\u66f4\u52a0\u5c34\u5c2c\u3002

\u201c\u90a3\u4e2a\u5565\u2026\u2026\u8981\u662f\u6ca1\u4e8b\u513f\u4e86\uff0c\u6211\u4e5f\u5148\u8d70\u4e86\u3002\u201d

\u827e\u5609\u521a\u8981\u8d70\uff0c\u5374\u88ab\u767d\u9752\u5b87\u4e00\u628a\u62fd\u4f4f\uff1a\u201c\u5609\u5609\uff0c\u4e3a\u4ec0\u4e48\u4e0d\u80fd\u548c\u6211\u5728\u4e00\u8d77\uff1f\u201d

\u77a7\u7740\u767d\u9752\u5b87\u4e00\u8138\u8ba4\u771f\uff0c\u827e\u5609\u96be\u5f97\u7684\u6536\u8d77\u4e86\u73a9\u7b11\u7684\u6001\u5ea6\u3002

\u201c\u767d\u9752\u5b87\uff0c\u6211\u627f\u8ba4\u4f60\u5f88\u6709\u9b45\u529b\uff0c\u54ea\u6015\u505a\u4e86\u8fd9\u4e9b\u2026\u2026\u8822\u4e8b\u2026\u2026\u4f46\u662f\u6211\u4eec\u4e0d\u5408\u9002\uff0c\u6211\u4eca\u5e7425\u4e86\uff0c\u60f3\u8e0f\u8e0f\u5b9e\u5b9e\u7684\u627e\u4e2a\u7537\u4eba\u604b\u7231\uff0c\u7ed3\u5a5a\u3002\u201d\u827e\u5609\u8ba4\u771f\u7684\u671b\u8fdb\u767d\u9752\u5b87\u7684\u7738\u5b50\u91cc\uff1a\u201c\u6700\u5f00\u59cb\u548c\u4f60\u5728\u4e00\u8d77\uff0c\u6211\u627f\u8ba4\u662f\u6709\u70b9\u548c\u9648\u660a\u8d4c\u6c14\uff0c\u540e\u6765\u5206\u624b\u4e5f\u6709\u70b9\u8d4c\u6c14\u2026\u2026\u201d

\u89c1\u767d\u9752\u5b87\u60f3\u8bf4\u8bdd\uff0c\u5979\u62ac\u624b\u6253\u4f4f\u3002

\u201c\u8bf4\u771f\u7684\uff0c\u4f60\u662f\u6240\u6709\u5973\u5b69\u5b50YY\u7684\u5bf9\u8c61\uff0c\u5e05\u6c14\uff0c\u591a\u91d1\uff0c\u4f46\u6211\u4e0d\u76f8\u4fe1\u7070\u59d1\u5a18\u771f\u7684\u80fd\u6210\u4e3a\u738b\u540e\u3002\u6211\u5c31\u662f\u666e\u901a\u5de5\u85aa\u5bb6\u5ead\u7684\u5b69\u5b50\uff0c\u767d\u9752\u5b87\uff0c\u6211\u966a\u4f60\u73a9\u4e0d\u8d77\u3002\u201d

\u767d\u9752\u5b87\u95fb\u8a00\u773c\u5e95\u65e0\u6ce2\u65e0\u6f9c\uff0c\u53ea\u662f\u5507\u89d2\u4f3c\u6709\u8bbd\u610f\u3002

\u201c\u4f60\u89c9\u5f97\u6211\u5728\u73a9\uff1f\u201d


"},{title:"\u7b2c5\u7ae0 \u4f60\u89c9\u5f97\u6211\u5728\u73a9\uff1f",chapter:1,isStart:!1,isEnd:!1,id:"4",sub:"\u7b2c5\u7ae0 \u4f60\u89c9\u5f97\u6211\u5728\u73a9\uff1f",content:"

\u7b2c5\u7ae0 \u4f60\u89c9\u5f97\u6211\u5728\u73a9\uff1f


\u4e0d\u51fa\u827e\u5609\u7684\u610f\u6599\uff0c\u7b2c\u4e8c\u5929\uff0c\u90a3\u4ef6\u4e8b\u513f\u679c\u7136\u6210\u4e86\u7126\u70b9\u3002

\u4f46\u6700\u8ba9\u827e\u5609\u6124\u6012\u7684\u662f\uff0c\u5a92\u4f53\u5e76\u4e0d\u77e5\u9053\u90a3\u4e2a\u7537\u4eba\u662f\u8c01\uff0c\u5374\u628a\u5979\u7956\u5b97\u5341\u516b\u4ee3\u90fd\u7ffb\u51fa\u6765\u4e86\u3002

\u4e0d\u8fc7\u7b2c\u4e09\u5929\uff0c\u4e8b\u60c5\u5c31\u88ab\u4eba\u538b\u4e86\u4e0b\u53bb\uff0c\u518d\u6ca1\u6709\u5a92\u4f53\u6562\u63d0\u3002\u4f46\u5404\u4e2a\u5b66\u6821\u4f9d\u65e7\u4e0d\u6562\u5728\u98ce\u53e3\u6d6a\u5c16\u513f\u4e0a\u96c7\u7528\u5979\u3002

\u671f\u95f4\u767d\u9752\u5b87\u4e5f\u6253\u8fc7\u7535\u8bdd\uff0c\u827e\u5609\u5374\u4e0d\u60f3\u63a5\u3002\u773c\u77a7\u7740\u4f59\u7cae\u4e0d\u591a\u4e86\uff0c\u827e\u5609\u4fbf\u6253\u7b97\u53bb\u8d85\u5e02\u4e70\u70b9\u3002\u4e0d\u8fc7\u4e0b\u4e86\u697c\uff0c\u5979\u53c8\u5230\u4e86\u5e02\u4e2d\u5fc3\u6b65\u884c\u8857\u3002

\u5973\u751f\u5fc3\u60c5\u4e0d\u597d\u600e\u4e48\u529e\uff1f\u5f53\u7136\u662f\u4e70\u4e70\u4e70\u554a\uff01\u7ba1\u5b83\u6709\u6ca1\u6709\u5b58\u6b3e\uff01

\u53ef\u60dc\u4e00\u5230\u6b65\u884c\u8857\uff0c\u827e\u5609\u7684\u5c0f\u5b87\u5b99\u77ac\u95f4\u7206\u53d1\u3002

\u4ec0\u4e48\u53eb\u51a4\u5bb6\u8def\u7a84\uff1f

\u767d\u9752\u5b87\u6b64\u65f6\u4e00\u8eab\u767d\u8272\u4f11\u95f2\u88c5\uff0c\u6b63\u5728\u548c\u8eab\u8fb9\u4e00\u4e2a\u4e8c\u5341\u5c81\u51fa\u5934\u7684\u5973\u5b69\u513f\u76f8\u8c08\u751a\u6b22\u3002\u90a3\u4e2a\u5973\u5b69\u4e5f\u5f88\u6f02\u4eae\uff0c\u4e00\u6839\u9a6c\u5c3e\u677e\u677e\u7684\u7ed1\u5728\u8111\u540e\uff0c\u7b11\u5bb9\u660e\u8273\u52a8\u4eba\u3002\u5979\u8fde\u5de5\u4f5c\u90fd\u6ca1\u4e86\uff0c\u4ed6\u8fd8\u5728\u6ce1\u59b9\u5b50\uff01\u8001\u5a18\u4e0d\u53d1\u5a01\uff0c\u4f60\u5f53\u6211\u662fhello kitty\uff01\u638f\u51fa\u624b\u673a\u770b\u4e86\u4e00\u4e0b\u81ea\u5df1\u7684\u5986\u5bb9\u548c\u53d1\u578b\uff0c\u5979\u62cd\u4e86\u62cd\u8138\uff0c\u626f\u51fa\u4e00\u62b9\u65e2\u5a07\u7f9e\uff0c\u53c8\u751c\u871c\u7684\u7b11\u5bb9\u3002

\u201c\u8001\u516c\uff5e\u201d

\u767d\u9752\u5b87\u7709\u5934\u4e00\u8df3\uff0c\u4ed6\u600e\u4e48\u542c\u5230\u827e\u5609\u7684\u58f0\u97f3\u4e86\uff1f\u60f3\u8d77\u8fd9\u51e0\u5929\u4e00\u76f4\u8eb2\u7740\u4ed6\u7684\u5973\u4eba\uff0c\u4ed6\u5fcd\u4e0d\u4f4f\u82e6\u7b11\uff0c\u90fd\u51fa\u5e7b\u89c9\u4e86\u3002

\u827e\u5609\u89c1\u767d\u9752\u5b87\u8fde\u5934\u90fd\u4e0d\u56de\uff0c\u6124\u6012\u66f4\u751a\u3002\u8e6d\u8e6d\u8dd1\u5230\u767d\u9752\u5b87\u548c\u90a3\u4e2a\u5973\u5b69\u513f\u4e2d\u95f4\uff0c\u5979\u7b11\u5bb9\u751c\u871c:\u201c\u8001\u516c\uff5e\u600e\u4e48\u4e0d\u63a5\u7535\u8bdd\u554a\uff5e\u201d\u767d\u9752\u5b87\u773c\u7738\u5fae\u5706\uff0c\u5f88\u5feb\u5c31\u53cd\u5e94\u8fc7\u6765\u600e\u4e48\u56de\u4e8b\u4e86\u3002

\u4f46\u6ca1\u7b49\u4ed6\u8bf4\u8bdd\uff0c\u827e\u5609\u7ee7\u7eed\u626e\u5a07\u7f9e:\u201c\u6211\u521a\u624d\u628a\u68c0\u67e5\u62a5\u544a\u53d6\u51fa\u6765\u4e86\uff0c\u4eba\u5bb6\u6000\u5b55\u4e86\u5566\uff5e\u201d\u201c\u6000\u5b55\uff1f\u201d\u767d\u9752\u5b87\u76b1\u7709\u53cd\u95ee\uff0c\u8fd9\u4e2a\u5973\u4eba\u600e\u4e48\u8111\u6d1e\u8fd9\u4e48\u5927\uff1f

\u201c\u8fd9\u4e0d\u662f\u591a\u4e8f\u8001\u516c\u5389\u5bb3\u561b\uff5e\u201d\u827e\u5609\u8bf4\u5230\u8fd9\u91cc\uff0c\u751a\u81f3\u7ea2\u4e86\u8138\u3002

\u201c\uff01\uff01\uff01\u201d

\u201c\u4f60\u662f\u4ed6\u59bb\u5b50\uff1f\u201d\u90a3\u4e2a\u5973\u5b69\u513f\u8868\u60c5\u6709\u4e9b\u602a\u5f02\u3002

\u201c\u5f53\u7136\u4e86\uff01\u201d

\u827e\u5609\u8868\u60c5\u5e78\u798f\uff0c\u4f46\u5fc3\u4e2d\u5374\u6697\u6697\u7ed9\u81ea\u4e2a\u513f\u6253\u6c14\u513f\uff0c\u5979\u975e\u5f97\u62c6\u6563\u4ed6\u4eec\uff01

\u201c\u53ef\u6211\u662f\u4ed6\u7684\u5973\u670b\u53cb\u3002\u201d\u5973\u5b69\u513f\u8868\u60c5\u6709\u4e9b\u5446\u5446\u7684\uff0c\u534a\u5929\u624d\u618b\u51fa\u8fd9\u4e48\u4e00\u53e5\u8bdd\u3002

\u6709\u4e86\u8fd9\u4e48\u6f02\u4eae\u7684\u5973\u670b\u53cb\uff0c\u8fd8\u6765\u62db\u60f9\u8001\u5a18\uff01

\u827e\u5609\u8868\u60c5\u60ca\u6050\uff0c\u597d\u50cf\u6ca1\u53cd\u5e94\u8fc7\u6765\u600e\u4e48\u56de\u4e8b\uff0c\u4e0d\u8fc7\u5f88\u5feb\uff0c\u5979\u4fbf\u4e00\u526f\u6ceb\u7136\u6b32\u6ce3\u7684\u6a21\u6837\uff1a\u201c\u7adf\u7136\u53c8\u80cc\u7740\u6211\u627e\u522b\u7684\u5973\u4eba\u3002\u201d

\u8f6c\u5934\u770b\u7740\u9762\u65e0\u8868\u60c5\u7684\u767d\u9752\u5b87\uff0c\u5979\u4f3c\u4e4e\u662f\u5728\u63a7\u8bc9\uff1a\u201c\u8001\u516c\uff0c\u5979\u662f\u8fd9\u4e2a\u6708\u7b2c\u51e0\u4e2a\u4e86\uff1f\u201d

\u767d\u9752\u5b87\u4f3c\u4e4e\u5fc3\u60c5\u4e0d\u9519\uff0c\u4ed6\u5507\u89d2\u4e00\u52fe\uff0c\u8bed\u6c14\u6beb\u4e0d\u8fdf\u7591\uff1a\u201c\u5c31\u4f60\u4eec\u4e24\u4e2a\u3002\u201d

\uff01\uff01\uff01

\u4e0d\u8981\u8138\uff01

\u4e0d\u7b49\u827e\u5609\u8bf4\u8bdd\uff0c\u90a3\u4e2a\u5973\u5b69\u513f\u9762\u4e0a\u5df2\u7ecf\u76c8\u4e0a\u4e86\u611f\u52a8\u7684\u795e\u8272\u3002

\u770b\u7740\u82f1\u4fca\u9ad8\u5927\u7684\u7537\u4eba\uff0c\u5979\u8bed\u6c14\u6fc0\u52a8\uff1a\u201c\u771f\u7684\u53ea\u6709\u6211\u4eec\u4e24\u4e2a\u4e48\uff1f\u592a\u597d\u4e86\uff0c\u6211\u80fd\u5f97\u5230\u4f60\u4e8c\u5206\u4e4b\u4e00\u7684\u7231\uff01\u201d

\u827e\u5609\u6709\u70b9\u8499\uff0c\u5267\u60c5\u4e0d\u5e94\u8be5\u8fd9\u4e48\u53d1\u5c55\u554a\u3002

\u8ff7\u832b\u7684\u770b\u4e86\u4e00\u773c\u5bf9\u9762\u7684\u5973\u5b69\u513f\uff0c\u5979\u5f88\u5feb\u628a\u76ee\u5149\u9501\u5728\u767d\u9752\u5b87\u7684\u8eab\u4e0a\u3002

\u4f60\u5c0f\u5b50\u5f88\u62db\u8702\u554a\u3002

\u767d\u9752\u5b87\u7709\u6bdb\u4e00\u6311\uff0c\u90a3\u5f53\u7136\u3002

\u201c\u59d0\u59d0\uff01\u201d\u90a3\u4e2a\u5973\u5b69\u513f\u6fc0\u52a8\u7684\u62fd\u4f4f\u827e\u5609\u7684\u80f3\u818a\uff0c\u6ee1\u8138\u7684\u4e5e\u6c42\uff1a\u201c\u59d0\u59d0\uff0c\u4f60\u80fd\u7b54\u5e94\u6211\u4e00\u4ef6\u4e8b\u513f\u4e48\uff1f\u201d

\u827e\u5609\u7728\u4e86\u7728\u773c\uff1a\u201c\u4e0d\u80fd\u3002\u201d

\u201c\u59d0\u59d0~\u201d

\u5979\u5feb\u8981\u88ab\u8fd9\u58f0\u59d0\u59d0\u7ed9\u53eb\u9165\u4e86\uff0c\u8fd9\u4e48\u597d\u7684\u5973\u5b69\u513f\uff0c\u600e\u4e48\u5c31\u975e\u5f97\u4e0a\u8fd9\u6761\u8d3c\u8239\u3002

\u201c\u6211\u4e0d\u4f1a\u628a\u6211\u8001\u516c\u8ba9\u7ed9\u4f60\u7684\u3002\u201d

\u201c\u6211\u4e0d\u62a2\u59d0\u59d0\u7684\u8001\u516c\u3002\u201d\u5973\u5b69\u513f\u4e00\u8138\u8ba4\u771f\u7684\u6447\u4e86\u6447\u5934\uff1a\u201c\u6211\u4eec\u5171\u4f8d\u4e00\u592b\uff0c\u600e\u4e48\u6837\uff1f\u201d

\u201c\uff01\uff01\uff01\u201d

\u4e0d\u600e\u4e48\u6837\uff01

\u767d\u9752\u5b87\u201c\u5657\u55e4\u201d\u4e00\u58f0\u7b11\u4e86\u51fa\u6765\uff0c\u5c31\u8fde\u58f0\u97f3\u90fd\u67d3\u4e0a\u4e86\u4e00\u4e1d\u7b11\u610f\uff1a\u201c\u6211\u89c9\u5f97\u53ef\u4ee5\u3002\u201d

\u201c\u6211\u89c9\u5f97\u4e0d\u53ef\u4ee5\uff01\u201d

\u201c\u59d0\u59d0\u3002\u201d\u90a3\u4e2a\u5973\u5b69\u513f\u4e0d\u4f9d\u7684\u6447\u4e86\u6447\u827e\u5609\u7684\u624b\u81c2\uff0c\u773c\u4e2d\u77ac\u95f4\u5c31\u76c8\u6ee1\u4e86\u6cea\u6c34\uff1a\u201c\u4f60\u770b\uff0c\u4ed6\u957f\u5f97\u8fd9\u4e48\u5e05\uff0c\u8fd8\u8fd9\u4e48\u6709\u94b1\uff0c\u80af\u5b9a\u80fd\u517b\u6d3b\u6211\u4eec\u4e24\u4e2a\u4eba\u7684\uff0c\u59d0\u59d0\uff0c\u4ee5\u540e\u6709\u597d\u4e1c\u897f\u4f60\u5148\u5403\uff0c\u597d\u8863\u670d\u4f60\u5148\u7a7f\uff0c\u6211\u4f1a\u4e56\u4e56\u542c\u4f60\u8bdd\u7684\u2026\u2026\u201d

\u827e\u5609\u670d\u4e86\u3002

\u5979\u7b2c\u4e00\u6b21\u77e5\u9053\u4ec0\u4e48\u53eb\u505a\u201c\u5927\u5199\u7684\u670d\u201d\u3002

\u770b\u7740\u827e\u5609\u51cc\u4e71\u7684\u8868\u60c5\uff0c\u767d\u9752\u5b87\u6709\u4e9b\u4e0d\u5fcd\uff1a\u201c\u767d\u6e05\u6c34\uff0c\u522b\u95f9\u4e86\u3002\u201d

\u767d\uff1f

\u8c01\u544a\u8bc9\u5979\u5730\u7f1d\u5728\u54ea\uff01

\u201c\u54e6\u3002\u201d\u89c1\u54e5\u54e5\u53d1\u8bdd\uff0c\u767d\u6e05\u6c34\u8c03\u76ae\u7684\u5410\u4e86\u5410\u820c\u5934\uff1a\u201c\u4f60\u5c31\u662f\u5609\u5609\u59d0\u59d0\u5427\uff0c\u54e5\u54e5\u524d\u51e0\u5929\u7684\u8822\u4e8b\u5df2\u7ecf\u6d41\u4f20\u5f00\u4e86\u3002\u201d

\u4e1d\u6beb\u4e0d\u6015\u767d\u9752\u5b87\u77aa\u8fc7\u6765\u7684\u76ee\u5149\uff0c\u5979\u5f00\u5fc3\u7684\u62c9\u4f4f\u827e\u5609\uff1a\u201c\u5609\u5609\u59d0\u59d0\uff0c\u6211\u54e5\u54e5\u8fd9\u4e2a\u4eba\u54ea\u70b9\u90fd\u597d\uff0c\u5c31\u662f\u5728\u8ba8\u5973\u5b69\u5b50\u559c\u6b22\u8fd9\u4ef6\u4e8b\u513f\u4e0a\u5c11\u4e00\u6839\u7b4b\uff0c\u4f60\u522b\u751f\u54e5\u54e5\u6c14\uff0c\u597d\u4e0d\u597d\u561b\uff1f\u201d

\u827e\u5609\u6ca1\u60f3\u5230\u5979\u662f\u767d\u9752\u5b87\u7684\u59b9\u59b9\uff0c\u6b64\u65f6\u4fcf\u8138\u4e00\u7ea2\uff0c\u53ea\u80fd\u55ef\u55ef\u554a\u554a\u7684\u7b54\u5e94\u7740\u3002

\u201c\u5609\u5609\u3002\u201d\u767d\u9752\u5b87\u4e5f\u6709\u4e9b\u4e0d\u81ea\u5728\uff0c\u90a3\u5929\u90a3\u4ef6\u4e8b\u513f\u786e\u5b9e\u662f\u4ed6\u6b20\u8003\u8651\u4e86\uff0c\u4ed6\u4e5f\u4e0d\u77e5\u9053\uff0c\u5f53\u65f6\u600e\u4e48\u5c31\u76f8\u4fe1\u674e\u98de\u6743\u90a3\u5b59\u5b50\u7684\u8bdd\u4e86\u3002

\u5176\u5b9e\u767d\u9752\u5b87\u8981\u662f\u4e00\u5f00\u59cb\u5c31\u548c\u5b66\u6821\u4eae\u51fa\u4ed6\u7684\u8eab\u4efd\uff0c\u5c31\u662f\u501f\u90a3\u4e2a\u6821\u957f\u5341\u4e2a\u80c6\u5b50\uff0c\u4ed6\u4e5f\u4e0d\u6562\u7092\u5979\u7684\u9c7f\u9c7c\u3002

\u53ef\u662f\u4e00\u6d89\u53ca\u5230\u8fd9\u4e2a\u53e4\u7075\u7cbe\u602a\u7684\u5973\u5b69\u513f\uff0c\u4ed6\u7684\u5927\u8111\u5c31\u4e0d\u4f1a\u601d\u8003\u4e86\u3002

\u5176\u5b9e\u4ed6\u60f3\u8fc7\u7ed9\u90a3\u4e2a\u6821\u957f\u65bd\u538b\uff0c\u6216\u8005\u8ba9\u5176\u4ed6\u5b66\u6821\u7684\u6821\u957f\u62db\u8058\u5979\u3002

\u4e0d\u8fc7\u674e\u98de\u6743\u7ed9\u4e86\u4ed6\u4e2a\u66f4\u597d\u7684\u601d\u8def\u3002

\u4ed6\u4e3a\u4ec0\u4e48\u8fd8\u4fe1\u90a3\u4e2a\u4eba\u7684\u8bdd\u2026\u2026

\u201c\u554a\uff1f\u201d

\u827e\u5609\u6b63\u5728\u96be\u4e3a\u60c5\uff0c\u542c\u89c1\u6709\u4eba\u53eb\u5979\uff0c\u5979\u4e0b\u610f\u8bc6\u7684\u7b54\u5e94\u4e86\u4e0b\u6765\u3002

\u201c\u5bf9\u4e0d\u8d77\u2026\u2026\u201d

\u767d\u6e05\u6c34\u89c1\u4e86\u9b3c\u4f3c\u7684\u76ef\u7740\u81ea\u5bb6\u54e5\u54e5\uff0c\u5979\u8033\u6735\u6709\u6ca1\u6709\u51fa\u6bdb\u75c5\uff1f\u767d\u9752\u5b87\u521a\u624d\u8bf4\u4ec0\u4e48\uff1f

\u201c\u554a\uff1f\u554a\u3002\u201d\u827e\u5609\u6320\u4e86\u6320\u8111\u888b\uff0c\u5176\u5b9e\u5979\u5fc3\u91cc\u672c\u6765\u633a\u6c14\u7684\uff0c\u4e0d\u8fc7\u89c1\u773c\u524d\u7684\u7537\u4eba\u653e\u8f6f\u4e86\u8eab\u6bb5\uff0c\u5979\u7a81\u7136\u4e5f\u4e0d\u597d\u610f\u601d\u8d77\u6765\uff1a\u201c\u6ca1\u4e8b\uff0c\u6ca1\u4e8b\uff0c\u591a\u5927\u70b9\u4e8b\uff0c\u6211\u6b63\u597d\u4e5f\u4e0d\u60f3\u5728\u90a3\u505a\u4e86\uff0c\u6b63\u597d\u6362\u4e2a\u73af\u5883\u3002\u54c8\u54c8\u2026\u2026\u201d

\u5e72\u7b11\u4e24\u58f0\uff0c\u5979\u81ea\u5df1\u4e5f\u89c9\u5f97\u7406\u7531\u6709\u4e9b\u7275\u5f3a\u3002

\u201c\u6211\u548c\u59d0\u59b9\u7ea6\u4e86\u901b\u8857\uff0c\u4f60\u4eec\u5148\u804a\u3002\u201d\u767d\u6e05\u6c34\u5728\u827e\u5609\u770b\u4e0d\u89c1\u7684\u89d2\u5ea6\u51b2\u81ea\u5bb6\u54e5\u54e5\u6bd4\u4e86\u4e00\u4e2a\u52a0\u6cb9\u7684\u624b\u52bf\uff0c\u627e\u4e86\u4e2a\u501f\u53e3\u5c31\u6e9c\u8d70\u4e86\u3002

\u89c1\u767d\u6e05\u6c34\u8d70\u4e86\uff0c\u827e\u5609\u66f4\u52a0\u5c34\u5c2c\u3002

\u201c\u90a3\u4e2a\u5565\u2026\u2026\u8981\u662f\u6ca1\u4e8b\u513f\u4e86\uff0c\u6211\u4e5f\u5148\u8d70\u4e86\u3002\u201d

\u827e\u5609\u521a\u8981\u8d70\uff0c\u5374\u88ab\u767d\u9752\u5b87\u4e00\u628a\u62fd\u4f4f\uff1a\u201c\u5609\u5609\uff0c\u4e3a\u4ec0\u4e48\u4e0d\u80fd\u548c\u6211\u5728\u4e00\u8d77\uff1f\u201d

\u77a7\u7740\u767d\u9752\u5b87\u4e00\u8138\u8ba4\u771f\uff0c\u827e\u5609\u96be\u5f97\u7684\u6536\u8d77\u4e86\u73a9\u7b11\u7684\u6001\u5ea6\u3002

\u201c\u767d\u9752\u5b87\uff0c\u6211\u627f\u8ba4\u4f60\u5f88\u6709\u9b45\u529b\uff0c\u54ea\u6015\u505a\u4e86\u8fd9\u4e9b\u2026\u2026\u8822\u4e8b\u2026\u2026\u4f46\u662f\u6211\u4eec\u4e0d\u5408\u9002\uff0c\u6211\u4eca\u5e7425\u4e86\uff0c\u60f3\u8e0f\u8e0f\u5b9e\u5b9e\u7684\u627e\u4e2a\u7537\u4eba\u604b\u7231\uff0c\u7ed3\u5a5a\u3002\u201d\u827e\u5609\u8ba4\u771f\u7684\u671b\u8fdb\u767d\u9752\u5b87\u7684\u7738\u5b50\u91cc\uff1a\u201c\u6700\u5f00\u59cb\u548c\u4f60\u5728\u4e00\u8d77\uff0c\u6211\u627f\u8ba4\u662f\u6709\u70b9\u548c\u9648\u660a\u8d4c\u6c14\uff0c\u540e\u6765\u5206\u624b\u4e5f\u6709\u70b9\u8d4c\u6c14\u2026\u2026\u201d

\u89c1\u767d\u9752\u5b87\u60f3\u8bf4\u8bdd\uff0c\u5979\u62ac\u624b\u6253\u4f4f\u3002

\u201c\u8bf4\u771f\u7684\uff0c\u4f60\u662f\u6240\u6709\u5973\u5b69\u5b50YY\u7684\u5bf9\u8c61\uff0c\u5e05\u6c14\uff0c\u591a\u91d1\uff0c\u4f46\u6211\u4e0d\u76f8\u4fe1\u7070\u59d1\u5a18\u771f\u7684\u80fd\u6210\u4e3a\u738b\u540e\u3002\u6211\u5c31\u662f\u666e\u901a\u5de5\u85aa\u5bb6\u5ead\u7684\u5b69\u5b50\uff0c\u767d\u9752\u5b87\uff0c\u6211\u966a\u4f60\u73a9\u4e0d\u8d77\u3002\u201d

\u767d\u9752\u5b87\u95fb\u8a00\u773c\u5e95\u65e0\u6ce2\u65e0\u6f9c\uff0c\u53ea\u662f\u5507\u89d2\u4f3c\u6709\u8bbd\u610f\u3002

\u201c\u4f60\u89c9\u5f97\u6211\u5728\u73a9\uff1f\u201d


"},{title:"\u7b2c6\u7ae0 \u897f\u98ce\u7626\u9a6c\u9a7e\u9a7e\u9a7e\uff0c\u80a0\u5b50\u65ad\u4e86\u554a\u554a\u554a",chapter:1,isStart:!1,isEnd:!1,id:"5",sub:"\u7b2c6\u7ae0 \u897f\u98ce\u7626\u9a6c\u9a7e\u9a7e\u9a7e\uff0c\u80a0\u5b50\u65ad\u4e86\u554a\u554a\u554a",content:"

\u7b2c6\u7ae0 \u897f\u98ce\u7626\u9a6c\u9a7e\u9a7e\u9a7e\uff0c\u80a0\u5b50\u65ad\u4e86\u554a\u554a\u554a


\u5176\u5b9e\u827e\u5609\u6ca1\u8bf4\u51fa\u53e3\u7684\u662f\uff0c\u5979\u8fd8\u5acc\u5f03\u4ed6\u60c5\u5546\u4f4e\u3002

\u4f46\u89c1\u767d\u9752\u5b87\u4f3c\u4e4e\u4e0d\u60a6\uff0c\u5979\u4fbf\u8bc6\u8da3\u7684\u6ca1\u6709\u8bf4\u8bdd\u3002

\u767d\u9752\u5b87\u6c89\u9ed8\u534a\u54cd\uff0c\u624d\u5f00\u53e3\u9053:\u201c\u6211\u77e5\u9053\u4e86\u3002\u201d

\u201c\u90a3\u6211\u8d70\u4e86\u3002\u201d

\u201c\u7b49\u7b49\uff0c\u4f60\u73b0\u5728\u627e\u5230\u5de5\u4f5c\u4e86\u4e48\uff1f\u201d

\u63d0\u8d77\u8fd9\u4ef6\u4e8b\u513f\uff0c\u827e\u5609\u53c8\u662f\u4e00\u809a\u5b50\u6c14\uff0c\u5374\u53c8\u4e0d\u597d\u53d1\u4f5c\u3002\u52c9\u5f3a\u7b11\u4e86\u7b11\uff0c\u5979\u6447\u4e86\u6447\u5934:\u8fd8\u6ca1\u6709\u3002\u201d

\u201c\u6211\u4f84\u5b50\u4eca\u5e74\u521d\u4e00\uff0c\u6b63\u60f3\u627e\u4e00\u4e2a\u5bb6\u5ead\u6559\u5e08\uff0c\u5982\u679c\u4f60\u4e0d\u4ecb\u610f\u7684\u8bdd\uff0c\u5c31\u6765\u8bd5\u8bd5\u5427\u3002\u4e00\u5468\u516b\u5c0f\u65f6\uff0c\u5de5\u8d44\u4e00\u4e2a\u6708\u516b\u5343\uff0c\u4ed6\u6210\u7ee9\u63d0\u9ad8\u4e86\u518d\u52a0\u94b1\u3002\u5c31\u5f53\u6211\u8d54\u7f6a\u4e86\u3002\u201c

\u201c\u8fd9\u4e48\u9ad8\uff01\u201d\u827e\u5609\u773c\u775b\u84e6\u5730\u7741\u5927\uff0c\u6709\u94b1\u4eba\u5bb6\u7684\u94b1\u90fd\u662f\u8fd9\u4e48\u82b1\u7684\u4e48\uff1f

\u201c\u5982\u679c\u4f60\u5acc\u9ad8\u7684\u8bdd\uff0c\u6211\u53ef\u4ee5\u518d\u964d\u70b9\u3002\u201d

\u201c\u4e0d\u5acc\u5f03\uff0c\u4e0d\u5acc\u5f03\uff01\u201d\u827e\u5609\u521a\u8bf4\u5b8c\u5c31\u540e\u6094\u4e86\uff0c\u5979\u8fd9\u4e48\u6fc0\u52a8\uff0c\u662f\u7b54\u5e94\u7684\u610f\u601d\u4e48\u2026\u2026

\u201c\u90a3\u597d\uff0c\u660e\u5929\u5c31\u4e0a\u73ed\u5427\u3002\u660e\u65e9\u516b\u70b9\uff0c\u6211\u8ba9\u53f8\u673a\u53bb\u63a5\u4f60\u3002\u201d

\u827e\u5609\u6390\u6307\u4e00\u7b97\uff0c\u5f31\u5f31\u5f00\u53e3:\u201c\u660e\u5929\u5468\u4e94\uff0c\u4ed6\u4e0d\u4e0a\u8bfe\u4e48\uff1f\u201d

\u201c\u8bed\u6587\u6210\u7ee9\u592a\u5dee\uff0c\u88ab\u8001\u5e08\u8d76\u56de\u5bb6\u53cd\u7701\u4e86\u3002\u201d

\u201c\u54e6\u2026\u2026\u201d\u8fd9\u4e2a\u8001\u5e08\u633a\u5947\u8469\u3002

\u201c\u6211\u8fd8\u6709\u70b9\u4e8b\uff0c\u5148\u8d70\u4e86\u3002\u660e\u5929\u89c1\u3002\u201d

\u201c\u660e\u5929\u89c1\u2026\u2026\u201d

\u77a7\u7740\u767d\u9752\u5b87\u7684\u80cc\u5f71\u5f7b\u5e95\u6d88\u5931\uff0c\u5979\u624d\u53cd\u5e94\u8fc7\u6765\uff0c\u4e00\u4e2a\u6708\u516b\u5343\u5757\uff0c\u8fd8\u8fd9\u4e48\u8f7b\u677e\u7684\u5de5\u4f5c\uff0c\u9985\u997c\u7838\u7684\u771f\u662f\u65f6\u5019\uff01

\u800c\u53e6\u4e00\u8fb9\uff0c\u767d\u9752\u5b87\u8fc5\u901f\u62e8\u901a\u4e86\u7ba1\u5bb6\u7684\u7535\u8bdd:\u201c\u738b\u53d4\uff0c\u7ed9\u767d\u5578\u7b19\u4e70\u672c\u8bed\u6587\u5377\u5b50\uff0c\u6574\u672c\u505a\u5b8c\uff0c\u6bcf\u5f20\u4e0d\u80fd\u8d85\u8fc7\u516d\u5341\u5206\u2026\u2026\u6211\u77e5\u9053\u4e00\u767e\u4e8c\u6ee1\u5206\u2026\u2026\u5bf9\uff0c\u56de\u53bb\u6211\u68c0\u67e5\u2026\u2026\u8fd8\u6709\uff0c\u660e\u5929\u4e0a\u5348\u7ed9\u4ed6\u8bf7\u5047\uff0c\u968f\u4fbf\u4f60\u7528\u4ec0\u4e48\u501f\u53e3\u3002\u201d

\u2026\u2026

\u5c31\u5728\u827e\u5609\u5f00\u5fc3\u5230\u5531\u6b4c\u7684\u65f6\u5019\uff0c\u767d\u5578\u7b19\u5374\u8868\u793a\u5fc3\u5f88\u7d2f\u3002\u8fd9\u79cd\u5f31\u667a\u5377\u5b50\u8ba9\u4ed6\u6574\u672c\u516d\u5341\u5206\u4ee5\u4e0b\uff01

\u201c\u5c0f\u5c11\u7237\uff0c\u4f60\u4e0d\u56de\u623f\u95f4\u4e48\uff1f\u201d\u738b\u4f2f\u770b\u7740\u767d\u5578\u7b19\u4e00\u8138\u6028\u5ff5\u7684\u8db4\u5728\u5ba2\u5385\u7684\u8336\u51e0\u4e0a\u5199\u5377\u5b50\uff0c\u83ab\u540d\u7684\u89c9\u5f97\u5fc3\u75bc\u3002

\u201c\u4e0d\u56de\uff01\u201d\u518d\u6b21\u6545\u610f\u9009\u9519\u4e00\u6392\u7b54\u6848\uff0c\u4ed6\u5728\u5fc3\u91cc\u5410\u69fd\u4e86\u5343\u4e07\u904d\u3002

\u767d\u9752\u5b87\u4e00\u8fdb\u5c4b\u5c31\u770b\u89c1\u4e00\u5f20\u6124\u6124\u4e0d\u5e73\u7684\u8138\uff0c\u5507\u89d2\u5fae\u52fe\uff0c\u4ed6\u6545\u610f\u9053:\u201c\u8fd8\u6ca1\u5199\u5b8c\u5462\uff1f\u901f\u5ea6\u4e0d\u884c\u554a\u3002\u201d

\u767d\u5578\u7b19\u4f9d\u65e7\u6028\u5ff5:\u201c\u53d4\u513f\uff0c\u4f60\u4e3a\u4ec0\u4e48\u8ba9\u6211\u5199\u8fd9\u79cd\u5f31\u667a\u5377\u5b50\u554a\uff1f\u201d

\u201c\u6211\u7ed9\u4f60\u627e\u4e86\u4e2a\u8bed\u6587\u5bb6\u5ead\u6559\u5e08\u3002\u201d

\u201c\u2026\u2026\u201d\u767d\u5578\u7b19\u773c\u89d2\u4e00\u62bd:\u201c\u6211\u719f\u8bfb\u56db\u4e66\u4e94\u7ecf\uff0c\u53e4\u4eca\u4e2d\u5916\u540d\u8457\uff01\u201d

\u767d\u9752\u5b87\u6de1\u6de1\u7684\u77a5\u4e86\u4e00\u773c:\u201c\u5439\u3002\u201d

\u4ed6\u7acb\u9a6c\u6cc4\u4e86\u6c14\uff0c\u4f46\u8fd8\u662f\u4e0d\u670d\u6c14\u7684\u8fa9\u89e3\u9053:\u201c\u4e5f\u8bfb\u8fc7\u4e00\u4e9b\u561b\uff0c\u800c\u4e14\u6211\u4e0d\u9700\u8981\u5bb6\u5ead\u6559\u5e08\u8fd9\u79cd\u751f\u7269\u3002\u201d\u5f00\u73a9\u7b11\uff0c\u4ed6\u7684\u6210\u7ee9\u5728\u5b66\u6821\u4e00\u76f4\u662f\u4e0d\u80fd\u6253\u7834\u7684\u795e\u8bdd\uff0c\u8fd8\u9700\u8981\u90a3\u79cd\u9b3c\u4e1c\u897f\u3002

\u5251\u7709\u4e00\u6311\uff0c\u4ed6\u6162\u6761\u65af\u7406\u7684\u628a\u5916\u8863\u9012\u7ed9\u5973\u4f63:\u201c\u4e0a\u4e00\u8282\u8bfe\uff0c\u5f53\u5929\u96f6\u82b1\u94b1\u52a0\u5341\u5757\u3002\u201d

\u767d\u5578\u7b19\u773c\u524d\u4e00\u4eae:\u201c\u90a3\u6211\u4e00\u5929\u5c31\u6709\u4e8c\u5341\u5757\u96f6\u82b1\u94b1\u4e86\uff01\u201d\u738b\u4f2f\u95fb\u8a00\u9ed8\u9ed8\u7684\u8f6c\u8eab\u4e0a\u4e86\u4e8c\u697c\uff0c\u90fd\u628a\u5c0f\u5c11\u7237\u7a77\u6210\u4ec0\u4e48\u6837\u4e86\u3002

\u201c\u4e0d\u8fc7\u2026\u2026\u201d\u767d\u9752\u5b87\u51b2\u6c99\u53d1\u4e0a\u7684\u4eba\u4e00\u7b11:\u201c\u4f60\u5f97\u542c\u6211\u7684\u3002\u201d

\u2026\u2026

  \u7b2c\u4e8c\u5929\uff0c\u679c\u7136\u6709\u53f8\u673a\u4e13\u7a0b\u6765\u63a5\u5979\u3002\u827e\u5609\u8fd9\u8f88\u5b50\u8fd8\u6ca1\u505a\u8fc7\u8fd9\u4e48\u597d\u7684\u8f66\uff0c\u5965\u8fea\u554a\uff01\u8fd9\u662f\u5965\u8fea\u554a\u3002\u76f4\u5230\u4e0b\u8f66\uff0c\u5979\u8fd8\u6ca1\u4ece\u521a\u624d\u7684\u5e78\u798f\u4e2d\u7f13\u8fc7\u52b2\u513f\u6765\u3002

\u201c\u767d\u5c0f\u59d0\uff1f\u201d\u53f8\u673a\u6253\u5f00\u8f66\u95e8\uff0c\u8bed\u6c14\u7591\u95ee\u3002

\u201c\u54e6\uff01\u201d\u6536\u56de\u5218\u59e5\u59e5\u4f3c\u7684\u76ee\u5149\uff0c\u5979\u5c3d\u91cf\u6dd1\u5973\u7684\u5f80\u91cc\u9762\u8d70\u3002

\u5165\u76ee\u5c3d\u5962\u534e\u3002\u8fd9\u91cc\u51e0\u4e4e\u4e86\u590d\u53e4\u4e2d\u4e16\u7eaa\u6b27\u6d32\u7684\u8d35\u65cf\u57ce\u5821\uff0c\u5c24\u5176\u662f\u90a3\u4e2a\u5706\u67f1\u5f62\u7684\u623f\u9876\u767b\u65f6\u8ba9\u5979\u6709\u79cd\u8bef\u5165\u7981\u5730\u7684\u9519\u89c9\u2026\u2026\u7a7f\u8fc7\u5de8\u5927\u7684\u8349\u576a\uff0c\u8def\u8fc7\u97f3\u4e50\u55b7\u6cc9\uff0c\u5979\u671b\u7740\u5b89\u9759\u5de5\u4f5c\u7684\u4f63\u4eba\u4eec\uff0c\u5410\u4e86\u5410\u820c\u5934\u3002

\u201c\u767d\u5c0f\u59d0\uff0c\u8bf7\u8ddf\u6211\u6765\u3002\u201d

\u201c\u597d\u3002\u201d\u5979\u5c0f\u5fc3\u7ffc\u7ffc\u7684\u8ddf\u5728\u4e00\u4f4d\u5973\u4f63\u7684\u8eab\u540e\uff0c\u5f80\u91cc\u9762\u8d70\u3002\u8d8a\u8fc7\u4e00\u6761\u5145\u65a5\u827a\u672f\u6c14\u606f\u7684\u957f\u5eca\uff0c\u5979\u88ab\u76f4\u63a5\u5f15\u5230\u4e86\u4e8c\u697c\u3002

\u201c\u767d\u5c0f\u59d0\uff0c\u5c0f\u5c11\u7237\u5728\u91cc\u9762\u3002\u201d\u5973\u4f63\u8eac\u8eab\u9000\u4e0b\u3002

\u6263\u6263\u6263\u3002

\u827e\u5609\u8f7b\u8f7b\u7684\u6572\u54cd\u623f\u95e8\uff0c\u91cc\u9762\u5f88\u5feb\u4fbf\u4f20\u6765\u4e00\u58f0\u4e0d\u8010\u70e6\u7684\u201c\u8fdb\u6765\u201d\u3002

\u6487\u4e86\u6487\u5634\uff0c\u5979\u89c1\u591a\u4e86\u8fd9\u79cd\u95ee\u9898\u5b66\u751f\u3002

\u4e00\u8fdb\u95e8\uff0c\u827e\u5609\u4fbf\u5c55\u5f00\u4e00\u4e2a\u53cb\u597d\u7684\u7b11\u5bb9:\u201c\u4f60\u597d\uff0c\u6211\u662f\u4f60\u7684\u5bb6\u5ead\u8001\u5e08\uff0c\u6211\u59d3\u827e\uff0c\u4f60\u53eb\u6211\u827e\u8001\u5e08\u5c31\u597d\u3002\u201d\u827e\u5609\u5c3d\u91cf\u4e0d\u8ba9\u81ea\u5df1\u8868\u73b0\u7684\u592a\u50cf\u5218\u59e5\u59e5\uff0c\u4f46\u5979\u7684\u773c\u775b\u8fd8\u662f\u4e0d\u81ea\u89c9\u7684\u626b\u89c6\u7740\u5367\u5ba4\u5185\u7684\u8bbe\u65bd\u3002

\u4e00\u8fdb\u95e8\u5c31\u662f\u4e00\u4e2a\u7528\u5c4f\u98ce\u9694\u5f00\u7684\u5c0f\u4e66\u623f\uff0c\u7d2b\u6a80\u6728\u7684\u4e66\u684c\u51e0\u4e4e\u5360\u636e\u4e86\u8fd9\u4e2a\u5c0f\u7a7a\u95f4\u7684\u4e00\u534a\uff0c\u800c\u4ed6\u7684\u684c\u5b50\u4e0a\u6563\u4e71\u7684\u5806\u7740\u51e0\u672c\u7ec3\u4e60\u518c\u3002

\u5979\u671d\u5c4f\u98ce\u90a3\u8fb9\u770b\u53bb\uff0c\u4f46\u662f\u5c4f\u98ce\u6726\u6726\u80e7\u80e7\u7684\u906e\u6321\u4e86\u89c6\u7ebf\u3002

\u201c\u827e\u8001\u5e08\u597d\u3002\u201d\u767d\u5578\u7b19\u6254\u6389\u624b\u4e2d\u521a\u521a\u505a\u5b8c\u7684\u8bed\u6587\u5377\u5b50\uff0c\u61d2\u6d0b\u6d0b\u7684\u95ee\u597d\u3002

\u827e\u5609\u4e5f\u4e0d\u4ecb\u610f\uff0c\u653e\u4e0b\u624b\u4e2d\u7684\u624b\u63d0\u5305\uff0c\u5979\u642c\u8fc7\u653e\u5728\u4e66\u684c\u53e6\u4e00\u8fb9\u7684\u6905\u5b50\uff0c\u5750\u5728\u767d\u5578\u7b19\u8eab\u8fb9\u3002

\u201c\u4f60\u4e66\u623f\u633a\u6f02\u4eae\u54c8\u3002\u201d

\u767d\u5578\u7b19\u95fb\u8a00\u4e00\u6123:\u201c\u8001\u5e08\uff0c\u8fd9\u662f\u6211\u5076\u5c14\u665a\u4e0a\u4e0d\u7761\u89c9\uff0c\u770b\u4e66\u7684\u5730\u65b9\u3002\u6211\u4e66\u623f\u5728\u4e8c\u697c\u5c3d\u5934\u3002\u201d

\u201c\u554a\uff1f\u201d\u827e\u5609\u5446\u5446\u7684\u53d1\u51fa\u4e86\u4e00\u58f0\u65e0\u610f\u4e49\u97f3\u8282\u3002

\u8c01\u544a\u8bc9\u5979\u4ec7\u5bcc\u4e24\u4e2a\u5b57\u600e\u4e48\u5199\uff1f

\u4e3a\u4e86\u8865\u6551\u4e00\u4e0b\u81ea\u8eab\u5f62\u8c61\uff0c\u5979\u54b3\u4e86\u4e00\u4e0b\uff0c\u7ee7\u7eed\u95ee\u9053:\u201c\u90fd\u559c\u6b22\u770b\u4ec0\u4e48\u4e66\uff1f\u201d

\u300a\u4e2d\u5eb8\u300b\u300a\u5927\u5b66\u300b\u300a\u6613\u7ecf\u300b\u3002

\u53ef\u60dc\u767d\u5578\u7b19\u4e0d\u6562\u8bf4\u3002

\u201c\u5341\u4e07\u4e2a\u4e3a\u4ec0\u4e48\u3002\u201d

\u201c\u2026\u2026\u201d

\u4e3a\u4e86\u4e0d\u8ba9\u6c14\u6c1b\u8fc7\u4e8e\u5c34\u5c2c\uff0c\u5979\u6025\u5fd9\u4f38\u624b\u53bb\u62fd\u767d\u5578\u7b19\u7684\u5377\u5b50:\u201c\u7ed9\u8001\u5e08\u770b\u770b\u4f60\u8bed\u6587\u5377\u5b50\u3002\u201d\u827e\u5609\u5728\u770b\u5230\u5377\u5b50\u4e4b\u540e\uff0c\u773c\u775b\u660e\u663e\u62bd\u6410\u4e86\u4e00\u4e0b\u3002

\u8fd9\u79cd\u5f31\u667a\u5377\u5b50\u8fd8\u80fd\u6574\u672c\u516d\u5341\u5206\u4ee5\u4e0b\uff1f

\u4e0d\u8fc7\u60f3\u5230\u4ed6\u662f\u767d\u9752\u5b87\u7684\u4f84\u5b50\uff0c\u53c8\u4e86\u7136\u7684\u70b9\u4e86\u70b9\u5934\u3002

\u6bd5\u7adf\u667a\u5546\u5bb6\u65cf\u9057\u4f20\u3002

\u201c\u4f60\u770b\u554a\uff0c\u8fd9\u4e9b\u53ea\u662f\u53e4\u8bd7\u6587\u9ed8\u5199\uff0c\u53ea\u9700\u8981\u80cc\u8bf5\u5c31\u53ef\u4ee5\u4e86\uff0c\u5206\u6570\u5f88\u597d\u8d5a\u7684\u3002\u201d\u827e\u5609\u60f3\u7740\u8d5a\u94b1\u4e0d\u5bb9\u6613\uff0c\u5343\u4e07\u4e0d\u80fd\u53d1\u706b\uff0c\u56e0\u6b64\u6545\u610f\u6e29\u67d4\u7684\u5bf9\u8eab\u4fa7\u4eba\u9053\uff1a\u201c\u73b0\u5728\u5feb\u6708\u8003\u4e86\u5427\uff0c\u6211\u4eec\u5148\u80cc\u8bf5\u53e4\u8bd7\u6587\uff0c\u4e89\u53d6\u8fd9\u6b21\u8003\u8bd5\uff0c\u8bed\u6587\u4e0a\u4e03\u5341\u5206\u3002\u201d

\u4e03\u5341\u4f60\u4e2a\u5934\uff01

\u767d\u5578\u7b19\u5fc3\u4e2d\u5486\u54ee\uff0c\u4f46\u8feb\u4e8e\u767d\u9752\u5b87\u7684\u6deb\u5a01\uff0c\u4ed6\u53ea\u80fd\u6545\u4f5c\u4e56\u5de7\u7684\u70b9\u4e86\u70b9\u5934\uff1a\u201c\u55ef\uff0c\u90a3\u5c31\u8f9b\u82e6\u8001\u5e08\u4e86\u3002\u201d

\u201c\u6211\u5148\u62bd\u67e5\u4e00\u4e0b\u3002\u201d\u827e\u5609\u7b11\u7740\u628a\u5377\u5b50\u5408\u4e0a\uff1a\u201c\u8001\u9aa5\u4f0f\u67a5\uff0c\u5fd7\u5728\u5343\u91cc\u3002\u201d

\u201c\u8fd9\u4e2a\u6211\u4f1a\u3002\u201d\u767d\u5578\u7b19\u5341\u5206\u81ea\u4fe1\uff1a\u201c\u70c8\u58eb\u66ae\u5e74\uff0c\u5df2\u7ecf\u4e0d\u4e3e\u3002\u201d

\u4e3e\u4f60\u59b9\uff01

\u201c\u5b64\u5c71\u5bfa\u5317\u8d3e\u4ead\u897f\uff0c\u6c34\u9762\u521d\u5e73\u4e91\u811a\u4f4e\u3002\u201d

\u201c\u51e0\u5904\u65e9\u83ba\u4e89\u6696\u6811\uff0c\u8c01\u5728\u88ab\u7a9d\u4e0d\u60f3\u8d77\u3002\u201d

\u88ab\u7a9d\u4f60\u59b9\uff01

\u201c\u6545\u4eba\u5177\u9e21\u9ecd\uff0c\u9080\u6211\u81f3\u7530\u5bb6\u3002\u201d

\u201c\u7eff\u6811\u6751\u8fb9\u5408\uff0c\u5708\u5708\u4e0e\u53c9\u53c9\u3002\u201d

\u6211\u53bb\u2026\u2026

\u201c\u2026\u2026\u4f60\u4f1a\u80cc\u6574\u9996\u7684\u4e48\uff1f\u201d

\u767d\u5578\u7b19\u60f3\u4e86\u60f3\uff0c\u5f31\u5f31\u7684\u6765\u4e86\u4e00\u53e5\uff1a\u201c\u5929\u51c0\u6c99 \u79cb\u601d\uff0c\u884c\u4e48\uff1f\u201d

\u201c\u884c\u3002\u201d

\u201c\u8001\u6811\u660f\u9e26\u560e\u560e\u560e\uff0c\u5c0f\u6865\u6d41\u6c34\u54d7\u54d7\u54d7\uff0c\u897f\u98ce\u7626\u9a6c\u9a7e\u9a7e\u9a7e\uff0c\u80a0\u5b50\u65ad\u4e86\u554a\u554a\u554a\u3002\u201d

\u767d\u5578\u7b19\u73a9\u7684\u5341\u5206\u5f00\u5fc3\uff0c\u4ed6\u751a\u81f3\u6ca1\u6ce8\u610f\u5230\uff0c\u67d0\u4e2a\u4eba\u5df2\u7ecf\u7ad9\u5230\u4e86\u8eab\u540e\u2026\u2026


"}];e.default=n},8788:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,e.divide=h,e.enableBoundaryChecking=v,e.minus=p,e.plus=f,e.round=_,e.times=d;var o=n(i("480f")),r=!0;function a(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:15;return+parseFloat(Number(t).toPrecision(e))}function s(t){var e=t.toString().split(/[eE]/),i=(e[0].split(".")[1]||"").length-+(e[1]||0);return i>0?i:0}function c(t){if(-1===t.toString().indexOf("e"))return Number(t.toString().replace(".",""));var e=s(t);return e>0?a(Number(t)*Math.pow(10,e)):Number(t)}function l(e){r&&(e>Number.MAX_SAFE_INTEGER||e2)return u(e,d);var n=e[0],o=e[1],r=c(n),a=c(o),f=s(n)+s(o),p=r*a;return l(p),p/Math.pow(10,f)}function f(){for(var t=arguments.length,e=new Array(t),i=0;i2)return u(e,f);var n=e[0],o=e[1],r=Math.pow(10,Math.max(s(n),s(o)));return(d(n,r)+d(o,r))/r}function p(){for(var t=arguments.length,e=new Array(t),i=0;i2)return u(e,p);var n=e[0],o=e[1],r=Math.pow(10,Math.max(s(n),s(o)));return(d(n,r)-d(o,r))/r}function h(){for(var t=arguments.length,e=new Array(t),i=0;i2)return u(e,h);var n=e[0],o=e[1],r=c(n),f=c(o);return l(r),l(f),d(r/f,a(Math.pow(10,s(o)-s(n))))}function _(t,e){var i=Math.pow(10,e),n=h(Math.round(Math.abs(d(t,i))),i);return t<0&&0!==n&&(n=d(n,-1)),n}function v(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];r=t}var m={times:d,plus:f,minus:p,divide:h,round:_,enableBoundaryChecking:v};e.default=m}).call(this,i("0de9")["default"])},"87d0":function(t,e){t.exports="/static/images/bookCity/ranking_four.png"},"884f":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{title:{type:String,default:uni.$u.props.cellGroup.title},border:{type:Boolean,default:uni.$u.props.cellGroup.border}}};e.default=n},"88de":function(t,e,i){"use strict";i.r(e);var n=i("703f"),o=i("755b");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},8901:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={overlay:{show:!1,zIndex:10070,duration:300,opacity:.5}}},8910:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("a34a")),r=n(i("c973")),a=(n(i("31af")),function(t){return{enter:"u-".concat(t,"-enter u-").concat(t,"-enter-active"),"enter-to":"u-".concat(t,"-enter-to u-").concat(t,"-enter-active"),leave:"u-".concat(t,"-leave u-").concat(t,"-leave-active"),"leave-to":"u-".concat(t,"-leave-to u-").concat(t,"-leave-active")}}),s={methods:{clickHandler:function(){this.$emit("click")},vueEnter:function(){var t=this,e=a(this.mode);this.status="enter",this.$emit("beforeEnter"),this.inited=!0,this.display=!0,this.classes=e.enter,this.$nextTick((0,r.default)(o.default.mark((function i(){return o.default.wrap((function(i){while(1)switch(i.prev=i.next){case 0:t.$emit("enter"),t.transitionEnded=!1,t.$emit("afterEnter"),t.classes=e["enter-to"];case 4:case"end":return i.stop()}}),i)}))))},vueLeave:function(){var t=this;if(this.display){var e=a(this.mode);this.status="leave",this.$emit("beforeLeave"),this.classes=e.leave,this.$nextTick((function(){t.transitionEnded=!1,t.$emit("leave"),setTimeout(t.onTransitionEnd,t.duration),t.classes=e["leave-to"]}))}},onTransitionEnd:function(){this.transitionEnded||(this.transitionEnded=!0,this.$emit("leave"===this.status?"afterLeave":"afterEnter"),!this.show&&this.display&&(this.display=!1,this.inited=!1))}}};e.default=s},"892e":function(t,e,i){"use strict";function n(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;if(t=String(t).toLowerCase(),t&&i.test(t)){if(4===t.length){for(var n="#",o=1;o<4;o+=1)n+=t.slice(o,o+1).concat(t.slice(o,o+1));t=n}for(var r=[],a=1;a<7;a+=2)r.push(parseInt("0x".concat(t.slice(a,a+2))));return e?"rgb(".concat(r[0],",").concat(r[1],",").concat(r[2],")"):r}if(/^(rgb|RGB)/.test(t)){var s=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",");return s.map((function(t){return Number(t)}))}return t}function o(t){var e=t;if(/^(rgb|RGB)/.test(e)){for(var i=e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),n="#",o=0;o0&&void 0!==arguments[0]?arguments[0]:"rgb(0, 0, 0)",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"rgb(255, 255, 255)",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,r=n(t,!1),a=r[0],s=r[1],c=r[2],l=n(e,!1),u=l[0],d=l[1],f=l[2],p=(u-a)/i,h=(d-s)/i,_=(f-c)/i,v=[],m=0;m2){for(var i="",n=0,o=t.length-2;n */ +e.read=function(t,e,i,n,o){var r,a,s=8*o-n-1,c=(1<>1,u=-7,d=i?o-1:0,f=i?-1:1,p=t[e+d];for(d+=f,r=p&(1<<-u)-1,p>>=-u,u+=s;u>0;r=256*r+t[e+d],d+=f,u-=8);for(a=r&(1<<-u)-1,r>>=-u,u+=n;u>0;a=256*a+t[e+d],d+=f,u-=8);if(0===r)r=1-l;else{if(r===c)return a?NaN:1/0*(p?-1:1);a+=Math.pow(2,n),r-=l}return(p?-1:1)*a*Math.pow(2,r-n)},e.write=function(t,e,i,n,o,r){var a,s,c,l=8*r-o-1,u=(1<>1,f=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:r-1,h=n?1:-1,_=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,a=u):(a=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-a))<1&&(a--,c*=2),e+=a+d>=1?f/c:f*Math.pow(2,1-d),e*c>=2&&(a++,c/=2),a+d>=u?(s=0,a=u):a+d>=1?(s=(e*c-1)*Math.pow(2,o),a+=d):(s=e*Math.pow(2,d-1)*Math.pow(2,o),a=0));o>=8;t[i+p]=255&s,p+=h,s/=256,o-=8);for(a=a<0;t[i+p]=255&a,p+=h,a/=256,l-=8);t[i+p-h]|=128*_}},"917f":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("4e38")),r=o.default.color,a={icon:{name:"",color:r["u-content-color"],size:"16px",bold:!1,index:"",hoverClass:"",customPrefix:"uicon",label:"",labelPos:"right",labelSize:"15px",labelColor:r["u-content-color"],space:"3px",imgMode:"",width:"",height:"",top:0,stop:!1}};e.default=a},"918e":function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("448a")),r=n(i("9523")),a=n(i("c808")),s=i("d0cf");function c(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function l(t){for(var e=1;e1&&void 0!==arguments[1]&&arguments[1];uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var o={custom:{token:!0}},r={ids:JSON.stringify(e)};uni.$u.http.post("/delBookshelf",r,o).then((function(t){uni.hideLoading(),1==t.status&&(i.getBooksData(),n&&i.bathComplete())})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/bookshelf/bookshelf/bookshelfListBody.vue:247")}))},checkedAllDel:function(){this.handelDeleteBookFn(this.booksIds,!0)},bathComplete:function(){this.swipeActionBatch=!1,this.delCheckedAll=[],this.booksIds=[],this.$emit("bookshelfContentBodyZindexFn",2);var t=(0,o.default)(this.bookshelfList);this.bookshelfList=t.map((function(t){return l(l({},t),{},{checkedFlag:[]})}))},toNovelReading:function(t){uni.navigateTo({url:"/pages/booksReadingDetail/booksReadingDetail?sid=".concat(t.sid,"&t=").concat(t.title)})}}};e.default=u}).call(this,i("0de9")["default"])},"922a":function(t,e,i){"use strict";i.r(e);var n=i("c266"),o=i("32f1");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},9253:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("0b8d")),r={name:"u-popup",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{overlayDuration:this.duration+50}},watch:{show:function(t,e){}},computed:{transitionStyle:function(){var t={zIndex:this.zIndex,position:"fixed",display:"flex"};return t[this.mode]=0,"left"===this.mode||"right"===this.mode?uni.$u.deepMerge(t,{bottom:0,top:0}):"top"===this.mode||"bottom"===this.mode?uni.$u.deepMerge(t,{left:0,right:0}):"center"===this.mode?uni.$u.deepMerge(t,{alignItems:"center","justify-content":"center",top:0,left:0,right:0,bottom:0}):void 0},contentStyle:function(){var t={},e=uni.$u.sys();e.safeAreaInsets;if("center"!==this.mode&&(t.flex=1),this.bgColor&&(t.backgroundColor=this.bgColor),this.round){var i=uni.$u.addUnit(this.round);"top"===this.mode?(t.borderBottomLeftRadius=i,t.borderBottomRightRadius=i):"bottom"===this.mode?(t.borderTopLeftRadius=i,t.borderTopRightRadius=i):"center"===this.mode&&(t.borderRadius=i)}return uni.$u.deepMerge(t,uni.$u.addStyle(this.customStyle))},position:function(){return"center"===this.mode?this.zoom?"fade-zoom":"fade":"left"===this.mode?"slide-left":"right"===this.mode?"slide-right":"bottom"===this.mode?"slide-up":"top"===this.mode?"slide-down":void 0}},methods:{overlayClick:function(){this.closeOnClickOverlay&&this.$emit("close")},close:function(t){this.$emit("close")},afterEnter:function(){this.$emit("open")},clickHandler:function(){"center"===this.mode&&this.overlayClick(),this.$emit("click")}}};e.default=r},"92c7":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{show:{type:Boolean,default:uni.$u.props.loadingIcon.show},color:{type:String,default:uni.$u.props.loadingIcon.color},textColor:{type:String,default:uni.$u.props.loadingIcon.textColor},vertical:{type:Boolean,default:uni.$u.props.loadingIcon.vertical},mode:{type:String,default:uni.$u.props.loadingIcon.mode},size:{type:[String,Number],default:uni.$u.props.loadingIcon.size},textSize:{type:[String,Number],default:uni.$u.props.loadingIcon.textSize},text:{type:[String,Number],default:uni.$u.props.loadingIcon.text},timingFunction:{type:String,default:uni.$u.props.loadingIcon.timingFunction},duration:{type:[String,Number],default:uni.$u.props.loadingIcon.duration},inactiveColor:{type:String,default:uni.$u.props.loadingIcon.inactiveColor}}};e.default=n},"92f6":function(t,e,i){"use strict";i.r(e);var n=i("3664"),o=i("a27e");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"ef32e44a",null,!1,n["a"],void 0);e["default"]=s.exports},9381:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","bookshelf_content"),attrs:{_i:0}},[i("CommNavBar",{attrs:{navBarList:t.navBarList,navBarActive:t.navBarActive,_i:1},on:{navBarClick:t.handelCommNavBar}}),i("view",{staticClass:t._$s(2,"sc","bookshelf_content_body"),style:t._$s(2,"s","z-index:"+t.bookshelfContentBodyZindex),attrs:{_i:2}},[i("scroll-view",{staticClass:t._$s(3,"sc","scroll_y"),attrs:{_i:3}},[i("view",{staticClass:t._$s(4,"sc","scroll_y_item"),attrs:{_i:4}},[i("view",{staticClass:t._$s(5,"sc","bookshelf_content_sign_in_box"),attrs:{_i:5},on:{click:t.toSignInBookCurrency}},[i("view",{staticClass:t._$s(6,"sc","_sign_in_box_tips"),attrs:{_i:6}},[i("view",{staticClass:t._$s(7,"sc","_sign_in_text"),attrs:{_i:7}},[i("text"),i("text",{staticClass:t._$s(9,"sc","_sign_in_Days"),attrs:{_i:9}},[t._v(t._$s(9,"t0-0",t._s(t.totalNum)))]),i("text")])])]),i("view",{staticClass:t._$s(11,"sc","bookshelf_list_body"),attrs:{_i:11}},[i("BookshelfListBody",{ref:"BookshelfListBody",attrs:{_i:12},on:{bookshelfContentBodyZindexFn:t.bookshelfContentBodyZindexFn}})],1)])])])],1)},o=[]},"938c":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={line:{color:"#d6d7d9",length:"100%",direction:"row",hairline:!0,margin:0,dashed:!1}}},9392:function(t,e,i){"use strict";i.r(e);var n=i("b440"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"93ae":function(t,e,i){"use strict";i.r(e);var n=i("44c2"),o=i("f5b9");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"44f9e467",null,!1,n["a"],void 0);e["default"]=s.exports},"93b6":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={section:{title:"",subTitle:"\u66f4\u591a",right:!0,fontSize:15,bold:!0,color:"#303133",subColor:"#909399",showLine:!0,lineColor:"",arrow:!0}}},"951a":function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uniIcons:i("88de").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","uni-navbar"),class:t._$s(0,"c",{"uni-dark":t.dark,"uni-nvue-fixed":t.fixed}),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","uni-navbar__content"),class:t._$s(1,"c",{"uni-navbar--fixed":t.fixed,"uni-navbar--shadow":t.shadow,"uni-navbar--border":t.border}),style:t._$s(1,"s",{"background-color":t.themeBgColor,"border-bottom-color":t.themeColor}),attrs:{_i:1}},[t._$s(2,"i",t.statusBar)?i("status-bar",{attrs:{_i:2}}):t._e(),i("view",{staticClass:t._$s(3,"sc","uni-navbar__header"),style:t._$s(3,"s",{color:t.themeColor,backgroundColor:t.themeBgColor,height:t.navbarHeight}),attrs:{_i:3}},[i("view",{staticClass:t._$s(4,"sc","uni-navbar__header-btns uni-navbar__header-btns-left"),style:t._$s(4,"s",{width:t.leftIconWidth}),attrs:{_i:4},on:{click:t.onClickLeft}},[t._t("left",[t._$s(6,"i",t.leftIcon.length>0)?i("view",{staticClass:t._$s(6,"sc","uni-navbar__content_view"),attrs:{_i:6}},[i("uni-icons",{attrs:{color:t.themeColor,type:t.leftIcon,size:"20",_i:7}})],1):t._e(),t._$s(8,"i",t.leftText.length)?i("view",{staticClass:t._$s(8,"sc","uni-navbar-btn-text"),class:t._$s(8,"c",{"uni-navbar-btn-icon-left":!t.leftIcon.length>0}),attrs:{_i:8}},[i("text",{style:t._$s(9,"s",{color:t.themeColor,fontSize:"12px"}),attrs:{_i:9}},[t._v(t._$s(9,"t0-0",t._s(t.leftText)))])]):t._e()],{_i:5})],2),i("view",{staticClass:t._$s(10,"sc","uni-navbar__header-container "),attrs:{_i:10},on:{click:t.onClickTitle}},[t._t("default",[t._$s(12,"i",t.title.length>0)?i("view",{staticClass:t._$s(12,"sc","uni-navbar__header-container-inner"),attrs:{_i:12}},[i("text",{staticClass:t._$s(13,"sc","uni-nav-bar-text uni-ellipsis-1"),style:t._$s(13,"s",{color:t.themeColor}),attrs:{_i:13}},[t._v(t._$s(13,"t0-0",t._s(t.title)))])]):t._e()],{_i:11})],2),i("view",{staticClass:t._$s(14,"sc","uni-navbar__header-btns uni-navbar__header-btns-right"),style:t._$s(14,"s",{width:t.rightIconWidth}),attrs:{_i:14},on:{click:t.onClickRight}},[t._t("right",[t._$s(16,"i",t.rightIcon.length)?i("view",[i("uni-icons",{attrs:{color:t.themeColor,type:t.rightIcon,size:"22",_i:17}})],1):t._e(),t._$s(18,"i",t.rightText.length&&!t.rightIcon.length)?i("view",{staticClass:t._$s(18,"sc","uni-navbar-btn-text"),attrs:{_i:18}},[i("text",{staticClass:t._$s(19,"sc","uni-nav-bar-right-text"),style:t._$s(19,"s",{color:t.themeColor}),attrs:{_i:19}},[t._v(t._$s(19,"t0-0",t._s(t.rightText)))])]):t._e()],{_i:15})],2)])],1),t._$s(20,"i",t.fixed)?i("view",{staticClass:t._$s(20,"sc","uni-navbar__placeholder"),attrs:{_i:20}},[t._$s(21,"i",t.statusBar)?i("status-bar",{attrs:{_i:21}}):t._e(),i("view",{staticClass:t._$s(22,"sc","uni-navbar__placeholder-view"),style:t._$s(22,"s",{height:t.navbarHeight}),attrs:{_i:22}})],1):t._e()])},r=[]},9523:function(t,e,i){var n=i("a395");t.exports=function(t,e,i){return e=n(e),e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t},t.exports.__esModule=!0,t.exports["default"]=t.exports},9593:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("a34a")),r=n(i("c973")),a=n(i("d395")),s={name:"u-picker",mixins:[uni.$u.mpMixin,uni.$u.mixin,a.default],data:function(){return{lastIndex:[],innerIndex:[],innerColumns:[],columnIndex:0}},watch:{defaultIndex:{immediate:!0,handler:function(t){this.setIndexs(t,!0)}},columns:{immediate:!0,handler:function(t){this.setColumns(t)}}},methods:{getItemText:function(t){return uni.$u.test.object(t)?t[this.keyName]:t},closeHandler:function(){this.closeOnClickOverlay&&this.$emit("close")},cancel:function(){this.$emit("cancel")},confirm:function(){var t=this;this.$emit("confirm",{indexs:this.innerIndex,value:this.innerColumns.map((function(e,i){return e[t.innerIndex[i]]})),values:this.innerColumns})},changeHandler:function(t){for(var e=t.detail.value,i=0,n=0,o=0;othis.columnIndex&&(i[n]=0);this.setIndexs(i)},getColumnValues:function(t){return(0,r.default)(o.default.mark((function t(){return o.default.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,uni.$u.sleep();case 2:case"end":return t.stop()}}),t)})))(),this.innerColumns[t]},setColumns:function(t){this.innerColumns=uni.$u.deepClone(t),0===this.innerIndex.length&&(this.innerIndex=new Array(t.length).fill(0))},getIndexs:function(){return this.innerIndex},getValues:function(){var t=this;return(0,r.default)(o.default.mark((function t(){return o.default.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,uni.$u.sleep();case 2:case"end":return t.stop()}}),t)})))(),this.innerColumns.map((function(e,i){return e[t.innerIndex[i]]}))}}};e.default=s},"959f":function(t,e,i){"use strict";i.r(e);var n=i("1f56"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},"95c6":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={backtop:{mode:"circle",icon:"arrow-upward",text:"",duration:100,scrollTop:0,top:400,bottom:100,right:20,zIndex:9,iconStyle:function(){return{color:"#909399",fontSize:"19px"}}}}},9662:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("1817")),r={data:function(){return{isLoadmore:!1,loadmoreStatus:"",isPageFirst:!1}},computed:{loadmoreOptionsSync:function(){return Object.assign({},{show:!1,row:!1,defaultText:"\u4e0a\u62c9\u6216\u70b9\u51fb\u52a0\u8f7d",refreshingText:"\u6b63\u5728\u52a0\u8f7d",successText:"\u52a0\u8f7d\u6210\u529f\uff0c\u70b9\u51fb\u7ee7\u7eed",failText:"\u52a0\u8f7d\u5931\u8d25\uff0c\u70b9\u51fb\u91cd\u8bd5",endText:"\u6570\u636e\u52a0\u8f7d\u5b8c\u6bd5",color:"#333333",bottom:0},"Object"==o.default.typeof(this.loadmore)?this.loadmore:"Boolean"==o.default.typeof(this.loadmore)?{show:this.loadmore}:{})}},mounted:function(){this.$nextTick((function(){var t=this;setTimeout((function(){t.isPageFirst=!0}),1e3)}))},methods:{onScrolltolower:function(){var t=this;(this.isPageFirst||"page"!=this.typeSync)&&(this.isLoadmore||(this.isLoadmore=!0,this.loadmoreStatus="loading",this.$emit("loadmore",(function(e){t.loadmoreStatus=e,"fail"!=e&&"end"!=e&&(t.isLoadmore=!1)}))))},resetLoadmore:function(){this.loadmoreStatus="",this.isLoadmore=!1},setLoadmoreEnd:function(){this.loadmoreStatus="end",this.isLoadmore=!0},setLoadmoreSuccess:function(){this.loadmoreStatus="success",this.isLoadmore=!1},setLoadmoreFail:function(){this.loadmoreStatus="fail",this.isLoadmore=!1},reload:function(){this.isLoadmore=!1,this.onScrolltolower()}}};e.default=r},"96ab":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("cef1")),r={name:"u-search",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{keyword:"",showClear:!1,show:!1,focused:this.focus}},watch:{keyword:function(t){this.$emit("input",t),this.$emit("change",t)},value:{immediate:!0,handler:function(t){this.keyword=t}}},computed:{showActionBtn:function(){return!this.animation&&this.showAction}},methods:{inputChange:function(t){this.keyword=t.detail.value},clear:function(){var t=this;this.keyword="",this.$nextTick((function(){t.$emit("clear")}))},search:function(t){this.$emit("search",t.detail.value);try{uni.hideKeyboard()}catch(t){}},custom:function(){this.$emit("custom",this.keyword);try{uni.hideKeyboard()}catch(t){}},getFocus:function(){this.focused=!0,this.animation&&this.showAction&&(this.show=!0),this.$emit("focus",this.keyword)},blur:function(){var t=this;setTimeout((function(){t.focused=!1}),100),this.show=!1,this.$emit("blur",this.keyword)},clickHandler:function(){this.disabled&&this.$emit("click")},clickIcon:function(){this.$emit("clickIcon")}}};e.default=r},"970b":function(t,e){t.exports=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},t.exports.__esModule=!0,t.exports["default"]=t.exports},"97ae":function(t,e,i){"use strict";var n=i("4ea4"),o=n(i("9523"));i("adff");var r=n(i("cf09")),a=n(i("f21f")),s=n(i("8bbf"));function c(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}i("d5b0"),s.default.use(a.default),s.default.config.productionTip=!1,r.default.mpType="app";var l=new s.default(function(t){for(var e=1;e=120?"ready":""),this.$emit("pullingdown",t))},pullingup:function(t){this.$emit("pullingup",t)},resetPulldownIns:function(){var t=this;this.pulldownTimer=setTimeout((function(){"end"!=t.pulldownStatus&&(t.pulldownStatus=""),t.pulldownRestore=!1,clearTimeout(t.pulldownTimer),t.pulldownTimer=null}),this.pulldownOptionsSync.duration)},resetPulldown:function(){this.pulldownStatus=""}}};e.default=r},"9e33":function(t,e){t.exports="/static/images/novelReading/bookshelf_333.png"},"9e3c":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("58b9")),r={name:"u-grid",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{index:0,width:0}},watch:{parentData:function(){this.children.length&&this.children.map((function(t){"function"==typeof t.updateParentData&&t.updateParentData()}))}},created:function(){this.children=[]},computed:{parentData:function(){return[this.hoverClass,this.col,this.size,this.border]},gridStyle:function(){var t={};switch(this.align){case"left":t.justifyContent="flex-start";break;case"center":t.justifyContent="center";break;case"right":t.justifyContent="flex-end";break;default:t.justifyContent="flex-start"}return uni.$u.deepMerge(t,uni.$u.addStyle(this.customStyle))}},methods:{childClick:function(t){this.$emit("click",t)}}};e.default=r},"9ec0":function(t,e,i){"use strict";i.r(e);var n=i("b6c1"),o=i("d9bb");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},"9ee5":function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={empty:{icon:"",text:"",textColor:"#c0c4cc",textSize:14,iconColor:"#c0c4cc",iconSize:90,mode:"data",width:160,height:160,show:!0,marginTop:0}}},"9f53":function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("7037")),r=function(){function e(t,e){return null!=e&&t instanceof e}var i,n,r;try{i=Map}catch(l){i=function(){}}try{n=Set}catch(l){n=function(){}}try{r=Promise}catch(l){r=function(){}}function a(s,l,u,d,f){"object"===(0,o.default)(l)&&(u=l.depth,d=l.prototype,f=l.includeNonEnumerable,l=l.circular);var p=[],h=[],_="undefined"!=typeof t;return"undefined"==typeof l&&(l=!0),"undefined"==typeof u&&(u=1/0),function s(u,v){if(null===u)return null;if(0===v)return u;var m,g;if("object"!=(0,o.default)(u))return u;if(e(u,i))m=new i;else if(e(u,n))m=new n;else if(e(u,r))m=new r((function(t,e){u.then((function(e){t(s(e,v-1))}),(function(t){e(s(t,v-1))}))}));else if(a.__isArray(u))m=[];else if(a.__isRegExp(u))m=new RegExp(u.source,c(u)),u.lastIndex&&(m.lastIndex=u.lastIndex);else if(a.__isDate(u))m=new Date(u.getTime());else{if(_&&t.isBuffer(u))return t.from?m=t.from(u):(m=new t(u.length),u.copy(m)),m;e(u,Error)?m=Object.create(u):"undefined"==typeof d?(g=Object.getPrototypeOf(u),m=Object.create(g)):(m=Object.create(d),g=d)}if(l){var b=p.indexOf(u);if(-1!=b)return h[b];p.push(u),h.push(m)}for(var y in e(u,i)&&u.forEach((function(t,e){var i=s(e,v-1),n=s(t,v-1);m.set(i,n)})),e(u,n)&&u.forEach((function(t){var e=s(t,v-1);m.add(e)})),u){var x=Object.getOwnPropertyDescriptor(u,y);x&&(m[y]=s(u[y],v-1));try{var w=Object.getOwnPropertyDescriptor(u,y);if("undefined"===w.set)continue;m[y]=s(u[y],v-1)}catch(I){if(I instanceof TypeError)continue;if(I instanceof ReferenceError)continue}}if(Object.getOwnPropertySymbols){var $=Object.getOwnPropertySymbols(u);for(y=0;y<$.length;y++){var C=$[y],k=Object.getOwnPropertyDescriptor(u,C);(!k||k.enumerable||f)&&(m[C]=s(u[C],v-1),Object.defineProperty(m,C,k))}}if(f){var S=Object.getOwnPropertyNames(u);for(y=0;y0&&void 0!==a[0]?a[0]:{},i=a.length>1&&void 0!==a[1]?a[1]:{},n={},"string"===typeof e?(n.url=this.mixinParam(e,i),n.type="navigateTo"):(n=uni.$u.deepMerge(this.config,e),n.url=this.mixinParam(e.url,e.params)),n.url!==uni.$u.page()){t.next=6;break}return t.abrupt("return");case 6:if(i.intercept&&(this.config.intercept=i.intercept),n.params=i,n=uni.$u.deepMerge(this.config,n),"function"!==typeof uni.$u.routeIntercept){t.next=16;break}return t.next=12,new Promise((function(t,e){uni.$u.routeIntercept(n,t)}));case 12:r=t.sent,r&&this.openPage(n),t.next=17;break;case 16:this.openPage(n);case 17:case"end":return t.stop()}}),t,this)})));return function(){return t.apply(this,arguments)}}()},{key:"openPage",value:function(t){var e=t.url,i=(t.type,t.delta),n=t.animationType,o=t.animationDuration;"navigateTo"!=t.type&&"to"!=t.type||uni.navigateTo({url:e,animationType:n,animationDuration:o}),"redirectTo"!=t.type&&"redirect"!=t.type||uni.redirectTo({url:e}),"switchTab"!=t.type&&"tab"!=t.type||uni.switchTab({url:e}),"reLaunch"!=t.type&&"launch"!=t.type||uni.reLaunch({url:e}),"navigateBack"!=t.type&&"back"!=t.type||uni.navigateBack({delta:i})}}]),t}(),l=(new c).route;e.default=l},ab82:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("1730")),r={components:{OriginalBoolItem:o.default},props:{dataList:{type:Array,default:[]}},data:function(){return{}},methods:{toBooksReadingDetail:function(t){uni.navigateTo({url:"/pages/booksReadingDetail/booksReadingDetail?sid=".concat(t.id,"&t=").concat(t.title)})}}};e.default=r},adb9:function(t,e,i){"use strict";i.r(e);var n=i("4742"),o=i("d8eb");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"599ead9e",null,!1,n["a"],void 0);e["default"]=s.exports},adff:function(t,e,i){if("undefined"===typeof Promise||Promise.prototype.finally||(Promise.prototype.finally=function(t){var e=this.constructor;return this.then((function(i){return e.resolve(t()).then((function(){return i}))}),(function(i){return e.resolve(t()).then((function(){throw i}))}))}),"undefined"!==typeof uni&&uni&&uni.requireGlobal){var n=uni.requireGlobal();ArrayBuffer=n.ArrayBuffer,Int8Array=n.Int8Array,Uint8Array=n.Uint8Array,Uint8ClampedArray=n.Uint8ClampedArray,Int16Array=n.Int16Array,Uint16Array=n.Uint16Array,Int32Array=n.Int32Array,Uint32Array=n.Uint32Array,Float32Array=n.Float32Array,Float64Array=n.Float64Array,BigInt64Array=n.BigInt64Array,BigUint64Array=n.BigUint64Array}uni.restoreGlobal&&uni.restoreGlobal(weex,plus,setTimeout,clearTimeout,setInterval,clearInterval),__definePage("pages/bookCity/bookCity/index",(function(){return Vue.extend(i("36d5").default)})),__definePage("pages/bookshelf/bookshelf/index",(function(){return Vue.extend(i("9921").default)})),__definePage("pages/login/login",(function(){return Vue.extend(i("312c").default)})),__definePage("pages/loginMobile/loginMobile",(function(){return Vue.extend(i("573a").default)})),__definePage("pages/classification/classification/index",(function(){return Vue.extend(i("6609").default)})),__definePage("pages/myInfo/myInfo/index",(function(){return Vue.extend(i("0824").default)})),__definePage("pages/myInfo/aboutMy/index",(function(){return Vue.extend(i("7f6d").default)})),__definePage("pages/myInfo/mySetUp/index",(function(){return Vue.extend(i("2ce5").default)})),__definePage("pages/myInfo/problemList/index",(function(){return Vue.extend(i("1484").default)})),__definePage("pages/myInfo/problemDetail/index",(function(){return Vue.extend(i("5271").default)})),__definePage("pages/voucherCenter/index",(function(){return Vue.extend(i("a71a").default)})),__definePage("pages/readingRecords/index",(function(){return Vue.extend(i("1cfe").default)})),__definePage("pages/signInBookCurrency/index",(function(){return Vue.extend(i("5f72").default)})),__definePage("pages/booksListAll/index",(function(){return Vue.extend(i("d0bd").default)})),__definePage("pages/booksTheCharts/index",(function(){return Vue.extend(i("fc09").default)})),__definePage("pages/voucherCenterDetail/index",(function(){return Vue.extend(i("0c64").default)})),__definePage("pages/bookCoinDetail/bookCoinDetail",(function(){return Vue.extend(i("11d4").default)})),__definePage("pages/giveCoinDetail/giveCoinDetail",(function(){return Vue.extend(i("dbad").default)})),__definePage("pages/booksSearchList/booksSearchList",(function(){return Vue.extend(i("ce1a").default)})),__definePage("pages/novelReading/novelReading",(function(){return Vue.extend(i("2da2").default)})),__definePage("pages/booksReadingDetail/booksReadingDetail",(function(){return Vue.extend(i("e33f").default)})),__definePage("pages/bookRecommendList/bookRecommendList",(function(){return Vue.extend(i("c67f").default)}))},ae80:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uGap:i("1814").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","booksReadingDetail_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","step_book_basic_info"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","step_book_basic_info_comm"),attrs:{_i:2}},[i("BookBasicInfo",{attrs:{bookInfo:t.bookInfo,_i:3}})],1)]),i("view",{staticClass:t._$s(4,"sc","step_book_other_info"),attrs:{_i:4}},[i("view",{staticClass:t._$s(5,"sc","step_book_other_info_comm"),attrs:{_i:5}},[i("BookOtherInfo",{attrs:{bookInfo:t.bookInfo,_i:6}})],1)]),i("view",{staticClass:t._$s(7,"sc","step_book_synopsis_info"),attrs:{_i:7}},[i("view",{staticClass:t._$s(8,"sc","step_book_synopsis_info_comm"),attrs:{_i:8}},[i("BookSynopsisInfo",{attrs:{bookInfo:t.bookInfo,_i:9}})],1)]),i("view",{staticClass:t._$s(10,"sc","step_book_chapter_info"),attrs:{_i:10}},[i("view",{staticClass:t._$s(11,"sc","step_book_chapter_info_comm"),attrs:{_i:11}},[i("BookChapterInfo",{attrs:{directoryCount:t.directoryCount,bookDirectory:t.bookDirectory,bookSid:t.bookSid,bookInfo:t.bookInfo,_i:12}})],1)]),i("view",[i("u-gap",{attrs:{height:"14rpx",bgColor:"#F6F6F6",_i:14}})],1),i("view",{staticClass:t._$s(15,"sc","step_book_recommend_info"),attrs:{_i:15}},[i("view",{staticClass:t._$s(16,"sc","step_book_recommend_info_comm"),attrs:{_i:16}},[i("BookRecommendInfo",{attrs:{recommendBooks:t.recommendBooks,bookSid:t.bookSid,_i:17}})],1)]),i("view",{staticClass:t._$s(18,"sc","step_book_button_info"),attrs:{_i:18}},[i("view",{staticClass:t._$s(19,"sc","step_book_button_info_comm"),attrs:{_i:19}},[t._$s(20,"i",!t.bookcase)?i("view",{staticClass:t._$s(20,"sc","_add_book_shelf"),attrs:{_i:20},on:{click:t.addBookshelf}}):i("view",{staticClass:t._$s(21,"sc","_add_book_shelf active"),attrs:{_i:21}}),i("view",{staticClass:t._$s(22,"sc","_start_read_book"),attrs:{_i:22},on:{click:t.toNovelReading}})])])])},r=[]},aee9:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={numberKeyboard:{mode:"number",dotDisabled:!1,random:!1}}},af76:function(t,e,i){"use strict";i.r(e);var n=i("4eec"),o=i("0f2e");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},b00a:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uIcon:i("7b88").default,uLine:i("030c").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","u-cell"),class:t._$s(0,"c",[t.customClass]),style:t._$s(0,"s",[t.$u.addStyle(t.customStyle)]),attrs:{"hover-class":t._$s(0,"a-hover-class",t.disabled||!t.clickable&&!t.isLink?"":"u-cell--clickable"),_i:0},on:{click:t.clickHandler}},[i("view",{staticClass:t._$s(1,"sc","u-cell__body"),class:t._$s(1,"c",[t.center&&"u-cell--center","large"===t.size&&"u-cell__body--large"]),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","u-cell__body__content"),attrs:{_i:2}},[t._$s(3,"i",t.$slots.icon||t.icon)?i("view",{staticClass:t._$s(3,"sc","u-cell__left-icon-wrap"),attrs:{_i:3}},[t._$s(4,"i",t.$slots.icon)?t._t("icon",null,{_i:4}):i("u-icon",{attrs:{name:t.icon,"custom-style":t.iconStyle,size:"large"===t.size?22:18,_i:5}})],2):t._e(),i("view",{staticClass:t._$s(6,"sc","u-cell__title"),attrs:{_i:6}},[t._t("title",[t._$s(8,"i",t.title)?i("text",{staticClass:t._$s(8,"sc","u-cell__title-text"),class:t._$s(8,"c",[t.disabled&&"u-cell--disabled","large"===t.size&&"u-cell__title-text--large"]),style:t._$s(8,"s",[t.titleTextStyle]),attrs:{_i:8}},[t._v(t._$s(8,"t0-0",t._s(t.title)))]):t._e()],{_i:7}),t._t("label",[t._$s(10,"i",t.label)?i("text",{staticClass:t._$s(10,"sc","u-cell__label"),class:t._$s(10,"c",[t.disabled&&"u-cell--disabled","large"===t.size&&"u-cell__label--large"]),attrs:{_i:10}},[t._v(t._$s(10,"t0-0",t._s(t.label)))]):t._e()],{_i:9})],2)]),t._t("value",[t._$s(12,"i",!t.$u.test.empty(t.value))?i("text",{staticClass:t._$s(12,"sc","u-cell__value"),class:t._$s(12,"c",[t.disabled&&"u-cell--disabled","large"===t.size&&"u-cell__value--large"]),attrs:{_i:12}},[t._v(t._$s(12,"t0-0",t._s(t.value)))]):t._e()],{_i:11}),t._$s(13,"i",t.$slots["right-icon"]||t.isLink)?i("view",{staticClass:t._$s(13,"sc","u-cell__right-icon-wrap"),class:t._$s(13,"c",["u-cell__right-icon-wrap--"+t.arrowDirection]),attrs:{_i:13}},[t._$s(14,"i",t.$slots["right-icon"])?t._t("right-icon",null,{_i:14}):i("u-icon",{attrs:{name:t.rightIcon,"custom-style":t.rightIconStyle,color:t.disabled?"#c8c9cc":"info",size:"large"===t.size?18:16,_i:15}})],2):t._e()],2),t._$s(16,"i",t.border)?i("u-line",{attrs:{_i:16}}):t._e()],1)},r=[]},b0a2:function(t,e,i){"use strict";i.r(e);var n=i("8bb9"),o=i("37bf");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"36d3f1a1",null,!1,n["a"],void 0);e["default"]=s.exports},b0a3:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={yingbingFlip:i("c51d").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{ref:"yingbingReadPage",staticClass:t._$s(0,"sc","yingbing-read-page"),attrs:{_i:0},on:{touchstart:t.touchstart,touchmove:t.touchmove,touchend:t.touchend}},[i("view",{staticClass:t._$s(1,"sc","computed"),attrs:{_i:1}},[i("text",{ref:"computedTextChinese",staticClass:t._$s(2,"sc","computed-text computed-text-chinese"),style:t._$s(2,"s",{"font-family":t.fontFamily}),attrs:{_i:2}}),i("text",{ref:"computedTextSpace",staticClass:t._$s(3,"sc","computed-text computed-text-space"),style:t._$s(3,"s",{"font-family":t.fontFamily}),attrs:{_i:3}}),i("text",{ref:"computedTextLower",staticClass:t._$s(4,"sc","computed-text computed-text-lower"),style:t._$s(4,"s",{"font-family":t.fontFamily}),attrs:{_i:4}}),i("text",{ref:"computedTextUpper",staticClass:t._$s(5,"sc","computed-text computed-text-upper"),style:t._$s(5,"s",{"font-family":t.fontFamily}),attrs:{_i:5}}),i("text",{ref:"computedTextNumber",staticClass:t._$s(6,"sc","computed-text computed-text-number"),style:t._$s(6,"s",{"font-family":t.fontFamily}),attrs:{_i:6}}),i("text",{ref:"computedTextSpecial",staticClass:t._$s(7,"sc","computed-text computed-text-special"),style:t._$s(7,"s",{"font-family":t.fontFamily}),attrs:{_i:7}})]),i("view",{staticClass:t._$s(8,"sc","yingbing-read-page-flip"),style:t._$s(8,"s",{visibility:"scroll"!=t.pageType?"visible":"hidden"}),attrs:{_i:8}},[i("yingbing-flip",{ref:"flip",staticClass:t._$s(9,"sc","yingbing-read-page-flip"),attrs:{data:t.pages,current:t.current,bgColor:t.bgColor,duration:300,unableClickPage:t.unableClickPage,type:t.pageType,_i:9},on:{change:t.handleFlipChangeRender},scopedSlots:t._u([{key:"default",fn:function(e,n,o){var r=e.item;e.index;return[i("view",{staticClass:n._$s("11-"+o,"sc","flip-item-wrapper"),style:n._$s("11-"+o,"s",{"padding-left":t.slide+"px","padding-right":t.slide+"px","padding-top":"calc(var(--status-bar-height) + "+t.topGap+"px)","padding-bottom":t.bottomGap+"px"}),attrs:{_i:"11-"+o}},[n._$s("12-"+o,"i",t.headerShow)?i("view",{staticClass:n._$s("12-"+o,"sc","flip-item-header"),attrs:{_i:"12-"+o}},[i("text",{staticClass:n._$s("13-"+o,"sc","flip-item-header-text"),style:n._$s("13-"+o,"s",{color:t.color,"font-family":t.fontFamily}),attrs:{_i:"13-"+o}},[t._v(n._$s("13-"+o,"t0-0",t._s(r.title)))])]):t._e(),n._$s("14-"+o,"i","text"==r.type)?[i("view",{staticClass:n._$s("15-"+o,"sc","flip-item-text flip-item-content"),attrs:{_i:"15-"+o}},t._l(n._$s("16-"+o,"f",{forItems:r.text}),(function(e,r,a,s){return i("text",{key:n._$s("16-"+o,"f",{forIndex:a,key:r}),staticClass:n._$s("16-"+o+s,"sc","flip-text"),style:n._$s("16-"+o+s,"s",{"margin-top":t.options.lineHeight+"px",height:t.options.fontSize+"px","font-size":t.options.fontSize+"px",color:t.options.color,"font-family":t.options.fontFamily,"line-height":t.options.fontSize+"px"}),attrs:{_i:"16-"+o+s}},[t._v(n._$s("16-"+o+s,"t0-0",t._s(e)))])})),0)]:t._e(),n._$s("17-"+o,"i","custom"==r.type)?[i("read-rich-text",{staticStyle:{flex:"1"},attrs:{richtext:r.text,fontFace:t.fontFace,pageType:t.pageType,_i:"18-"+o},on:{customClick:t.customClick}})]:t._e(),n._$s("19-"+o,"i","slot"==r.type)?[i("view",{staticClass:n._$s("20-"+o,"sc","flip-slot flip-item-content"),attrs:{_i:"20-"+o}},[t._t(n._$s("21-"+o,"name",r.text),null,{prop:r,_i:"21-"+o})],2)]:t._e(),n._$s("22-"+o,"i","loading"==r.type)?[i("view",{staticClass:n._$s("23-"+o,"sc","flip-loading flip-item-content"),attrs:{_i:"23-"+o}},[i("text",{staticClass:n._$s("24-"+o,"sc","flip-loading-text"),style:n._$s("24-"+o,"s",{color:t.options.color,"font-family":t.options.fontFamily}),attrs:{_i:"24-"+o}},[t._v("\u6b63\u5728\u52a0\u8f7d\u5185\u5bb9")])])]:t._e(),n._$s("25-"+o,"i","fail"==r.type||"timeout"==r.type)?[i("view",{staticClass:n._$s("26-"+o,"sc","flip-loading flip-item-content"),attrs:{_i:"26-"+o}},[i("text",{staticClass:n._$s("27-"+o,"sc","flip-loading-text"),style:n._$s("27-"+o,"s",{color:t.options.color,"font-family":t.options.fontFamily}),attrs:{_i:"27-"+o},on:{click:function(e){return t.reloadLoadmoreFlip(r)}}},[t._v(n._$s("27-"+o,"t0-0",t._s("timeout"==r.type?"\u52a0\u8f7d\u8d85\u65f6":"\u52a0\u8f7d\u5931\u8d25")))])])]:t._e(),n._$s("28-"+o,"i","top"==r.type||"bottom"==r.type)?[i("view",{staticClass:n._$s("29-"+o,"sc","flip-loading flip-item-content"),attrs:{_i:"29-"+o}},[t._t(n._$s("30-"+o,"name",r.type),[i("text",{staticClass:n._$s("31-"+o,"sc","flip-loading-text"),style:n._$s("31-"+o,"s",{color:t.options.color,"font-family":t.options.fontFamily}),attrs:{_i:"31-"+o}},[t._v(n._$s("31-"+o,"t0-0",t._s("top"==r.type?t.firstTip:t.lastTip)))])],{_i:"30-"+o})],2)]:t._e(),n._$s("32-"+o,"i",t.footerShow)?i("view",{staticClass:n._$s("32-"+o,"sc","flip-item-footer"),attrs:{_i:"32-"+o}},[i("text",{staticClass:n._$s("33-"+o,"sc","flip-item-footer-text"),style:n._$s("33-"+o,"s",{color:t.color,"font-family":t.fontFamily}),attrs:{_i:"33-"+o}},[t._v(n._$s("33-"+o,"t0-0",t._s(t.filterPage(r))))])]):t._e()],2)]}}],null,!0)})],1),i("view",{staticClass:t._$s(34,"sc","yingbing-scroll"),style:t._$s(34,"s",{background:t.options.bgColor,visibility:"scroll"==t.pageType?"visible":"hidden"}),attrs:{_i:34}},[t._$s(35,"i","scroll"==t.pageType)?[i("view",{style:t._$s(36,"s",{height:t.options.topGap+"px"}),attrs:{_i:36}}),t._$s(37,"i",t.options.headerShow)?i("view",{staticClass:t._$s(37,"sc","flip-item-header"),style:t._$s(37,"s",{"padding-left":t.options.slide+"px","padding-right":t.options.slide+"px"}),attrs:{_i:37}},[i("text",{staticClass:t._$s(38,"sc","flip-item-header-text"),style:t._$s(38,"s",{color:t.options.color,"font-family":t.options.fontFamily}),attrs:{_i:38}},[t._v(t._$s(38,"t0-0",t._s(t.pageInfo.title||"\u52a0\u8f7d\u4e2d")))])]):t._e(),i("scroll-list",{ref:"list",attrs:{pulldown:{show:!0,color:t.options.color,defaultText:"\u4e0b\u62c9\u83b7\u53d6\u4e0a\u4e00\u7ae0\u8282",endText:t.firstTip,failText:"\u83b7\u53d6\u4e0a\u4e00\u7ae0\u8282\u5931\u8d25"},loadmore:{show:!0,color:t.options.color,defaultText:"\u4e0a\u62c9\u83b7\u53d6\u4e0a\u4e00\u7ae0\u8282",endText:t.lastTip,failText:"\u83b7\u53d6\u4e0b\u4e00\u7ae0\u8282\u5931\u8d25"},_i:39},on:{scroll:t.onScroll,pulldown:t.pulldownScroll,loadmore:t.loadmoreScroll,scrolltoupper:t.scrolltoupper}},[i("view",{ref:"scrollItemWrapper",staticClass:t._$s(40,"sc","scroll-item-wrapper"),attrs:{_i:40}},t._l(t._$s(41,"f",{forItems:t.pages}),(function(e,n,o,r){return i("view",{key:t._$s(41,"f",{forIndex:o,key:e.dataId}),ref:t._$s("41-"+r,"ref","scrollItem_"+e.dataId),refInFor:!0,staticClass:t._$s("41-"+r,"sc","scroll-item"),style:t._$s("41-"+r,"s",{"padding-left":t.options.slide+"px","padding-right":t.options.slide+"px"}),attrs:{id:t._$s("41-"+r,"a-id","scroll-item_"+e.dataId),_i:"41-"+r}},[t._$s("42-"+r,"i","text"==e.type)?[i("view",{staticClass:t._$s("43-"+r,"sc","scroll-item-text scroll-item-content"),attrs:{_i:"43-"+r}},t._l(t._$s("44-"+r,"f",{forItems:e.text}),(function(e,n,o,a){return i("text",{key:t._$s("44-"+r,"f",{forIndex:o,key:n}),staticClass:t._$s("44-"+r+"-"+a,"sc","scroll-text"),style:t._$s("44-"+r+"-"+a,"s",{"margin-top":t.options.lineHeight+"px",height:t.options.fontSize+"px","font-size":t.options.fontSize+"px",color:t.options.color,"font-family":t.options.fontFamily,"line-height":t.options.fontSize+"px"}),attrs:{_i:"44-"+r+"-"+a}},[t._v(t._$s("44-"+r+"-"+a,"t0-0",t._s(e)))])})),0)]:t._$s("45-"+r,"e","custom"==e.type)?[i("read-rich-text",{attrs:{richtext:e.text,fontFace:t.fontFace,pageType:t.pageType,_i:"46-"+r},on:{customClick:t.customClick}})]:t._$s("47-"+r,"e","slot"==e.type)?[i("view",{staticClass:t._$s("48-"+r,"sc","scroll-slot scroll-item-content"),attrs:{_i:"48-"+r}},[t._t(t._$s("49-"+r,"name",e.text),null,{_i:"49-"+r})],2)]:t._e()],2)})),0),i("view",{style:t._$s(50,"s",{height:t.options.bottomGap+"px"}),attrs:{_i:50}})]),t._$s(51,"i",t.options.footerShow)?i("view",{staticClass:t._$s(51,"sc","flip-item-footer"),style:t._$s(51,"s",{"padding-left":t.options.slide+"px","padding-right":t.options.slide+"px"}),attrs:{_i:51}},[i("text",{staticClass:t._$s(52,"sc","flip-item-footer-text"),style:t._$s(52,"s",{color:t.options.color,"font-family":t.options.fontFamily}),attrs:{_i:52}},[t._v(t._$s(52,"t0-0",t._s(t.filterDate())))]),i("text",{staticClass:t._$s(53,"sc","flip-item-footer-text"),style:t._$s(53,"s",{color:t.options.color,"font-family":t.options.fontFamily}),attrs:{_i:53}},[t._v(t._$s(53,"t0-0",t._s(t.filterPage(t.pageInfo))))]),i("battery",{ref:"scrollBattery",attrs:{color:t.options.color,_i:54}})],1):t._e(),i("view",{style:t._$s(55,"s",{height:t.options.bottomGap+"px"}),attrs:{_i:55}})]:t._e()],2),t._$s(56,"i",t.loadstatus)?i("view",{staticClass:t._$s(56,"sc","yingbing-loading"),style:t._$s(56,"s",{background:t.options.bgColor}),attrs:{_i:56},on:{click:t._reload}},[i("text",{staticClass:t._$s(57,"sc","error-text"),style:t._$s(57,"s",{color:t.options.color}),attrs:{_i:57}},[t._v(t._$s(57,"t0-0",t._s("fail"==t.loadstatus?"\u52a0\u8f7d\u5931\u8d25":"\u52a0\u8f7d\u8d85\u65f6")))])]):t._e(),t._$s(58,"i",t.initLoading)?i("view",{staticClass:t._$s(58,"sc","yingbing-loading"),style:t._$s(58,"s",{background:t.options.bgColor}),attrs:{_i:58}},[i("list-loading",{attrs:{size:40,visible:t.initLoading,color:t.options.color,text:"\u6b63\u5728\u52a0\u8f7d\u4e2d",_i:59}})],1):t._e()])},r=[]},b111:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={list:{showScrollbar:!1,lowerThreshold:50,upperThreshold:0,scrollTop:0,offsetAccuracy:10,enableFlex:!1,pagingEnabled:!1,scrollable:!0,scrollIntoView:"",scrollWithAnimation:!1,enableBackToTop:!1,height:0,width:0,preLoadScreen:1}}},b134:function(t,e,i){"use strict";i.r(e);var n=i("ff20"),o=i("46ae");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"425d58f2",null,!1,n["a"],void 0);e["default"]=s.exports},b137:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("7a67")),r=n(i("67d2")),a=[],s=i("390e"),c={name:"mp-html",data:function(){return{nodes:[]}},mixins:[o.default],components:{node:r.default},watch:{content:function(t){this.setContent(t)}},created:function(){this.plugins=[];for(var t=a.length;t--;)this.plugins.push(new a[t](this))},mounted:function(){this.content&&!this.nodes.length&&this.setContent(this.content)},beforeDestroy:function(){this._hook("onDetached"),clearInterval(this._timer)},methods:{in:function(t,e,i){t&&e&&i&&(this._in={page:t,selector:e,scrollTop:i})},navigateTo:function(t,e){var i=this;return new Promise((function(n,o){if(!i.useAnchor)return o("Anchor is disabled");e=e||parseInt(i.useAnchor)||0;var r=uni.createSelectorQuery().in(i._in?i._in.page:i).select((i._in?i._in.selector:"._root")+(t?"".concat(" ","#").concat(t):"")).boundingClientRect();i._in?r.select(i._in.selector).scrollOffset().select(i._in.selector).boundingClientRect():r.selectViewport().scrollOffset(),r.exec((function(t){if(!t[0])return o("Label not found");var r=t[1].scrollTop+t[0].top-(t[2]?t[2].top:0)+e;i._in?i._in.page[i._in.scrollTop]=r:uni.pageScrollTo({scrollTop:r,duration:300}),n()}))}))},getText:function(){var t="";return function e(i){for(var n=0;n"0"&&o.name[1]<"7";r&&t&&"\n"!=t[t.length-1]&&(t+="\n"),o.children&&e(o.children),r&&"\n"!=t[t.length-1]?t+="\n":"td"!=o.name&&"th"!=o.name||(t+="\t")}}}(this.nodes),t},getRect:function(){var t=this;return new Promise((function(e,i){uni.createSelectorQuery().in(t).select("#_root").boundingClientRect().exec((function(t){return t[0]?e(t[0]):i("Root label not found")}))}))},setContent:function(t,e){var i=this;e&&this.imgList||(this.imgList=[]);var n,o=new s(this).parse(t);this.$set(this,"nodes",e?(this.nodes||[]).concat(o):o),this._videos=[],this.$nextTick((function(){i._hook("onLoad"),i.$emit("load")})),clearInterval(this._timer),this._timer=setInterval((function(){i.getRect().then((function(t){t.height==n&&(i.$emit("ready",t),clearInterval(i._timer)),n=t.height})).catch((function(){}))}),350)},_hook:function(t){for(var e=a.length;e--;)this.plugins[e][t]&&this.plugins[e][t]()}}};e.default=c},b147:function(t,e){t.exports="/static/images/recharge_empty.png"},b149:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{wxsProps:{"change:prop":"flipProp"},staticClass:t._$s(0,"sc","yingbing-flip"),style:t._$s(0,"s",{background:t.bgColor}),attrs:{prop:t._$s(0,"change:flipProp",t.flipProp),_i:0},on:{}},[t._l(t._$s(1,"f",{forItems:t.dataSync}),(function(e,n,o,r){return i("view",{key:t._$s(1,"f",{forIndex:o,key:e}),ref:t._$s("1-"+r,"ref","yingbingFlipItem_"+e),refInFor:!0,staticClass:t._$s("1-"+r,"sc","yingbing-flip-item"),class:t._$s("1-"+r,"c","yingbing-flip-item_"+e),style:t._$s("1-"+r,"s",{background:t.bgColor,transform:e>t.currentIndex?t.translate+"("+t.fullSize+")":e-1&&e + * @license MIT + */ +var n=i("1fb5"),o=i("9152"),r=i("e3db");function a(){return c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(t,e){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|t}function h(t,e){if(c.isBuffer(t))return t.length;if("undefined"!==typeof ArrayBuffer&&"function"===typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!==typeof t&&(t=""+t);var i=t.length;if(0===i)return 0;for(var n=!1;;)switch(e){case"ascii":case"latin1":case"binary":return i;case"utf8":case"utf-8":case void 0:return z(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*i;case"hex":return i>>>1;case"base64":return N(t).length;default:if(n)return z(t).length;e=(""+e).toLowerCase(),n=!0}}function _(t,e,i){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===i||i>this.length)&&(i=this.length),i<=0)return"";if(i>>>=0,e>>>=0,i<=e)return"";t||(t="utf8");while(1)switch(t){case"hex":return T(this,e,i);case"utf8":case"utf-8":return S(this,e,i);case"ascii":return O(this,e,i);case"latin1":case"binary":return I(this,e,i);case"base64":return k(this,e,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return B(this,e,i);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function v(t,e,i){var n=t[e];t[e]=t[i],t[i]=n}function m(t,e,i,n,o){if(0===t.length)return-1;if("string"===typeof i?(n=i,i=0):i>2147483647?i=2147483647:i<-2147483648&&(i=-2147483648),i=+i,isNaN(i)&&(i=o?0:t.length-1),i<0&&(i=t.length+i),i>=t.length){if(o)return-1;i=t.length-1}else if(i<0){if(!o)return-1;i=0}if("string"===typeof e&&(e=c.from(e,n)),c.isBuffer(e))return 0===e.length?-1:g(t,e,i,n,o);if("number"===typeof e)return e&=255,c.TYPED_ARRAY_SUPPORT&&"function"===typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(t,e,i):Uint8Array.prototype.lastIndexOf.call(t,e,i):g(t,[e],i,n,o);throw new TypeError("val must be string, number or Buffer")}function g(t,e,i,n,o){var r,a=1,s=t.length,c=e.length;if(void 0!==n&&(n=String(n).toLowerCase(),"ucs2"===n||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;a=2,s/=2,c/=2,i/=2}function l(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}if(o){var u=-1;for(r=i;rs&&(i=s-c),r=i;r>=0;r--){for(var d=!0,f=0;fo&&(n=o)):n=o;var r=e.length;if(r%2!==0)throw new TypeError("Invalid hex string");n>r/2&&(n=r/2);for(var a=0;a>8,o=i%256,r.push(o),r.push(n)}return r}(e,t.length-i),t,i,n)}function k(t,e,i){return 0===e&&i===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,i))}function S(t,e,i){i=Math.min(t.length,i);var n=[],o=e;while(o239?4:l>223?3:l>191?2:1;if(o+d<=i)switch(d){case 1:l<128&&(u=l);break;case 2:r=t[o+1],128===(192&r)&&(c=(31&l)<<6|63&r,c>127&&(u=c));break;case 3:r=t[o+1],a=t[o+2],128===(192&r)&&128===(192&a)&&(c=(15&l)<<12|(63&r)<<6|63&a,c>2047&&(c<55296||c>57343)&&(u=c));break;case 4:r=t[o+1],a=t[o+2],s=t[o+3],128===(192&r)&&128===(192&a)&&128===(192&s)&&(c=(15&l)<<18|(63&r)<<12|(63&a)<<6|63&s,c>65535&&c<1114112&&(u=c))}null===u?(u=65533,d=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),o+=d}return function(t){var e=t.length;if(e<=4096)return String.fromCharCode.apply(String,t);var i="",n=0;while(n0&&(t=this.toString("hex",0,i).match(/.{2}/g).join(" "),this.length>i&&(t+=" ... ")),""},c.prototype.compare=function(t,e,i,n,o){if(!c.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===i&&(i=t?t.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),e<0||i>t.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&e>=i)return 0;if(n>=o)return-1;if(e>=i)return 1;if(e>>>=0,i>>>=0,n>>>=0,o>>>=0,this===t)return 0;for(var r=o-n,a=i-e,s=Math.min(r,a),l=this.slice(n,o),u=t.slice(e,i),d=0;do)&&(i=o),t.length>0&&(i<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var r=!1;;)switch(n){case"hex":return b(this,t,e,i);case"utf8":case"utf-8":return y(this,t,e,i);case"ascii":return x(this,t,e,i);case"latin1":case"binary":return w(this,t,e,i);case"base64":return $(this,t,e,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return C(this,t,e,i);default:if(r)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),r=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function O(t,e,i){var n="";i=Math.min(t.length,i);for(var o=e;on)&&(i=n);for(var o="",r=e;ri)throw new RangeError("Trying to access beyond buffer length")}function P(t,e,i,n,o,r){if(!c.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>o||et.length)throw new RangeError("Index out of range")}function j(t,e,i,n){e<0&&(e=65535+e+1);for(var o=0,r=Math.min(t.length-i,2);o>>8*(n?o:1-o)}function E(t,e,i,n){e<0&&(e=4294967295+e+1);for(var o=0,r=Math.min(t.length-i,4);o>>8*(n?o:3-o)&255}function L(t,e,i,n,o,r){if(i+n>t.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("Index out of range")}function M(t,e,i,n,r){return r||L(t,0,i,4),o.write(t,e,i,n,23,4),i+4}function F(t,e,i,n,r){return r||L(t,0,i,8),o.write(t,e,i,n,52,8),i+8}c.prototype.slice=function(t,e){var i,n=this.length;if(t=~~t,e=void 0===e?n:~~e,t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),e0&&(o*=256))n+=this[t+--e]*o;return n},c.prototype.readUInt8=function(t,e){return e||A(t,1,this.length),this[t]},c.prototype.readUInt16LE=function(t,e){return e||A(t,2,this.length),this[t]|this[t+1]<<8},c.prototype.readUInt16BE=function(t,e){return e||A(t,2,this.length),this[t]<<8|this[t+1]},c.prototype.readUInt32LE=function(t,e){return e||A(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},c.prototype.readUInt32BE=function(t,e){return e||A(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},c.prototype.readIntLE=function(t,e,i){t|=0,e|=0,i||A(t,e,this.length);var n=this[t],o=1,r=0;while(++r=o&&(n-=Math.pow(2,8*e)),n},c.prototype.readIntBE=function(t,e,i){t|=0,e|=0,i||A(t,e,this.length);var n=e,o=1,r=this[t+--n];while(n>0&&(o*=256))r+=this[t+--n]*o;return o*=128,r>=o&&(r-=Math.pow(2,8*e)),r},c.prototype.readInt8=function(t,e){return e||A(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},c.prototype.readInt16LE=function(t,e){e||A(t,2,this.length);var i=this[t]|this[t+1]<<8;return 32768&i?4294901760|i:i},c.prototype.readInt16BE=function(t,e){e||A(t,2,this.length);var i=this[t+1]|this[t]<<8;return 32768&i?4294901760|i:i},c.prototype.readInt32LE=function(t,e){return e||A(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},c.prototype.readInt32BE=function(t,e){return e||A(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},c.prototype.readFloatLE=function(t,e){return e||A(t,4,this.length),o.read(this,t,!0,23,4)},c.prototype.readFloatBE=function(t,e){return e||A(t,4,this.length),o.read(this,t,!1,23,4)},c.prototype.readDoubleLE=function(t,e){return e||A(t,8,this.length),o.read(this,t,!0,52,8)},c.prototype.readDoubleBE=function(t,e){return e||A(t,8,this.length),o.read(this,t,!1,52,8)},c.prototype.writeUIntLE=function(t,e,i,n){if(t=+t,e|=0,i|=0,!n){var o=Math.pow(2,8*i)-1;P(this,t,e,i,o,0)}var r=1,a=0;this[e]=255&t;while(++a=0&&(a*=256))this[e+r]=t/a&255;return e+i},c.prototype.writeUInt8=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,1,255,0),c.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},c.prototype.writeUInt16LE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):j(this,t,e,!0),e+2},c.prototype.writeUInt16BE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):j(this,t,e,!1),e+2},c.prototype.writeUInt32LE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):E(this,t,e,!0),e+4},c.prototype.writeUInt32BE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):E(this,t,e,!1),e+4},c.prototype.writeIntLE=function(t,e,i,n){if(t=+t,e|=0,!n){var o=Math.pow(2,8*i-1);P(this,t,e,i,o-1,-o)}var r=0,a=1,s=0;this[e]=255&t;while(++r>0)-s&255;return e+i},c.prototype.writeIntBE=function(t,e,i,n){if(t=+t,e|=0,!n){var o=Math.pow(2,8*i-1);P(this,t,e,i,o-1,-o)}var r=i-1,a=1,s=0;this[e+r]=255&t;while(--r>=0&&(a*=256))t<0&&0===s&&0!==this[e+r+1]&&(s=1),this[e+r]=(t/a>>0)-s&255;return e+i},c.prototype.writeInt8=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,1,127,-128),c.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},c.prototype.writeInt16LE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):j(this,t,e,!0),e+2},c.prototype.writeInt16BE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):j(this,t,e,!1),e+2},c.prototype.writeInt32LE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,4,2147483647,-2147483648),c.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):E(this,t,e,!0),e+4},c.prototype.writeInt32BE=function(t,e,i){return t=+t,e|=0,i||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):E(this,t,e,!1),e+4},c.prototype.writeFloatLE=function(t,e,i){return M(this,t,e,!0,i)},c.prototype.writeFloatBE=function(t,e,i){return M(this,t,e,!1,i)},c.prototype.writeDoubleLE=function(t,e,i){return F(this,t,e,!0,i)},c.prototype.writeDoubleBE=function(t,e,i){return F(this,t,e,!1,i)},c.prototype.copy=function(t,e,i,n){if(i||(i=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e=0;--o)t[o+e]=this[o+i];else if(r<1e3||!c.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,i=void 0===i?this.length:i>>>0,t||(t=0),"number"===typeof t)for(r=e;r55295&&i<57344){if(!o){if(i>56319){(e-=3)>-1&&r.push(239,191,189);continue}if(a+1===n){(e-=3)>-1&&r.push(239,191,189);continue}o=i;continue}if(i<56320){(e-=3)>-1&&r.push(239,191,189),o=i;continue}i=65536+(o-55296<<10|i-56320)}else o&&(e-=3)>-1&&r.push(239,191,189);if(o=null,i<128){if((e-=1)<0)break;r.push(i)}else if(i<2048){if((e-=2)<0)break;r.push(i>>6|192,63&i|128)}else if(i<65536){if((e-=3)<0)break;r.push(i>>12|224,i>>6&63|128,63&i|128)}else{if(!(i<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;r.push(i>>18|240,i>>12&63|128,i>>6&63|128,63&i|128)}}return r}function N(t){return n.toByteArray(function(t){if(t=function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}(t).replace(D,""),t.length<2)return"";while(t.length%4!==0)t+="=";return t}(t))}function U(t,e,i,n){for(var o=0;o=e.length||o>=t.length)break;e[o+i]=t[o]}return o}}).call(this,i("c8ba"))},b6c1:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","commBookLeftRigth_content"),attrs:{_i:0}},[i("view",[i("view",{staticClass:t._$s(2,"sc","commBookLeftRigth_book_box"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","commBookLeftRigth_content_left"),attrs:{_i:3}},[i("image",{staticClass:t._$s(4,"sc","is_image"),attrs:{src:t._$s(4,"a-src",t.bookImage),_i:4}})]),i("view",{staticClass:t._$s(5,"sc","commBookLeftRigth_content_right"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","_content_right_title"),attrs:{_i:6}},[t._v(t._$s(6,"t0-0",t._s(t.bookName)))]),i("view",{staticClass:t._$s(7,"sc","_content_right_tips"),attrs:{_i:7}},[t._v(t._$s(7,"t0-0",t._s(t.bookTips)))]),i("view",{staticClass:t._$s(8,"sc","_content_right_introduction"),attrs:{_i:8}},[t._v(t._$s(8,"t0-0",t._s(t.bookIntroduction)))])])]),i("view",{staticClass:t._$s(9,"sc","_book_operate_all"),attrs:{_i:9}},[t._$s(10,"i",1==t.bookcase)?i("view",{class:t._$s(10,"c",["operate_all_add_bookshelf","active"]),attrs:{_i:10}}):i("view",{class:t._$s(11,"c",["operate_all_add_bookshelf"]),attrs:{_i:11},on:{click:t.addBookshelf}}),i("view",{staticClass:t._$s(12,"sc","operate_all_start_read"),attrs:{_i:12},on:{click:t.toNovelReading}})])])])},o=[]},b6c4:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{otherSteUpList:[{title:"\u8d60\u5e01\u6709\u6709\u6548\u671f\u5417\uff1f",toPath:"/pages/myInfo/problemDetail/index?problemStatus=1"},{title:"\u89e3\u9501\u5f97\u7ae0\u8282\u53ef\u4ee5\u6c38\u4e45\u514d\u8d39\u770b\u5417\uff1f",toPath:"/pages/myInfo/problemDetail/index?problemStatus=2"}]}}}},b724:function(t,e,i){"use strict";i.r(e);var n=i("771d"),o=i("05cf");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"77f573cf",null,!1,n["a"],void 0);e["default"]=s.exports},b72a:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={carKeyboard:{random:!1}}},b733:function(t,e,i){"use strict";i.r(e);var n=i("c0e4"),o=i("02e1");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"b55bbdec",null,!1,n["a"],void 0);e["default"]=s.exports},b747:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={toast:{zIndex:10090,loading:!1,text:"",icon:"",type:"",loadingMode:"",show:"",overlay:!1,position:"center",params:function(){},duration:2e3,isTab:!1,url:"",callback:null,back:!1}}},b7aa:function(t,e,i){"use strict";i.r(e);var n=i("97dd"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},b89c:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{name:{type:String,default:uni.$u.props.icon.name},color:{type:String,default:uni.$u.props.icon.color},size:{type:[String,Number],default:uni.$u.props.icon.size},bold:{type:Boolean,default:uni.$u.props.icon.bold},index:{type:[String,Number],default:uni.$u.props.icon.index},hoverClass:{type:String,default:uni.$u.props.icon.hoverClass},customPrefix:{type:String,default:uni.$u.props.icon.customPrefix},label:{type:[String,Number],default:uni.$u.props.icon.label},labelPos:{type:String,default:uni.$u.props.icon.labelPos},labelSize:{type:[String,Number],default:uni.$u.props.icon.labelSize},labelColor:{type:String,default:uni.$u.props.icon.labelColor},space:{type:[String,Number],default:uni.$u.props.icon.space},imgMode:{type:String,default:uni.$u.props.icon.imgMode},width:{type:[String,Number],default:uni.$u.props.icon.width},height:{type:[String,Number],default:uni.$u.props.icon.height},top:{type:[String,Number],default:uni.$u.props.icon.top},stop:{type:Boolean,default:uni.$u.props.icon.stop}}};e.default=n},b9cb:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","bookBasicInfo_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","bookBasicInfo_body"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","bookBasicInfo_body_left"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","book_cover_box"),attrs:{_i:3}},[i("image",{staticClass:t._$s(4,"sc","is_image"),attrs:{src:t._$s(4,"a-src",t.bookInfo.cover),_i:4}})])]),i("view",{staticClass:t._$s(5,"sc","bookBasicInfo_body_right"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","book_title"),attrs:{_i:6}},[t._v(t._$s(6,"t0-0",t._s(t.bookInfo.title)))]),i("view",{staticClass:t._$s(7,"sc","book_tips"),attrs:{_i:7}},[t._v(t._$s(7,"t0-0",t._s(t.bookInfo.author)))]),i("view",{staticClass:t._$s(8,"sc","book_type"),attrs:{_i:8}},[i("view",{staticClass:t._$s(9,"sc","book_type_item"),attrs:{_i:9}},[t._v(t._$s(9,"t0-0",t._s(t.bookInfo.category_name)))])])])])])},o=[]},ba46:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uSearch:i("460a").default,uEmpty:i("b733").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","booksSearchList_content"),attrs:{_i:0}},[t._$s(1,"i",!t.searchFlag)?i("view",[i("view",{staticClass:t._$s(2,"sc","step_search_box"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","search_box_con"),attrs:{_i:3}},[i("u-search",{attrs:{placeholder:"\u8f93\u5165\u4f60\u60f3\u770b\u7684\u5c0f\u8bf4",height:"80rpx",showAction:!1,bgColor:"#F3F4F6",confirmType:"search",_i:4},on:{clear:t.clearBookKeyword},model:{value:t._$s(4,"v-model",t.bookKeyword),callback:function(e){t.bookKeyword=e},expression:"bookKeyword"}}),i("view",{staticClass:t._$s(5,"sc","search_button"),attrs:{_i:5},on:{click:t.handelSearch}},[i("text")])],1)]),t._$s(7,"i",!t.searchBooksData.length)?i("view",[i("view",{staticClass:t._$s(8,"sc","search_record_box"),attrs:{_i:8}},[i("view",{staticClass:t._$s(9,"sc","search_popular_record"),attrs:{_i:9}},[i("SearchRecord",{attrs:{searchRecordTitle:"\u70ed\u95e8\u641c\u7d22",dataList:t.searchRecordList,_i:10},on:{handelSearchRecord:t.handelSearchRecord}})],1)]),i("view",{staticClass:t._$s(11,"sc","search_history_box"),attrs:{_i:11}},[i("view",{staticClass:t._$s(12,"sc","search_history_record"),attrs:{_i:12}},[i("SearchRecord",{attrs:{headerRightDelete:!0,searchRecordTitle:"\u5386\u53f2\u641c\u7d22",dataList:t.searchHistoryList,_i:13},on:{handelDel:t.searchHistoryDel,handelSearchRecord:t.handelSearchRecord}})],1)])]):i("view",{staticClass:t._$s(14,"sc","search_books_body"),attrs:{_i:14}},[i("view",{staticClass:t._$s(15,"sc","search_books_list"),attrs:{_i:15}},t._l(t._$s(16,"f",{forItems:t.searchBooksData}),(function(e,n,o,r){return i("view",{key:t._$s(16,"f",{forIndex:o,key:e.id}),staticClass:t._$s("16-"+r,"sc","search_books_list_item"),attrs:{_i:"16-"+r}},[i("CommBookItemThree",{attrs:{bookTips:e.category_name,bookName:e.title,bookImage:e.cover,bookIntroduction:e.intro,bookId:e.id,bookcase:t.bookcase,_i:"17-"+r},on:{addBookshelf:t.addBookshelf}})],1)})),0)])]):i("view",[i("u-empty",{attrs:{icon:t.search_empty,width:"504rpx",text:"\u672a\u627e\u5230\u5c0f\u8bf4\uff0c\u6b63\u5728\u52aa\u529b\u4ea7\u51fa\u4e2d...",_i:19}})],1)])},r=[]},bad9:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uPopup:i("adb9").default,uToolbar:i("c76c").default,uLoadingIcon:i("70a6").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("u-popup",{attrs:{show:t.show,_i:0},on:{close:t.closeHandler}},[i("view",{staticClass:t._$s(1,"sc","u-picker"),attrs:{_i:1}},[t._$s(2,"i",t.showToolbar)?i("u-toolbar",{attrs:{cancelColor:t.cancelColor,confirmColor:t.confirmColor,cancelText:t.cancelText,confirmText:t.confirmText,title:t.title,_i:2},on:{cancel:t.cancel,confirm:t.confirm}}):t._e(),i("picker-view",{staticClass:t._$s(3,"sc","u-picker__view"),style:t._$s(3,"s",{height:""+t.$u.addUnit(t.visibleItemCount*t.itemHeight)}),attrs:{indicatorStyle:t._$s(3,"a-indicatorStyle","height: "+t.$u.addUnit(t.itemHeight)),value:t._$s(3,"a-value",t.innerIndex),immediateChange:t._$s(3,"a-immediateChange",t.immediateChange),_i:3},on:{change:t.changeHandler}},t._l(t._$s(4,"f",{forItems:t.innerColumns}),(function(e,n,o,r){return i("picker-view-column",{key:t._$s(4,"f",{forIndex:o,key:n}),staticClass:t._$s("4-"+r,"sc","u-picker__view__column"),attrs:{_i:"4-"+r}},t._l(t._$s("5-"+r,"f",{forItems:e}),(function(o,a,s,c){return t._$s("5-"+r+"-"+c,"i",t.$u.test.array(e))?i("text",{key:t._$s("5-"+r,"f",{forIndex:s,key:a}),staticClass:t._$s("5-"+r+"-"+c,"sc","u-picker__view__column__item u-line-1"),style:t._$s("5-"+r+"-"+c,"s",{height:t.$u.addUnit(t.itemHeight),lineHeight:t.$u.addUnit(t.itemHeight),fontWeight:a===t.innerIndex[n]?"bold":"normal"}),attrs:{_i:"5-"+r+"-"+c}},[t._v(t._$s("5-"+r+"-"+c,"t0-0",t._s(t.getItemText(o))))]):t._e()})),0)})),0),t._$s(6,"i",t.loading)?i("view",{staticClass:t._$s(6,"sc","u-picker--loading"),attrs:{_i:6}},[i("u-loading-icon",{attrs:{mode:"circle",_i:7}})],1):t._e()],1)])},r=[]},bb90:function(t,e,i){"use strict";i.r(e);var n=i("80e5"),o=i("c07b");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"37f5502a",null,!1,n["a"],void 0);e["default"]=s.exports},bba8:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","bookCoinDetail_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","_list_body"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","_list_body_item"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","_item_book_img"),attrs:{_i:3}},[i("image",{staticClass:t._$s(4,"sc","is_image"),attrs:{_i:4}})]),i("view",{staticClass:t._$s(5,"sc","_item_book_title_other"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","_item_book_title"),attrs:{_i:6}}),i("view",{staticClass:t._$s(7,"sc","_item_book_other_tips"),attrs:{_i:7}}),i("view",{staticClass:t._$s(8,"sc","_item_book_purchase_time"),attrs:{_i:8}})]),i("view",{staticClass:t._$s(9,"sc","_item_book_coin_num"),attrs:{_i:9}},[i("view",{staticClass:t._$s(10,"sc","_coin_num"),attrs:{_i:10}})])]),i("view",{staticClass:t._$s(11,"sc","_list_body_item"),attrs:{_i:11}},[i("view",{staticClass:t._$s(12,"sc","_item_book_img"),attrs:{_i:12}},[i("image",{staticClass:t._$s(13,"sc","is_image"),attrs:{_i:13}})]),i("view",{staticClass:t._$s(14,"sc","_item_book_title_other"),attrs:{_i:14}},[i("view",{staticClass:t._$s(15,"sc","_item_book_title"),attrs:{_i:15}}),i("view",{staticClass:t._$s(16,"sc","_item_book_other_tips"),attrs:{_i:16}}),i("view",{staticClass:t._$s(17,"sc","_item_book_purchase_time"),attrs:{_i:17}})]),i("view",{staticClass:t._$s(18,"sc","_item_book_coin_num"),attrs:{_i:18}},[i("view",{staticClass:t._$s(19,"sc","_coin_num"),attrs:{_i:19}})])])])])},o=[]},bbb3:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={checkbox:{name:"",shape:"",size:"",checkbox:!1,disabled:"",activeColor:"",inactiveColor:"",iconSize:"",iconColor:"",label:"",labelSize:"",labelColor:"",labelDisabled:""}}},bbd7:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("d2fd")),r=n(i("d580")),a=n(i("e439")),s=n(i("87d0")),c={props:{dataList:{type:Array,default:[]},headerListActive:{type:String,default:""}},data:function(){return{headerList:[{id:"1",name:"\u4eba\u6c14\u699c"},{id:"2",name:"\u7545\u9500\u699c"},{id:"3",name:"\u65b0\u4e66\u699c"},{id:"4",name:"\u5b8c\u7ed3\u699c"}],rankingIconList:[o.default,r.default,a.default,s.default]}},methods:{handelRankingList:function(t){this.$emit("handelRankingList",t)},toBooksReadingDetail:function(t){uni.navigateTo({url:"/pages/booksReadingDetail/booksReadingDetail?sid=".concat(t.id,"&t=").concat(t.title)})},toBooksTheCharts:function(){uni.navigateTo({url:"/pages/booksTheCharts/index?chartsType=".concat(this.headerListActive)})}}};e.default=c},bc40:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","voucherCenter_content"),style:t._$s(0,"s","padding-bottom:"+t.contentSafeHeight+"rpx"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","balance_info"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","balance_info_box"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","balance_info_name"),attrs:{_i:3}}),i("view",{staticClass:t._$s(4,"sc","balance_coin_box"),attrs:{_i:4}},[i("view",{staticClass:t._$s(5,"sc","balance_num"),attrs:{_i:5}},[t._v(t._$s(5,"t0-0",t._s(t.userInfo.egold)))]),i("view",{staticClass:t._$s(6,"sc","balance_title"),attrs:{_i:6}})])])]),i("view",{staticClass:t._$s(7,"sc","voucher_center_info"),attrs:{_i:7}},[i("view",{staticClass:t._$s(8,"sc","voucher_annual_pass_box"),attrs:{_i:8}},[i("view",{staticClass:t._$s(9,"sc","_annual_pass_tips"),attrs:{_i:9}},[i("view",{staticClass:t._$s(10,"sc","_pass_tips_name"),attrs:{_i:10}}),i("view",{staticClass:t._$s(11,"sc","_pass_tips_msg"),attrs:{_i:11}})]),i("view",{staticClass:t._$s(12,"sc","_annual_pass_money"),attrs:{_i:12}},[i("view",{staticClass:t._$s(13,"sc","_pass_money_unit"),attrs:{_i:13}}),i("view",{staticClass:t._$s(14,"sc","_pass_money_num"),attrs:{_i:14}},[t._v(t._$s(14,"t0-0",t._s(t.annualPass.price)))])])]),i("view",{staticClass:t._$s(15,"sc","voucher_center_list"),attrs:{_i:15}},t._l(t._$s(16,"f",{forItems:t.payList}),(function(e,n,o,r){return i("view",{key:t._$s(16,"f",{forIndex:o,key:e.id}),staticClass:t._$s("16-"+r,"sc","_center_list_col_box"),attrs:{"data-id":t._$s("16-"+r,"a-data-id",e.id),_i:"16-"+r},on:{click:function(i){return t.selectVoucherMoney(i,e)}}},[i("view",{class:t._$s("17-"+r,"c",["_center_list_col_item",t.selectVoucherMoneyId===e.id?"active":""]),attrs:{_i:"17-"+r}},[i("view",{staticClass:t._$s("18-"+r,"sc","_col_item_money"),attrs:{_i:"18-"+r}},[i("view",{staticClass:t._$s("19-"+r,"sc","_item_money_num"),attrs:{_i:"19-"+r}},[t._v(t._$s("19-"+r,"t0-0",t._s(e.price)))]),i("view",{staticClass:t._$s("20-"+r,"sc","_item_money_unit"),attrs:{_i:"20-"+r}})]),i("view",{staticClass:t._$s("21-"+r,"sc","_col_item_coin"),attrs:{_i:"21-"+r}},[t._v(t._$s("21-"+r,"t0-0",t._s(e.title)))]),i("view",{staticClass:t._$s("22-"+r,"sc","_col_item_deliver"),attrs:{_i:"22-"+r}},[t._v(t._$s("22-"+r,"t0-0",t._s(e.description)))]),t._$s("23-"+r,"i",e.poster)?i("view",{staticClass:t._$s("23-"+r,"sc","_col_item_hot_sales"),attrs:{_i:"23-"+r}},[t._v(t._$s("23-"+r,"t0-0",t._s(e.poster)))]):t._e()])])})),0),i("view",{staticClass:t._$s(24,"sc","voucher_center_illustrate"),attrs:{_i:24}},[i("view",{staticClass:t._$s(25,"sc","_center_illustrate_box"),attrs:{_i:25}},[i("view",{staticClass:t._$s(26,"sc","_illustrate_box_title"),attrs:{_i:26}}),i("view",{staticClass:t._$s(27,"sc","_illustrate_box_tips_"),attrs:{_i:27}},[i("view",{staticClass:t._$s(28,"sc","_illustrate_box_tips_item"),attrs:{_i:28}}),i("view",{staticClass:t._$s(29,"sc","_illustrate_box_tips_item"),attrs:{_i:29}},[i("text"),i("text")])])])])]),i("view",{staticClass:t._$s(32,"sc","voucher_center_confirm"),attrs:{_i:32}},[i("view",{staticClass:t._$s(33,"sc","_center_confirm_money"),attrs:{_i:33}},[i("view",{staticClass:t._$s(34,"sc","_center_confirm_money_box"),attrs:{_i:34}},[i("view",{staticClass:t._$s(35,"sc","_confirm_money_unit"),attrs:{_i:35}}),i("view",{staticClass:t._$s(36,"sc","_confirm_money_num"),attrs:{_i:36}},[t._v(t._$s(36,"t0-0",t._s(t.price)))]),i("view",{staticClass:t._$s(37,"sc","_confirm_money_preferential"),attrs:{_i:37}},[t._v(t._$s(37,"t0-0",t._s(t.preferential)))])])]),i("view",{staticClass:t._$s(38,"sc","_center_confirm_btn"),attrs:{_i:38}})])])},o=[]},bc72:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={"uicon-level":"\ue693","uicon-column-line":"\ue68e","uicon-checkbox-mark":"\ue807","uicon-folder":"\ue7f5","uicon-movie":"\ue7f6","uicon-star-fill":"\ue669","uicon-star":"\ue65f","uicon-phone-fill":"\ue64f","uicon-phone":"\ue622","uicon-apple-fill":"\ue881","uicon-chrome-circle-fill":"\ue885","uicon-backspace":"\ue67b","uicon-attach":"\ue632","uicon-cut":"\ue948","uicon-empty-car":"\ue602","uicon-empty-coupon":"\ue682","uicon-empty-address":"\ue646","uicon-empty-favor":"\ue67c","uicon-empty-permission":"\ue686","uicon-empty-news":"\ue687","uicon-empty-search":"\ue664","uicon-github-circle-fill":"\ue887","uicon-rmb":"\ue608","uicon-person-delete-fill":"\ue66a","uicon-reload":"\ue788","uicon-order":"\ue68f","uicon-server-man":"\ue6bc","uicon-search":"\ue62a","uicon-fingerprint":"\ue955","uicon-more-dot-fill":"\ue630","uicon-scan":"\ue662","uicon-share-square":"\ue60b","uicon-map":"\ue61d","uicon-map-fill":"\ue64e","uicon-tags":"\ue629","uicon-tags-fill":"\ue651","uicon-bookmark-fill":"\ue63b","uicon-bookmark":"\ue60a","uicon-eye":"\ue613","uicon-eye-fill":"\ue641","uicon-mic":"\ue64a","uicon-mic-off":"\ue649","uicon-calendar":"\ue66e","uicon-calendar-fill":"\ue634","uicon-trash":"\ue623","uicon-trash-fill":"\ue658","uicon-play-left":"\ue66d","uicon-play-right":"\ue610","uicon-minus":"\ue618","uicon-plus":"\ue62d","uicon-info":"\ue653","uicon-info-circle":"\ue7d2","uicon-info-circle-fill":"\ue64b","uicon-question":"\ue715","uicon-error":"\ue6d3","uicon-close":"\ue685","uicon-checkmark":"\ue6a8","uicon-android-circle-fill":"\ue67e","uicon-android-fill":"\ue67d","uicon-ie":"\ue87b","uicon-IE-circle-fill":"\ue889","uicon-google":"\ue87a","uicon-google-circle-fill":"\ue88a","uicon-setting-fill":"\ue872","uicon-setting":"\ue61f","uicon-minus-square-fill":"\ue855","uicon-plus-square-fill":"\ue856","uicon-heart":"\ue7df","uicon-heart-fill":"\ue851","uicon-camera":"\ue7d7","uicon-camera-fill":"\ue870","uicon-more-circle":"\ue63e","uicon-more-circle-fill":"\ue645","uicon-chat":"\ue620","uicon-chat-fill":"\ue61e","uicon-bag-fill":"\ue617","uicon-bag":"\ue619","uicon-error-circle-fill":"\ue62c","uicon-error-circle":"\ue624","uicon-close-circle":"\ue63f","uicon-close-circle-fill":"\ue637","uicon-checkmark-circle":"\ue63d","uicon-checkmark-circle-fill":"\ue635","uicon-question-circle-fill":"\ue666","uicon-question-circle":"\ue625","uicon-share":"\ue631","uicon-share-fill":"\ue65e","uicon-shopping-cart":"\ue621","uicon-shopping-cart-fill":"\ue65d","uicon-bell":"\ue609","uicon-bell-fill":"\ue640","uicon-list":"\ue650","uicon-list-dot":"\ue616","uicon-zhihu":"\ue6ba","uicon-zhihu-circle-fill":"\ue709","uicon-zhifubao":"\ue6b9","uicon-zhifubao-circle-fill":"\ue6b8","uicon-weixin-circle-fill":"\ue6b1","uicon-weixin-fill":"\ue6b2","uicon-twitter-circle-fill":"\ue6ab","uicon-twitter":"\ue6aa","uicon-taobao-circle-fill":"\ue6a7","uicon-taobao":"\ue6a6","uicon-weibo-circle-fill":"\ue6a5","uicon-weibo":"\ue6a4","uicon-qq-fill":"\ue6a1","uicon-qq-circle-fill":"\ue6a0","uicon-moments-circel-fill":"\ue69a","uicon-moments":"\ue69b","uicon-qzone":"\ue695","uicon-qzone-circle-fill":"\ue696","uicon-baidu-circle-fill":"\ue680","uicon-baidu":"\ue681","uicon-facebook-circle-fill":"\ue68a","uicon-facebook":"\ue689","uicon-car":"\ue60c","uicon-car-fill":"\ue636","uicon-warning-fill":"\ue64d","uicon-warning":"\ue694","uicon-clock-fill":"\ue638","uicon-clock":"\ue60f","uicon-edit-pen":"\ue612","uicon-edit-pen-fill":"\ue66b","uicon-email":"\ue611","uicon-email-fill":"\ue642","uicon-minus-circle":"\ue61b","uicon-minus-circle-fill":"\ue652","uicon-plus-circle":"\ue62e","uicon-plus-circle-fill":"\ue661","uicon-file-text":"\ue663","uicon-file-text-fill":"\ue665","uicon-pushpin":"\ue7e3","uicon-pushpin-fill":"\ue86e","uicon-grid":"\ue673","uicon-grid-fill":"\ue678","uicon-play-circle":"\ue647","uicon-play-circle-fill":"\ue655","uicon-pause-circle-fill":"\ue654","uicon-pause":"\ue8fa","uicon-pause-circle":"\ue643","uicon-eye-off":"\ue648","uicon-eye-off-outline":"\ue62b","uicon-gift-fill":"\ue65c","uicon-gift":"\ue65b","uicon-rmb-circle-fill":"\ue657","uicon-rmb-circle":"\ue677","uicon-kefu-ermai":"\ue656","uicon-server-fill":"\ue751","uicon-coupon-fill":"\ue8c4","uicon-coupon":"\ue8ae","uicon-integral":"\ue704","uicon-integral-fill":"\ue703","uicon-home-fill":"\ue964","uicon-home":"\ue965","uicon-hourglass-half-fill":"\ue966","uicon-hourglass":"\ue967","uicon-account":"\ue628","uicon-plus-people-fill":"\ue626","uicon-minus-people-fill":"\ue615","uicon-account-fill":"\ue614","uicon-thumb-down-fill":"\ue726","uicon-thumb-down":"\ue727","uicon-thumb-up":"\ue733","uicon-thumb-up-fill":"\ue72f","uicon-lock-fill":"\ue979","uicon-lock-open":"\ue973","uicon-lock-opened-fill":"\ue974","uicon-lock":"\ue97a","uicon-red-packet-fill":"\ue690","uicon-photo-fill":"\ue98b","uicon-photo":"\ue98d","uicon-volume-off-fill":"\ue659","uicon-volume-off":"\ue644","uicon-volume-fill":"\ue670","uicon-volume":"\ue633","uicon-red-packet":"\ue691","uicon-download":"\ue63c","uicon-arrow-up-fill":"\ue6b0","uicon-arrow-down-fill":"\ue600","uicon-play-left-fill":"\ue675","uicon-play-right-fill":"\ue676","uicon-rewind-left-fill":"\ue679","uicon-rewind-right-fill":"\ue67a","uicon-arrow-downward":"\ue604","uicon-arrow-leftward":"\ue601","uicon-arrow-rightward":"\ue603","uicon-arrow-upward":"\ue607","uicon-arrow-down":"\ue60d","uicon-arrow-right":"\ue605","uicon-arrow-left":"\ue60e","uicon-arrow-up":"\ue606","uicon-skip-back-left":"\ue674","uicon-skip-forward-right":"\ue672","uicon-rewind-right":"\ue66f","uicon-rewind-left":"\ue671","uicon-arrow-right-double":"\ue68d","uicon-arrow-left-double":"\ue68c","uicon-wifi-off":"\ue668","uicon-wifi":"\ue667","uicon-empty-data":"\ue62f","uicon-empty-history":"\ue684","uicon-empty-list":"\ue68b","uicon-empty-page":"\ue627","uicon-empty-order":"\ue639","uicon-man":"\ue697","uicon-woman":"\ue69c","uicon-man-add":"\ue61c","uicon-man-add-fill":"\ue64c","uicon-man-delete":"\ue61a","uicon-man-delete-fill":"\ue66a","uicon-zh":"\ue70a","uicon-en":"\ue692"}},bc83:function(t,e){t.exports="/static/images/novelReading/step_up_333.png"},bc98:function(t,e,i){"use strict";i.r(e);var n=i("c484"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},bc98c:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={slider:{value:0,blockSize:18,min:0,max:100,step:1,activeColor:"#2979ff",inactiveColor:"#c0c4cc",blockColor:"#ffffff",showValue:!1,disabled:!1,blockStyle:function(){}}}},bce4:function(t,e,i){"use strict";i.r(e);var n=i("4efb"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},bd80:function(t,e,i){"use strict";i.r(e);var n=i("f653"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},bde4:function(t,e,i){"use strict";i.r(e);var n=i("a3a4"),o=i("9392");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"81a128ce",null,!1,n["a"],void 0);e["default"]=s.exports},be84:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={stepsItem:{title:"",desc:"",iconSize:17,error:!1}}},bfa9:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={avatar:{src:"",shape:"circle",size:40,mode:"scaleToFill",text:"",bgColor:"#c0c4cc",color:"#ffffff",fontSize:18,icon:"",mpAvatar:!1,randomBgColor:!1,defaultUrl:"",colorIndex:"",name:""}}},c07b:function(t,e,i){"use strict";i.r(e);var n=i("da26"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},c0d1:function(t,e,i){"use strict";i.r(e);var n=i("0161"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},c0e4:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uIcon:i("7b88").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return t._$s(0,"i",t.show)?i("view",{staticClass:t._$s(0,"sc","u-empty"),style:t._$s(0,"s",[t.emptyStyle]),attrs:{_i:0}},[t._$s(1,"i",!t.isSrc)?i("u-icon",{attrs:{name:"message"===t.mode?"chat":"empty-"+t.mode,size:t.iconSize,color:t.iconColor,"margin-top":"14",_i:1}}):i("image",{style:t._$s(2,"s",{width:t.$u.addUnit(t.width),height:t.$u.addUnit(t.height)}),attrs:{src:t._$s(2,"a-src",t.icon),_i:2}}),i("text",{staticClass:t._$s(3,"sc","u-empty__text"),style:t._$s(3,"s",[t.textStyle]),attrs:{_i:3}},[t._v(t._$s(3,"t0-0",t._s(t.text?t.text:t.icons[t.mode])))]),t._$s(4,"i",t.$slots.default||t.$slots.$default)?i("view",{staticClass:t._$s(4,"sc","u-empty__wrap"),attrs:{_i:4}},[t._t("default",null,{_i:5})],2):t._e()],1):t._e()},r=[]},c0f0:function(t,e,i){"use strict";i.r(e);var n=i("bbd7"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},c118:function(t,e,i){"use strict";i.r(e);var n=i("78b2"),o=i("cedf");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"6bfb644b",null,!1,n["a"],void 0);e["default"]=s.exports},c135:function(t,e){t.exports=function(t){if(Array.isArray(t))return t},t.exports.__esModule=!0,t.exports["default"]=t.exports},c192:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default="plus"},c240:function(t,e){t.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},t.exports.__esModule=!0,t.exports["default"]=t.exports},c266:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uvText",{attrs:{type:t.type,show:t.show,text:t.text,prefixIcon:t.prefixIcon,suffixIcon:t.suffixIcon,mode:t.mode,href:t.href,format:t.format,call:t.call,openType:t.openType,bold:t.bold,block:t.block,lines:t.lines,color:t.color,decoration:t.decoration,size:t.size,iconStyle:t.iconStyle,margin:t.margin,lineHeight:t.lineHeight,align:t.align,wordWrap:t.wordWrap,customStyle:t.customStyle,_i:0},on:{click:function(e){return t.$emit("click")}}})},o=[]},c3b4:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={scrollList:{indicatorWidth:50,indicatorBarWidth:20,indicator:!0,indicatorColor:"#f2f2f2",indicatorActiveColor:"#3c9cff",indicatorStyle:""}}},c412:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("448a")),r=n(i("93ae")),a=n(i("9ec0")),s=n(i("90c4")),c=i("7f36"),l=i("22a5"),u={components:{SearchRecord:r.default,CommBookItemThree:a.default},data:function(){return{search_empty:s.default,searchRecordList:[],searchFlag:!1,bookKeyword:"",searchHistoryList:[],searchBooksData:[],bookcase:0}},onLoad:function(){var e=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});uni.$u.http.post("/getSearchTags",{},{custom:{token:!0}}).then((function(t){if(uni.hideLoading(),1==t.status){var i=t.data.module;e.searchRecordList=i}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/booksSearchList/booksSearchList.vue:89")})),this.getAndSetSearchHistory()},methods:{searchHistoryDel:function(){(0,c.mySetStorage)("searchHistory",JSON.stringify([])),this.searchHistoryList=[]},getSearchBooks:function(e){var i=this;if(e){uni.showLoading({title:"\u641c\u7d22\u4e2d..."});var n={keyword:e};uni.$u.http.post("/getSearch",n).then((function(t){if(uni.hideLoading(),1==t.status){var n=t.data,o=n.module,r=n.bookcase;i.bookcase=r,i.searchBooksData=(0,l.baseUrlImage)([o]),i.getAndSetSearchHistory(e)}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/booksSearchList/booksSearchList.vue:129")}))}else uni.showToast({title:"\u8bf7\u5148\u8f93\u5165\u4e66\u540d",icon:"none"})},handelSearch:function(){var t=this.bookKeyword;this.getSearchBooks(t)},getAndSetSearchHistory:function(t){var e=(0,c.myGetStorage)("searchHistory")||"[]",i=JSON.parse(e),n=i;t&&(n=[{id:Math.random(),title:t}].concat((0,o.default)(i)),n.length>10&&n.splice(11,n.length-10),(0,c.mySetStorage)("searchHistory",JSON.stringify(n))),this.searchHistoryList=n},handelSearchRecord:function(t){var e=t.currentTarget.dataset.title;this.bookKeyword=e},addBookshelf:function(){this.bookcase=1},clearBookKeyword:function(){this.searchBooksData=[]}}};e.default=u}).call(this,i("0de9")["default"])},c484:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("448a")),r=n(i("9523")),a=n(i("096b"));function s(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function c(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:"url",e=this[t];e&&uni[this.linkType]({url:e})},$uGetRect:function(t,e){var i=this;return new Promise((function(n){uni.createSelectorQuery().in(i)[e?"selectAll":"select"](t).boundingClientRect((function(t){e&&Array.isArray(t)&&t.length&&n(t),!e&&t&&n(t)})).exec()}))},getParentData:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";this.parent||(this.parent={}),this.parent=uni.$u.$parent.call(this,e),this.parent.children&&-1===this.parent.children.indexOf(this)&&this.parent.children.push(this),this.parent&&this.parentData&&Object.keys(this.parentData).map((function(e){t.parentData[e]=t.parent[e]}))},preventEvent:function(t){t&&"function"===typeof t.stopPropagation&&t.stopPropagation()},noop:function(t){this.preventEvent(t)}},onReachBottom:function(){uni.$emit("uOnReachBottom")},beforeDestroy:function(){var t=this;if(this.parent&&uni.$u.test.array(this.parent.children)){var e=this.parent.children;e.map((function(i,n){i===t&&e.splice(n,1)}))}}}},c9fa:function(t,e,i){"use strict";i.r(e);var n=i("8d5d"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},ca2c:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={checkboxGroup:{name:"",value:function(){return[]},shape:"square",disabled:!1,activeColor:"#2979ff",inactiveColor:"#c8c9cc",size:18,placement:"row",labelSize:14,labelColor:"#303133",labelDisabled:!1,iconColor:"#ffffff",iconSize:12,iconPlacement:"left",borderBottom:!1}}},caf5:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("9523")),r=n(i("970b")),a=n(i("5bc3")),s=n(i("156b")),c=n(i("0037")),l=n(i("f161")),u=n(i("46b6")),d=i("1cef"),f=n(i("9f53"));function p(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function h(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{};(0,r.default)(this,e),(0,d.isPlainObject)(i)||(i={},t("warn","\u8bbe\u7f6e\u5168\u5c40\u53c2\u6570\u5fc5\u987b\u63a5\u6536\u4e00\u4e2aObject"," at uni_modules/uview-ui/libs/luch-request/core/Request.js:39")),this.config=(0,f.default)(h(h({},u.default),i)),this.interceptors={request:new c.default,response:new c.default}}return(0,a.default)(e,[{key:"setConfig",value:function(t){this.config=t(this.config)}},{key:"middleware",value:function(t){t=(0,l.default)(this.config,t);var e=[s.default,void 0],i=Promise.resolve(t);this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));while(e.length)i=i.then(e.shift(),e.shift());return i}},{key:"request",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return this.middleware(t)}},{key:"get",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.middleware(h({url:t,method:"GET"},e))}},{key:"post",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.middleware(h({url:t,data:e,method:"POST"},i))}},{key:"put",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.middleware(h({url:t,data:e,method:"PUT"},i))}},{key:"delete",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.middleware(h({url:t,data:e,method:"DELETE"},i))}},{key:"options",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.middleware(h({url:t,data:e,method:"OPTIONS"},i))}},{key:"upload",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.url=t,e.method="UPLOAD",this.middleware(e)}},{key:"download",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.url=t,e.method="DOWNLOAD",this.middleware(e)}}]),e}();e.default=_}).call(this,i("0de9")["default"])},cb34:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("67d2")),r={name:"node",data:function(){return{ctrl:{}}},props:{name:String,attrs:{type:Object,default:function(){return{}}},childs:Array,opts:Array},components:{node:o.default},mounted:function(){var t=this;for(this.root=this.$parent;"mp-html"!=this.root.$options.name;this.root=this.root.$parent);if(this.opts[0]){for(var e=this.childs.length;e--;)if("img"==this.childs[e].name)break;-1!=e&&(this.observer=uni.createIntersectionObserver(this).relativeToViewport({top:500,bottom:500}),this.observer.observe("._img",(function(e){e.intersectionRatio&&(t.$set(t.ctrl,"load",1),t.observer.disconnect())})))}},beforeDestroy:function(){this.observer&&this.observer.disconnect()},methods:{play:function(t){},imgTap:function(t){var e=this.childs[t.currentTarget.dataset.i];if(e.a)return this.linkTap(e.a);e.attrs.ignore||(e.attrs.src=e.attrs.src||e.attrs["data-src"],this.root.$emit("imgTap",e.attrs),this.root.previewImg&&uni.previewImage({current:parseInt(e.attrs.i),urls:this.root.imgList}))},imgLongTap:function(t){var e=this,i=this.childs[t.currentTarget.dataset.i].attrs;i.ignore||uni.showActionSheet({itemList:["\u4fdd\u5b58\u56fe\u7247"],success:function(){uni.downloadFile({url:e.root.imgList[i.i],success:function(t){uni.saveImageToPhotosAlbum({filePath:t.tempFilePath,success:function(){uni.showToast({title:"\u4fdd\u5b58\u6210\u529f"})}})}})}})},imgLoad:function(t){var e=t.currentTarget.dataset.i;(this.opts[1]&&!this.ctrl[e]||-1==this.ctrl[e])&&this.$set(this.ctrl,e,1)},linkTap:function(t){var e=t.currentTarget?this.childs[t.currentTarget.dataset.i].attrs:t,i=e.href;this.root.$emit("linkTap",e),i&&("#"==i[0]?this.root.navigateTo(i.substring(1)).catch((function(){})):i.includes("://")?this.root.copyLink&&plus.runtime.openWeb(i):uni.navigateTo({url:i,fail:function(){uni.switchTab({url:i,fail:function(){}})}}))},mediaError:function(t){var e=t.currentTarget.dataset.i,i=this.childs[e];if("video"==i.name||"audio"==i.name){var n=(this.ctrl[e]||0)+1;if(n>i.src.length&&(n=0),n0&&void 0!==arguments[0])||arguments[0];i&&uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var o={};uni.$u.http.post("/getHistory",o).then((function(t){if(uni.hideLoading(),1==t.status){var i=t.data.history,o=(0,n.baseUrlImage)(i);e.historyList=o}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/readingRecords/index.vue:92")}))},deteleBookHistory:function(e){var i=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});var n={id:e.id};uni.$u.http.post("/delHistory",n).then((function(t){setTimeout((function(){uni.hideLoading()}),1e3),1==t.status&&(uni.showToast({title:"\u5220\u9664\u6210\u529f",icon:"none"}),i.siGetHistory(!1))})).catch((function(e){setTimeout((function(){uni.hideLoading()}),1e3),t("log",e,"========"," at pages/readingRecords/index.vue:117")}))}}};e.default=o}).call(this,i("0de9")["default"])},d0a4:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{otherSteUpList:[{title:"\u5e38\u89c1\u95ee\u9898",toPath:"/pages/myInfo/problemList/index"}]}},onShow:function(t){}}},d0bd:function(t,e,i){"use strict";i.r(e);var n=i("272f"),o=i("febf");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},d0c2:function(t,e,i){"use strict";i.r(e);var n=i("4e42"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},d0cf:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.isGetSystemInfo=function(){var e={};return uni.getSystemInfoSync({success:function(t){return e=function(t){for(var e=1;e0&&(n.push({title:r.slice(0,10).replace(/[\r\n\t]/g,""),start:0,end:i.index,content:r.slice(0,i.index),isStart:!0,isEnd:!1,chapter:o}),o++),n.push({title:i[0].replace(/[\r\n\t]/g,"").slice(0,10),start:i.index,isStart:!1,isEnd:!1,chapter:o}),o>1&&!n[o-2].content&&(n[o-2].content=r.slice(n[o-2].start,i.index),n[o-2].end=i.index);if(1==n.length&&(n[0].content=r,n[0].end=r.length),n.length>0&&(n[0].isStart=!0,n[n.length-1].isEnd=!0,n[n.length-1].content=r.slice(n[n.length-1].start),n[n.length-1].end=r.length),t.content.length/n.length<=1e4)if(this.contents=n,n[n.length-1].content.length>5e4){var a=n[n.length-1].content;this.contents.pop(),this.cutChapter({content:a,currentChapter:t.currentChapter,start:t.start},0,3e3)}else this.initLoading=!0,this.resetPage({start:parseInt(t.start||0),currentChapter:parseInt(t.currentChapter),title:t.title||null}),this.$emit("setCatalog",this.contents);else this.contents=[],this.cutChapter(t,0,3e3)},cutChapter:function(t,e,i){var n=e+i,o=t.content.slice(e,n),r=o.lastIndexOf("\r"),a=o.lastIndexOf("\n"),s=Math.max(r,a);s>-1&&(o=o.slice(0,s+1)),n=e+o.length;var c=this.contents.length+1;this.contents.push({title:"\u7b2c"+c+"\u8282 "+o.replace(/[\r\n\t\s]/g,"").slice(0,10),chapter:c,isStart:!1,isEnd:!1,start:e,end:n,content:o}),n1&&void 0!==arguments[1]&&arguments[1];this.scrollWithAnimation=e,this.$nextTick((function(){this.scrollTop=t-1,this.$nextTick((function(){this.scrollTop=t}))}))},onScroll:function(t){this.$emit("scroll",{scrollTop:t.detail.scrollTop,scrollHeight:t.detail.scrollHeight,scrollWidth:t.detail.scrollWidth})}}};e.default=l},d68e:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{}}}},d6b4:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={steps:{direction:"row",current:0,activeColor:"#3c9cff",inactiveColor:"#969799",activeIcon:"",inactiveIcon:"",dot:!1}}},d6ee:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("e88f")),r={name:"u-input",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{innerValue:"",focused:!1,firstChange:!0,changeFromInner:!1,innerFormatter:function(t){return t}}},watch:{value:{immediate:!0,handler:function(t,e){this.innerValue=t,this.firstChange=!1,this.changeFromInner=!1}}},computed:{isShowClear:function(){var t=this.clearable,e=this.readonly,i=this.focused,n=this.innerValue;return!!t&&!e&&!!i&&""!==n},inputClass:function(){var t=[],e=this.border,i=(this.disabled,this.shape);return"surround"===e&&(t=t.concat(["u-border","u-input--radius"])),t.push("u-input--".concat(i)),"bottom"===e&&(t=t.concat(["u-border-bottom","u-input--no-radius"])),t.join(" ")},wrapperStyle:function(){var t={};return this.disabled&&(t.backgroundColor=this.disabledColor),"none"===this.border?t.padding="0":(t.paddingTop="6px",t.paddingBottom="6px",t.paddingLeft="9px",t.paddingRight="9px"),uni.$u.deepMerge(t,uni.$u.addStyle(this.customStyle))},inputStyle:function(){var t={color:this.color,fontSize:uni.$u.addUnit(this.fontSize),textAlign:this.inputAlign};return t}},methods:{setFormatter:function(t){this.innerFormatter=t},onInput:function(t){var e=this,i=t.detail||{},n=i.value,o=void 0===n?"":n,r=this.formatter||this.innerFormatter,a=r(o);this.innerValue=o,this.$nextTick((function(){e.innerValue=a,e.valueChange()}))},onBlur:function(t){var e=this;this.$emit("blur",t.detail.value),uni.$u.sleep(50).then((function(){e.focused=!1})),uni.$u.formValidate(this,"blur")},onFocus:function(t){this.focused=!0,this.$emit("focus")},onConfirm:function(t){this.$emit("confirm",this.innerValue)},onkeyboardheightchange:function(){this.$emit("keyboardheightchange")},valueChange:function(){var t=this,e=this.innerValue;this.$nextTick((function(){t.$emit("input",e),t.changeFromInner=!0,t.$emit("change",e),uni.$u.formValidate(t,"change")}))},onClear:function(){var t=this;this.innerValue="",this.$nextTick((function(){t.valueChange(),t.$emit("clear")}))},clickHandler:function(){}}};e.default=r},d799:function(t,e,i){"use strict";var n;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];i?n||(n=!0,"function"===typeof t&&t(),setTimeout((function(){n=!1}),e)):n||(n=!0,setTimeout((function(){n=!1,"function"===typeof t&&t()}),e))};e.default=o},d8eb:function(t,e,i){"use strict";i.r(e);var n=i("9253"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},d934:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uGap:i("1814").default},o=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","content"),attrs:{_i:0}},[e("view",{staticClass:this._$s(1,"sc","step_user_info"),attrs:{_i:1}},[e("view",{staticClass:this._$s(2,"sc","_info_box"),attrs:{_i:2}},[e("MyUserInfo",{ref:"MyUserInfo",attrs:{_i:3}})],1)]),e("view",[e("u-gap",{attrs:{height:"14rpx",bgColor:"#F6F6F6",_i:5}})],1),e("view",{staticClass:this._$s(6,"sc","step_recharge_grid_info"),attrs:{_i:6}},[e("view",{staticClass:this._$s(7,"sc","rechargeGrid_box"),attrs:{_i:7}},[e("rechargeGrid",{attrs:{_i:8}})],1)]),e("view",[e("u-gap",{attrs:{height:"14rpx",bgColor:"#F6F6F6",_i:10}})],1),e("view",{staticClass:this._$s(11,"sc","step_other_info"),attrs:{_i:11}},[e("view",{staticClass:this._$s(12,"sc","otherCellInfo_box"),attrs:{_i:12}},[e("otherCellInfo",{attrs:{_i:13}})],1)])])},r=[]},d98b:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={swipeAction:{autoClose:!0}}},d9bb:function(t,e,i){"use strict";i.r(e);var n=i("3c76"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},d9bd:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("29b4")),r=n(i("7bd2")),a=n(i("e53f")),s=(i("d0cf"),{components:{CommNavBar:o.default,Home:r.default,Member:a.default},data:function(){return{navBarList:[{id:"1",name:"\u9996\u9875"}],navBarActive:"1",barHeight:0}},onLoad:function(){},methods:{handelCommNavBar:function(t){this.navBarActive=t.currentTarget.dataset.id}}});e.default=s},da26:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{richtext:{type:String,default:""},pageType:{type:String,default:""},fontFace:{type:Array,default:function(){return new Array}}},computed:{webviewStyle:function(){return"scroll"==this.pageType?{height:this.customWebviewHeight+"px"}:{flex:1}},richTextStyle:function(){return"scroll"==this.pageType?{"padding-bottom":"20rpx"}:{flex:1}}},data:function(){return{customWebviewHeight:0}},mounted:function(){},methods:{onPostMessage:function(t){var e=this;t.detail.data.forEach((function(t){t.customClick&&e.$emit("customClick",t.customClick),t.height&&(e.customWebviewHeight=t.height)}))},setFontFace:function(){this.$refs.webview&&this.$refs.webview.evalJS("setFontFace("+encodeURIComponent(JSON.stringify(this.fontFace))+")")}},watch:{FontFace:function(t){t.length>0&&this.$nextTick((function(){var t=this;setTimeout((function(){t.setFontFace()}),100)}))}}};e.default=n},da52:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("2566")),r=n(i("9862")),a=n(i("6780")),s={data:function(){return{rechargeGridList:[{imageSrc:o.default,title:"\u6d4f\u89c8\u8bb0\u5f55",toPath:"/pages/readingRecords/index"},{imageSrc:r.default,title:"\u5145\u503c\u8bb0\u5f55",toPath:"/pages/voucherCenterDetail/index"},{imageSrc:a.default,title:"\u4e66\u5e01\u660e\u7ec6",toPath:"/pages/bookCoinDetail/bookCoinDetail"}]}},methods:{gridClick:function(t){t.toPath&&uni.navigateTo({url:t.toPath})}}};e.default=s},dabe:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{icon:{type:String,default:uni.$u.props.empty.icon},text:{type:String,default:uni.$u.props.empty.text},textColor:{type:String,default:uni.$u.props.empty.textColor},textSize:{type:[String,Number],default:uni.$u.props.empty.textSize},iconColor:{type:String,default:uni.$u.props.empty.iconColor},iconSize:{type:[String,Number],default:uni.$u.props.empty.iconSize},mode:{type:String,default:uni.$u.props.empty.mode},width:{type:[String,Number],default:uni.$u.props.empty.width},height:{type:[String,Number],default:uni.$u.props.empty.height},show:{type:Boolean,default:uni.$u.props.empty.show},marginTop:{type:[String,Number],default:uni.$u.props.empty.marginTop}}};e.default=n},db17:function(t,e,i){"use strict";(function(e){var n=i("4ea4"),o=n(i("c808")),r=i("7f36");t.exports=function(t){uni.$u.http.setConfig((function(t){return t.baseURL=o.default.baseUrl,t.header=o.default.header,t})),uni.$u.http.interceptors.request.use((function(t){t.data=t.data||{};var e=(0,r.myGetStorage)("token");return e&&(t.header.token=e),t}),(function(t){return Promise.reject(t)})),uni.$u.http.interceptors.response.use((function(t){var i,n=t.data;e("log",t,"============"," at utils/request/index.js:46");var o=null===(i=t.config)||void 0===i?void 0:i.custom;return 1!==n.status?(!1!==o.toast&&uni.$u.toast(n.msg),null!==o&&void 0!==o&&o.catch?new Promise((function(){})):Promise.reject(n)):n||{}}),(function(t){return Promise.reject(t)}))}}).call(this,i("0de9")["default"])},db9e:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={popup:{show:!1,overlay:!0,mode:"bottom",duration:300,closeable:!1,overlayStyle:function(){},closeOnClickOverlay:!0,zIndex:10075,safeAreaInsetBottom:!0,safeAreaInsetTop:!1,closeIconPos:"top-right",round:0,zoom:!0,bgColor:"",overlayOpacity:.5}}},dbad:function(t,e,i){"use strict";i.r(e);var n=i("f0fc"),o=i("825b");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"0588d083",null,!1,n["a"],void 0);e["default"]=s.exports},dd1c:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("3325")),r={components:{CommVipInfo:o.default},data:function(){}};e.default=r},dda8:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("9523")),r=n(i("4e38")),a=n(i("d2bf")),s=n(i("7c52")),c=n(i("125c")),l=n(i("bfa9")),u=n(i("9bb3")),d=n(i("95c6")),f=n(i("68cd")),p=n(i("799e")),h=n(i("fd6a")),_=n(i("b72a")),v=n(i("0b63")),m=n(i("341c")),g=n(i("bbb3")),b=n(i("ca2c")),y=n(i("2e6f")),x=n(i("31c0")),w=n(i("1644")),$=n(i("cda0")),C=n(i("fce9")),k=n(i("6f68")),S=n(i("1030")),O=n(i("d019")),I=n(i("02d3")),T=n(i("8cb6")),B=n(i("f3d6")),A=n(i("9ee5")),P=n(i("655f")),j=n(i("c65b")),E=n(i("a5dc")),L=n(i("90e7")),M=n(i("ec72")),F=n(i("917f")),D=n(i("55a1")),R=n(i("2307")),z=n(i("7cc3")),N=n(i("15df")),U=n(i("1047")),H=n(i("938c")),Q=n(i("8e5c")),Y=n(i("295c")),G=n(i("b111")),q=n(i("58d0")),W=n(i("8442")),V=n(i("8d98")),X=n(i("fbf6")),J=n(i("55fd")),K=n(i("43d3")),Z=n(i("7807")),tt=n(i("163c")),et=n(i("f204")),it=n(i("2ce3")),nt=n(i("aee9")),ot=n(i("8901")),rt=n(i("7ba8")),at=n(i("4b0e")),st=n(i("db9e")),ct=n(i("3e07")),lt=n(i("72ab")),ut=n(i("0de95")),dt=n(i("5cb8")),ft=n(i("3efb")),pt=n(i("cc29")),ht=n(i("c3b4")),_t=n(i("1104")),vt=n(i("93b6")),mt=n(i("0e11")),gt=n(i("bc98c")),bt=n(i("e9de")),yt=n(i("d6b4")),xt=n(i("be84")),wt=n(i("805f")),$t=n(i("4c4f")),Ct=n(i("d98b")),kt=n(i("b2bd")),St=n(i("4051")),Ot=n(i("a129")),It=n(i("025f")),Tt=n(i("ef50")),Bt=n(i("84a0")),At=n(i("0be6")),Pt=n(i("40f3")),jt=n(i("4b93c")),Et=n(i("6fee")),Lt=n(i("b747")),Mt=n(i("29e9")),Ft=n(i("e87f")),Dt=n(i("16d1")),Rt=n(i("fd29"));function zt(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function Nt(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:500,i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(null!==n&&clearTimeout(n),i){var o=!n;n=setTimeout((function(){n=null}),e),o&&"function"===typeof t&&t()}else n=setTimeout((function(){"function"===typeof t&&t()}),e)};e.default=o},e14f:function(t,e,i){"use strict";i.r(e);var n=i("efe3"),o=i("5a06");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},e156:function(t,e,i){"use strict";i.r(e);var n=i("42f4"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},e18d:function(t,e,i){"use strict";i.r(e);var n=i("5a68"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},e273:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{showHeight:{type:[String,Number],default:uni.$u.props.readMore.showHeight},toggle:{type:Boolean,default:uni.$u.props.readMore.toggle},closeText:{type:String,default:uni.$u.props.readMore.closeText},openText:{type:String,default:uni.$u.props.readMore.openText},color:{type:String,default:uni.$u.props.readMore.color},fontSize:{type:[String,Number],default:uni.$u.props.readMore.fontSize},shadowStyle:{type:Object,default:function(){return{backgroundImage:"linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #fff 80%)",paddingTop:"100px",marginTop:"-100px"}}},textIndent:{type:String,default:uni.$u.props.readMore.textIndent},name:{type:[String,Number],default:uni.$u.props.readMore.name}}};e.default=n},e276:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{otherSteUpList:[{title:"\u8054\u7cfb\u5ba2\u670d",icon:"chat",size:26,titleStyle:{fontSize:"32rpx",marginLeft:"16rpx"}},{title:"\u5173\u4e8e\u6211\u4eec",icon:"info-circle",size:26,titleStyle:{fontSize:"32rpx",marginLeft:"16rpx"},toPath:"/pages/myInfo/aboutMy/index"},{title:"\u8bbe\u7f6e",icon:"setting",size:26,titleStyle:{fontSize:"32rpx",marginLeft:"16rpx"},toPath:"/pages/myInfo/mySetUp/index"}]}}}},e33f:function(t,e,i){"use strict";i.r(e);var n=i("ae80"),o=i("ffb2");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},e3db:function(t,e){var i={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==i.call(t)}},e439:function(t,e){t.exports="/static/images/bookCity/ranking_three.png"},e50d:function(t,e,i){var n=i("7037")["default"];t.exports=function(t,e){if("object"!==n(t)||null===t)return t;var i=t[Symbol.toPrimitive];if(void 0!==i){var o=i.call(t,e||"default");if("object"!==n(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)},t.exports.__esModule=!0,t.exports["default"]=t.exports},e53f:function(t,e,i){"use strict";i.r(e);var n=i("092d"),o=i("fd41");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},e643:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","problem_title"),attrs:{_i:1}},[t._v(t._$s(1,"t0-0",t._s(t.problemTitle)))]),t._l(t._$s(2,"f",{forItems:t.problemList}),(function(e,n,o,r){return i("view",{key:t._$s(2,"f",{forIndex:o,key:n}),staticClass:t._$s("2-"+r,"sc","problem_describe"),attrs:{_i:"2-"+r}},[t._v(t._$s("2-"+r,"t0-0",t._s(e)))])}))],2)},o=[]},e653:function(t,e,i){"use strict";i.r(e);var n=i("47fc"),o=i("730e");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"7974943c",null,!1,n["a"],void 0);e["default"]=s.exports},e6f4:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("7261")),r={name:"u-checkbox-group",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],computed:{parentData:function(){return[this.value,this.disabled,this.inactiveColor,this.activeColor,this.size,this.labelDisabled,this.shape,this.iconSize,this.borderBottom,this.placement]},bemClass:function(){return this.bem("checkbox-group",["placement"])}},watch:{parentData:function(){this.children.length&&this.children.map((function(t){"function"===typeof t.init&&t.init()}))}},data:function(){return{}},created:function(){this.children=[]},methods:{unCheckedOther:function(t){var e=[];this.children.map((function(t){t.isChecked&&e.push(t.name)})),this.$emit("change",e),this.$emit("input",e)}}};e.default=r},e87f:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={tooltip:{text:"",copyText:"",size:14,color:"#606266",bgColor:"transparent",direction:"top",zIndex:10071,showCopy:!0,buttons:function(){return[]},overlay:!0,showToast:!0}}},e88f:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{value:{type:[String,Number],default:uni.$u.props.input.value},type:{type:String,default:uni.$u.props.input.type},fixed:{type:Boolean,default:uni.$u.props.input.fixed},disabled:{type:Boolean,default:uni.$u.props.input.disabled},disabledColor:{type:String,default:uni.$u.props.input.disabledColor},clearable:{type:Boolean,default:uni.$u.props.input.clearable},password:{type:Boolean,default:uni.$u.props.input.password},maxlength:{type:[String,Number],default:uni.$u.props.input.maxlength},placeholder:{type:String,default:uni.$u.props.input.placeholder},placeholderClass:{type:String,default:uni.$u.props.input.placeholderClass},placeholderStyle:{type:[String,Object],default:uni.$u.props.input.placeholderStyle},showWordLimit:{type:Boolean,default:uni.$u.props.input.showWordLimit},confirmType:{type:String,default:uni.$u.props.input.confirmType},confirmHold:{type:Boolean,default:uni.$u.props.input.confirmHold},holdKeyboard:{type:Boolean,default:uni.$u.props.input.holdKeyboard},focus:{type:Boolean,default:uni.$u.props.input.focus},autoBlur:{type:Boolean,default:uni.$u.props.input.autoBlur},disableDefaultPadding:{type:Boolean,default:uni.$u.props.input.disableDefaultPadding},cursor:{type:[String,Number],default:uni.$u.props.input.cursor},cursorSpacing:{type:[String,Number],default:uni.$u.props.input.cursorSpacing},selectionStart:{type:[String,Number],default:uni.$u.props.input.selectionStart},selectionEnd:{type:[String,Number],default:uni.$u.props.input.selectionEnd},adjustPosition:{type:Boolean,default:uni.$u.props.input.adjustPosition},inputAlign:{type:String,default:uni.$u.props.input.inputAlign},fontSize:{type:[String,Number],default:uni.$u.props.input.fontSize},color:{type:String,default:uni.$u.props.input.color},prefixIcon:{type:String,default:uni.$u.props.input.prefixIcon},prefixIconStyle:{type:[String,Object],default:uni.$u.props.input.prefixIconStyle},suffixIcon:{type:String,default:uni.$u.props.input.suffixIcon},suffixIconStyle:{type:[String,Object],default:uni.$u.props.input.suffixIconStyle},border:{type:String,default:uni.$u.props.input.border},readonly:{type:Boolean,default:uni.$u.props.input.readonly},shape:{type:String,default:uni.$u.props.input.shape},formatter:{type:[Function,null],default:uni.$u.props.input.formatter},ignoreCompositionEvent:{type:Boolean,default:!0}}};e.default=n},e890:function(t,e,i){"use strict";i.r(e);var n=i("f202"),o=i("959f");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},e8a4:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e){return e?"".concat(t.replace(/\/+$/,""),"/").concat(e.replace(/^\/+/,"")):t}},e927:function(t,e,i){"use strict";i.r(e);var n=i("644e"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},e9de:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={statusBar:{bgColor:"transparent"}}},ea39:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("8180")),r=n(i("9ec0")),a={components:{CommBookItem:o.default,commBookItemThree:r.default},data:function(){}};e.default=a},ea74:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{ref:"u-grid",staticClass:this._$s(0,"sc","u-grid"),style:this._$s(0,"s",[this.gridStyle]),attrs:{_i:0}},[this._t("default",null,{_i:1})],2)},o=[]},ea79:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uniNavBar:i("462a").default},o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("view",{staticClass:t._$s(0,"sc","commNavBar_content"),attrs:{_i:0}},[n("uni-nav-bar",{attrs:{border:!1,statusBar:!0,leftWidth:"0",rightWidth:"0",height:"80rpx",fixed:!1,backgroundColor:"transparent",_i:1}},[n("view",{staticClass:t._$s(2,"sc","nav_bar_box"),attrs:{_i:2}},[n("view",{staticClass:t._$s(3,"sc","nav_bar_box_left"),attrs:{_i:3}},[n("view",{staticClass:t._$s(4,"sc","_box_left_list"),attrs:{_i:4}},t._l(t._$s(5,"f",{forItems:t.navBarList}),(function(e,o,r,a){return n("view",{key:t._$s(5,"f",{forIndex:r,key:e.id}),staticClass:t._$s("5-"+a,"sc","_left_list_item"),attrs:{"data-id":t._$s("5-"+a,"a-data-id",e.id),_i:"5-"+a},on:{click:t.navBarClick}},[n("view",{class:t._$s("6-"+a,"c",["_left_list_item_box",t.navBarActive==e.id?"active":""]),attrs:{_i:"6-"+a}},[n("view",{class:t._$s("7-"+a,"c",["_list_item_name",t.navBarActive==e.id?"active":""]),attrs:{_i:"7-"+a}},[t._v(t._$s("7-"+a,"t0-0",t._s(e.name)))]),t._$s("8-"+a,"i",t.navBarActive==e.id)?n("view",{staticClass:t._$s("8-"+a,"sc","_list_item_iamge"),attrs:{_i:"8-"+a}},[n("image",{staticClass:t._$s("9-"+a,"sc","is_image"),attrs:{src:t._$s("9-"+a,"a-src",i("341d")),_i:"9-"+a}})]):t._e()])])})),0)]),n("view",{staticClass:t._$s(10,"sc","nav_bar_box_right"),attrs:{_i:10},on:{click:t.toBooksSearchList}},[n("view",{staticClass:t._$s(11,"sc","_box_right_search"),attrs:{_i:11}},[n("view",{staticClass:t._$s(12,"sc","_search_iamge"),attrs:{_i:12}},[n("image",{staticClass:t._$s(13,"sc","is_image"),attrs:{_i:13}})]),n("view",{staticClass:t._$s(14,"sc","_search_tips"),attrs:{_i:14}})])])])]),n("view",{staticClass:t._$s(15,"sc","commNavBar_bag"),attrs:{_i:15}})],1)},r=[]},ead3:function(t,e,i){"use strict";i.r(e);var n=i("210b"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},eadf:function(t,e,i){"use strict";i.r(e);var n=i("b42f"),o=i("0189");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"7c703b67",null,!1,n["a"],void 0);e["default"]=s.exports},eaf8:function(t,e){t.exports="/static/images/bookCity/complete.png"},eb7d:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{color:{type:String,default:uni.$u.props.link.color},fontSize:{type:[String,Number],default:uni.$u.props.link.fontSize},underLine:{type:Boolean,default:uni.$u.props.link.underLine},href:{type:String,default:uni.$u.props.link.href},mpTips:{type:String,default:uni.$u.props.link.mpTips},lineColor:{type:String,default:uni.$u.props.link.lineColor},text:{type:String,default:uni.$u.props.link.text}}};e.default=n},eb99:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uCellGroup:i("0aba").default,uCell:i("9bd0").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","step_other_info"),attrs:{_i:1}},[i("u-cell-group",{attrs:{border:!1,_i:2}},t._l(t._$s(3,"f",{forItems:t.otherSteUpList}),(function(e,n,o,r){return i("u-cell",{key:t._$s(3,"f",{forIndex:o,key:n}),attrs:{title:e.title,isLink:!1,titleStyle:e.titleStyle,size:"large",url:e.toPath,_i:"3-"+r}})})),1)],1)])},r=[]},ec07:function(t,e,i){"use strict";i.r(e);var n=i("407e"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},ec72:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={gridItem:{name:null,bgColor:"transparent"}}},edad:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:this._$s(0,"sc","u-grid-item"),class:this._$s(0,"c",this.classes),style:this._$s(0,"s",[this.itemStyle]),attrs:{_i:0},on:{click:this.clickHandler}},[this._t("default",null,{_i:1})],2)},o=[]},edc0:function(t,e){t.exports="/static/images/novelReading/bookshelf_ccd9e2.png"},ef50:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={tabbar:{value:null,safeAreaInsetBottom:!0,border:!0,zIndex:1,activeColor:"#1989fa",inactiveColor:"#7d7e80",fixed:!0,placeholder:!0}}},efe3:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","explosiveList_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","_explosive_title"),attrs:{_i:1}}),i("view",{staticClass:t._$s(2,"sc","_explosive_list"),attrs:{_i:2}},t._l(t._$s(3,"f",{forItems:t.dataList}),(function(e,n,o,r){return i("view",{key:t._$s(3,"f",{forIndex:o,key:e.id}),staticClass:t._$s("3-"+r,"sc","_explosive_list_item"),attrs:{_i:"3-"+r},on:{click:function(i){return t.toBooksReadingDetail(e)}}},[i("view",{staticClass:t._$s("4-"+r,"sc","_explosive_list_item_box"),attrs:{_i:"4-"+r}},[i("CommBookItem",{attrs:{bookName:e.title,bookTips:e.category_name,bookImage:e.cover,_i:"5-"+r}})],1)])})),0)])},o=[]},f013:function(t,e,i){"use strict";i.r(e);var n=i("0c7f"),o=i("2593");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},f0a4:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("bc72")),r=n(i("b89c")),a={name:"u-icon",data:function(){return{}},mixins:[uni.$u.mpMixin,uni.$u.mixin,r.default],computed:{uClasses:function(){var t=[];return t.push(this.customPrefix+"-"+this.name),this.color&&uni.$u.config.type.includes(this.color)&&t.push("u-icon__icon--"+this.color),t},iconStyle:function(){var t={};return t={fontSize:uni.$u.addUnit(this.size),lineHeight:uni.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:uni.$u.addUnit(this.top)},this.color&&!uni.$u.config.type.includes(this.color)&&(t.color=this.color),t},isImg:function(){return-1!==this.name.indexOf("/")},imgStyle:function(){var t={};return t.width=this.width?uni.$u.addUnit(this.width):uni.$u.addUnit(this.size),t.height=this.height?uni.$u.addUnit(this.height):uni.$u.addUnit(this.size),t},icon:function(){return o.default["uicon-"+this.name]||this.name}},methods:{clickHandler:function(t){this.$emit("click",this.index),this.stop&&this.preventEvent(t)}}};e.default=a},f0bd:function(t,e,i){"use strict";i.r(e);var n=i("0812"),o=i("6fa1");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"468b404f",null,!1,n["a"],void 0);e["default"]=s.exports},f0c5:function(t,e,i){"use strict";function n(t,e,i,n,o,r,a,s,c,l){var u,d="function"===typeof t?t.options:t;if(c){d.components||(d.components={});var f=Object.prototype.hasOwnProperty;for(var p in c)f.call(c,p)&&!f.call(d.components,p)&&(d.components[p]=c[p])}if(l&&("function"===typeof l.beforeCreate&&(l.beforeCreate=[l.beforeCreate]),(l.beforeCreate||(l.beforeCreate=[])).unshift((function(){this[l.__module]=this})),(d.mixins||(d.mixins=[])).push(l)),e&&(d.render=e,d.staticRenderFns=i,d._compiled=!0),n&&(d.functional=!0),r&&(d._scopeId="data-v-"+r),a?(u=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},d._ssrRegister=u):o&&(u=s?function(){o.call(this,this.$root.$options.shadowRoot)}:o),u)if(d.functional){d._injectStyles=u;var h=d.render;d.render=function(t,e){return u.call(e),h(t,e)}}else{var _=d.beforeCreate;d.beforeCreate=_?[].concat(_,u):[u]}return{exports:t,options:d}}i.d(e,"a",(function(){return n}))},f0fc:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","giveCoinDetail_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","give_list_body"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","give_list_item"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","give_list_item_header"),attrs:{_i:3}},[i("view",{staticClass:t._$s(4,"sc","item_header_time"),attrs:{_i:4}})]),i("view",{staticClass:t._$s(5,"sc","give_list_item_con"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","_item_con_give_record"),attrs:{_i:6}},[i("view",{staticClass:t._$s(7,"sc","give_record_item"),attrs:{_i:7}},[i("view",{staticClass:t._$s(8,"sc","record_item_title"),attrs:{_i:8}}),i("view",{staticClass:t._$s(9,"sc","record_item_num"),attrs:{_i:9}})]),i("view",{staticClass:t._$s(10,"sc","give_record_item mt16rpx"),attrs:{_i:10}},[i("view",{staticClass:t._$s(11,"sc","record_item_time"),attrs:{_i:11}}),i("view",{staticClass:t._$s(12,"sc","record_item_become_due"),attrs:{_i:12}})])]),i("view",{staticClass:t._$s(13,"sc","_item_con_give_record"),attrs:{_i:13}},[i("view",{staticClass:t._$s(14,"sc","give_record_item"),attrs:{_i:14}},[i("view",{staticClass:t._$s(15,"sc","record_item_title"),attrs:{_i:15}}),i("view",{staticClass:t._$s(16,"sc","record_item_num"),attrs:{_i:16}})]),i("view",{staticClass:t._$s(17,"sc","give_record_item mt16rpx"),attrs:{_i:17}},[i("view",{staticClass:t._$s(18,"sc","record_item_time"),attrs:{_i:18}}),i("view",{staticClass:t._$s(19,"sc","record_item_become_due"),attrs:{_i:19}})])])])])])])},o=[]},f161:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("9523")),r=i("1cef");function a(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function s(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{},i=e.method||t.method||"GET",n={baseURL:t.baseURL||"",method:i,url:e.url||"",params:e.params||{},custom:s(s({},t.custom||{}),e.custom||{}),header:(0,r.deepMerge)(t.header||{},e.header||{})},o=["getTask","validateStatus"];if(n=s(s({},n),c(o,t,e)),"DOWNLOAD"===i)(0,r.isUndefined)(e.timeout)?(0,r.isUndefined)(t.timeout)||(n.timeout=t.timeout):n.timeout=e.timeout;else if("UPLOAD"===i){delete n.header["content-type"],delete n.header["Content-Type"];var a=["files","filePath","name","timeout","formData"];a.forEach((function(t){(0,r.isUndefined)(e[t])||(n[t]=e[t])})),(0,r.isUndefined)(n.timeout)&&!(0,r.isUndefined)(t.timeout)&&(n.timeout=t.timeout)}else{var l=["data","timeout","dataType","responseType","sslVerify","firstIpv4"];n=s(s({},n),c(l,t,e))}return n}},f1b4:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","commVipInfo_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","vip_info_box"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","vip_info_box_left"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","vip_info_sculpture"),attrs:{_i:3}},[i("image",{staticClass:t._$s(4,"sc","is_image"),attrs:{_i:4}})]),i("view",{staticClass:t._$s(5,"sc","vip_whether_tips_box"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","vip_whether_tips"),attrs:{_i:6}},[i("view",{staticClass:t._$s(7,"sc","vip_whether_tips_test"),attrs:{_i:7}}),i("view",{staticClass:t._$s(8,"sc","vip_whether_tips_icon"),attrs:{_i:8}},[i("image",{staticClass:t._$s(9,"sc","is_image"),attrs:{_i:9}})])]),i("view",{staticClass:t._$s(10,"sc","vip_time_tips"),attrs:{_i:10}})])]),i("view",{staticClass:t._$s(11,"sc","vip_info_box_right"),attrs:{_i:11}},[i("view",{staticClass:t._$s(12,"sc","vip_info_renew"),attrs:{_i:12}})])])])},o=[]},f202:function(t,e,i){"use strict";i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","explosiveList_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","_explosive_title"),attrs:{_i:1}}),i("view",{staticClass:t._$s(2,"sc","_explosive_list"),attrs:{_i:2}},t._l(t._$s(3,"f",{forItems:t.dataList}),(function(e,n,o,r){return i("view",{key:t._$s(3,"f",{forIndex:o,key:e.id}),staticClass:t._$s("3-"+r,"sc","_explosive_list_item"),attrs:{_i:"3-"+r},on:{click:function(i){return t.toBooksReadingDetail(e)}}},[i("view",{staticClass:t._$s("4-"+r,"sc","_explosive_list_item_box"),attrs:{_i:"4-"+r}},[i("CommBookItem",{attrs:{bookName:e.title,bookTips:e.category_name,bookImage:e.cover,_i:"5-"+r}})],1)])})),0)])},o=[]},f204:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={notify:{top:0,type:"primary",color:"#ffffff",bgColor:"",message:"",duration:3e3,fontSize:15,safeAreaInsetTop:!1}}},f21f:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("9523")),r=n(i("c9f7")),a=n(i("17e7")),s=n(i("84ab")),c=n(i("aac2")),l=n(i("892e")),u=n(i("48d6")),d=n(i("e0da")),f=n(i("d799")),p=n(i("7e2e")),h=n(i("4e38")),_=n(i("dda8")),v=n(i("6265")),m=n(i("1bbe")),g=n(i("c192"));function b(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,n)}return i}function y(t){for(var e=1;euni.$u.getPx(t.showHeight)&&(t.isLongContent=!0,t.status="close")}));case 1:case"end":return e.stop()}}),e)})))()},getContentHeight:function(){var t=this;return(0,r.default)(o.default.mark((function e(){return o.default.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,uni.$u.sleep(30);case 2:return e.abrupt("return",new Promise((function(e){t.$uGetRect("."+t.elId).then((function(t){e(t.height)}))})));case 3:case"end":return e.stop()}}),e)})))()},toggleReadMore:function(){this.status="close"===this.status?"open":"close",0==this.toggle&&(this.isLongContent=!1),this.$emit(this.status,this.name)}}};e.default=s},f5b9:function(t,e,i){"use strict";i.r(e);var n=i("73b8"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},f653:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{bookInfo:{type:Object,default:{title:"",author:"",category_name:""}}},data:function(){return{}}};e.default=n},f7da:function(t,e,i){"use strict";(function(t){var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("eaf8")),r=n(i("5e7a")),a=n(i("84e5")),s=n(i("f2b0")),c=n(i("8367")),l=n(i("f8b7")),u=n(i("e14f")),d=n(i("5b31")),f=n(i("e890")),p=n(i("096b")),h=n(i("c808")),_=i("22a5"),v={components:{RankingList:c.default,PopularityList:l.default,ExplosiveList:u.default,OriginalList:d.default,RecommendList:f.default,CommFooter:p.default},data:function(){return{baseUrl:h.default.baseUrl,swiperList:[],list:[{name:s.default,title:"\u699c\u5355",toPath:"/pages/booksTheCharts/index"},{name:o.default,title:"\u5b8c\u672c",toPath:"/pages/booksListAll/index",type:"complete"},{name:r.default,title:"\u65b0\u4e66",toPath:"/pages/booksListAll/index",type:"new_book"},{name:a.default,title:"\u5145\u503c",toPath:"/pages/voucherCenter/index"}],explosiveDataList:[],rankingDataList:[],rankingDataObj:{},headerListActive:"1",popularityDataList:[],originalDataList:[],recommendDataList:[],moreBooksList:[]}},mounted:function(){var e=this;uni.showLoading({title:"\u52a0\u8f7d\u4e2d..."});uni.$u.http.post("/Index",{},{custom:{token:!0}}).then((function(t){if(uni.hideLoading(),1==t.status){var i=t.data,n=i.ads,o=i.module1,r=i.charts1,a=i.charts2,s=i.charts3,c=i.charts4,l=i.module3,u=i.module4,d=i.module5,f=i.module6;e.swiperList=(0,_.baseUrlImage)(n),e.explosiveDataList=(0,_.baseUrlImage)(o),e.explosiveDataList=(0,_.baseUrlImage)(o);var p={1:(0,_.baseUrlImage)(r),2:(0,_.baseUrlImage)(a),3:(0,_.baseUrlImage)(s),4:(0,_.baseUrlImage)(c)};e.rankingDataList=p[e.headerListActive],e.rankingDataObj=p,e.popularityDataList=(0,_.baseUrlImage)(l),e.originalDataList=(0,_.baseUrlImage)(u),e.recommendDataList=(0,_.baseUrlImage)(d),e.moreBooksList=(0,_.baseUrlImage)(f)}})).catch((function(e){uni.hideLoading(),t("log",e,"========"," at pages/bookCity/components/home/index.vue:176")}))},methods:{toGridItemPath:function(t){t.toPath&&uni.navigateTo({url:"".concat(t.toPath,"?titleType=").concat(t.type)})},handelRankingList:function(t){var e=t.currentTarget.dataset.id;this.headerListActive=e,this.rankingDataList=this.rankingDataObj[e]}}};e.default=v}).call(this,i("0de9")["default"])},f83b:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("0fc7")),r={name:"u-modal",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{loading:!1}},watch:{show:function(t){t&&this.loading&&(this.loading=!1)}},methods:{confirmHandler:function(){this.asyncClose&&(this.loading=!0),this.$emit("confirm")},cancelHandler:function(){this.$emit("cancel")},clickHandler:function(){this.closeOnClickOverlay&&this.$emit("close")}}};e.default=r},f8b7:function(t,e,i){"use strict";i.r(e);var n=i("4e3e"),o=i("def4");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],void 0);e["default"]=s.exports},fa9a:function(t,e,i){"use strict";i.r(e);var n=i("e276"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},fb6a:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("2a96")),r={name:"u-swiper-indicator",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{lineWidth:22}},computed:{lineStyle:function(){var t={};return t.width=uni.$u.addUnit(this.lineWidth),t.transform="translateX(".concat(uni.$u.addUnit(this.current*this.lineWidth),")"),t.backgroundColor=this.indicatorActiveColor,t},dotStyle:function(){var t=this;return function(e){var i={};return i.backgroundColor=e===t.current?t.indicatorActiveColor:t.indicatorInactiveColor,i}}}};e.default=r},fbf6:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={loadmore:{status:"loadmore",bgColor:"transparent",icon:!0,fontSize:14,iconSize:17,color:"#606266",loadingIcon:"spinner",loadmoreText:"\u52a0\u8f7d\u66f4\u591a",loadingText:"\u6b63\u5728\u52a0\u8f7d...",nomoreText:"\u6ca1\u6709\u66f4\u591a\u4e86",isDot:!1,iconColor:"#b7b7b7",marginTop:10,marginBottom:10,height:"auto",line:!1,lineColor:"#E6E8EB",dashed:!1}}},fc09:function(t,e,i){"use strict";i.r(e);var n=i("d0eb"),o=i("4145");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"86d5eee4",null,!1,n["a"],void 0);e["default"]=s.exports},fc74:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("1817")),r={props:{visible:{type:Boolean,default:!1},size:{type:[Number,String],default:40},color:{type:String,default:"#333333"},text:{type:String,default:""}},computed:{rgbs:function(){var t=o.default.hex2rgb(this.color).replace("rgb(","").replace(")","");return[{top:"rgba(".concat(t,", 1)"),bottom:"rgba(".concat(t,", .4)")},{top:"rgba(".concat(t,", .4)"),bottom:"rgba(".concat(t,", .5)")},{top:"rgba(".concat(t,", .4)"),bottom:"rgba(".concat(t,", .6)")},{top:"rgba(".concat(t,", .4)"),bottom:"rgba(".concat(t,", .7)")},{top:"rgba(".concat(t,", .4)"),bottom:"rgba(".concat(t,", .8)")},{top:"rgba(".concat(t,", .4)"),bottom:"rgba(".concat(t,", .9)")}]},pixelSize:function(){return o.default.unitpixel(this.size)}},data:function(){return{loading_binding:null}},mounted:function(){},beforeDestroy:function(){},methods:{start:function(){var t=o.default.getEl(this.$refs.loading);this.loading_binding=Binding.bind({eventType:"timing",props:[{element:t,property:"transform.rotateZ",expression:"floor(t/100)*30"}]})}},watch:{visible:function(t){}}};e.default=r},fce9:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={collapse:{value:null,accordion:!1,border:!0}}},fd29:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={upload:{accept:"image",capture:function(){return["album","camera"]},compressed:!0,camera:"back",maxDuration:60,uploadIcon:"camera-fill",uploadIconColor:"#D3D4D6",useBeforeRead:!1,previewFullImage:!0,maxCount:52,disabled:!1,imageMode:"aspectFill",name:"",sizeType:function(){return["original","compressed"]},multiple:!1,deletable:!0,maxSize:Number.MAX_VALUE,fileList:function(){return[]},uploadText:"",width:80,height:80,previewImage:!0}};e.default=n},fd41:function(t,e,i){"use strict";i.r(e);var n=i("5d2d"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},fd6a:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={calendar:{title:"\u65e5\u671f\u9009\u62e9",showTitle:!0,showSubtitle:!0,mode:"single",startText:"\u5f00\u59cb",endText:"\u7ed3\u675f",customList:function(){return[]},color:"#3c9cff",minDate:0,maxDate:0,defaultDate:null,maxCount:Number.MAX_SAFE_INTEGER,rowHeight:56,formatter:null,showLunar:!1,showMark:!0,confirmText:"\u786e\u5b9a",confirmDisabledText:"\u786e\u5b9a",show:!1,closeOnClickOverlay:!1,readonly:!1,showConfirm:!0,maxRange:Number.MAX_SAFE_INTEGER,rangePrompt:"",showRangePrompt:!0,allowSameDay:!1,round:0,monthNum:3}};e.default=n},fd74:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=n(i("dabe")),r={name:"u-empty",mixins:[uni.$u.mpMixin,uni.$u.mixin,o.default],data:function(){return{icons:{car:"\u8d2d\u7269\u8f66\u4e3a\u7a7a",page:"\u9875\u9762\u4e0d\u5b58\u5728",search:"\u6ca1\u6709\u641c\u7d22\u7ed3\u679c",address:"\u6ca1\u6709\u6536\u8d27\u5730\u5740",wifi:"\u6ca1\u6709WiFi",order:"\u8ba2\u5355\u4e3a\u7a7a",coupon:"\u6ca1\u6709\u4f18\u60e0\u5238",favor:"\u6682\u65e0\u6536\u85cf",permission:"\u65e0\u6743\u9650",history:"\u65e0\u5386\u53f2\u8bb0\u5f55",news:"\u65e0\u65b0\u95fb\u5217\u8868",message:"\u6d88\u606f\u5217\u8868\u4e3a\u7a7a",list:"\u5217\u8868\u4e3a\u7a7a",data:"\u6570\u636e\u4e3a\u7a7a",comment:"\u6682\u65e0\u8bc4\u8bba"}}},computed:{emptyStyle:function(){var t={};return t.marginTop=uni.$u.addUnit(this.marginTop),uni.$u.deepMerge(uni.$u.addStyle(this.customStyle),t)},textStyle:function(){var t={};return t.color=this.textColor,t.fontSize=uni.$u.addUnit(this.textSize),t},isSrc:function(){return this.icon.indexOf("/")>=0}}};e.default=r},fe1f:function(t,e){t.exports="/static/images/novelReading/directory_333.png"},febf:function(t,e,i){"use strict";i.r(e);var n=i("79db"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a},fed0:function(t,e,i){"use strict";i.r(e);var n=i("b0a3"),o=i("3f3e");for(var r in o)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return o[t]}))}(r);var a=i("f0c5"),s=Object(a["a"])(o["default"],n["b"],n["c"],!1,null,"6087674f",null,!1,n["a"],void 0);e["default"]=s.exports},ff20:function(t,e,i){"use strict";i.d(e,"b",(function(){return o})),i.d(e,"c",(function(){return r})),i.d(e,"a",(function(){return n}));var n={uIcon:i("7b88").default,uButton:i("7de6").default,uModal:i("b724").default},o=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("view",{staticClass:t._$s(0,"sc","myUserInfo_content"),attrs:{_i:0}},[i("view",{staticClass:t._$s(1,"sc","_info_user_information"),attrs:{_i:1}},[i("view",{staticClass:t._$s(2,"sc","_information_left"),attrs:{_i:2}},[i("view",{staticClass:t._$s(3,"sc","_information_left_sculpture"),attrs:{_i:3}},[i("image",{staticClass:t._$s(4,"sc","image"),attrs:{_i:4}})])]),i("view",{staticClass:t._$s(5,"sc","_information_right"),attrs:{_i:5}},[i("view",{staticClass:t._$s(6,"sc","_information_right_name_box"),attrs:{_i:6}},[i("view",{staticClass:t._$s(7,"sc","_information_right_name"),attrs:{_i:7}},[t._v(t._$s(7,"t0-0",t._s(t.userInfo.nickname)))])]),i("view",{staticClass:t._$s(8,"sc","_information_right_userId"),attrs:{_i:8}},[t._v(t._$s(8,"t0-0",t._s(t.userInfo.uid)))])])]),i("view",{staticClass:t._$s(9,"sc","_info_box_money"),attrs:{_i:9}},[i("view",{staticClass:t._$s(10,"sc","_money_coin_info"),attrs:{_i:10}},[i("view",{staticClass:t._$s(11,"sc","_book_coin"),attrs:{_i:11}},[i("view",{staticClass:t._$s(12,"sc","_book_coin_box"),attrs:{_i:12}},[i("view",{staticClass:t._$s(13,"sc","_coin_num"),attrs:{_i:13}},[t._v(t._$s(13,"t0-0",t._s(t.userInfo.egold||"0")))]),i("view",{staticClass:t._$s(14,"sc","_coin_name"),attrs:{_i:14},on:{click:t.toBookCoinDetail}},[i("u-icon",{attrs:{name:"arrow-right",size:"24rpx",_i:15}})],1)])]),i("view",{staticClass:t._$s(16,"sc","_book_coin"),attrs:{_i:16}},[i("view",{staticClass:t._$s(17,"sc","_book_coin_box"),attrs:{_i:17}},[i("view",{staticClass:t._$s(18,"sc","_coin_num"),attrs:{_i:18}},[t._v(t._$s(18,"t0-0",t._s(t.userInfo.zb||"0")))]),i("view",{staticClass:t._$s(19,"sc","_coin_name"),attrs:{_i:19},on:{click:t.toGiveCoinDetail}},[i("u-icon",{attrs:{name:"arrow-right",size:"24rpx",_i:20}})],1)])])]),i("view",{staticClass:t._$s(21,"sc","_money_recharge_btn"),attrs:{_i:21},on:{click:t.toVoucherCenter}},[i("u-button",{staticClass:t._$s(22,"sc","_money_up_button"),attrs:{type:"primary",text:"\u5145\u503c",shape:"circle",color:"linear-gradient(to right, #FF2E53, #FF6086)",_i:22}})],1)]),i("view",[i("u-modal",{attrs:{show:t.showModal,title:"\u63d0\u793a",content:"\u8fd8\u672a\u767b\u5f55,\u8bf7\u767b\u5f55...",showCancelButton:!0,_i:24},on:{cancel:t.modalCancel,confirm:t.modalConfirm}})],1)])},r=[]},ffb2:function(t,e,i){"use strict";i.r(e);var n=i("2d12"),o=i.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){i.d(e,t,(function(){return n[t]}))}(r);e["default"]=o.a}},[["97ae","app-config"]]]); \ No newline at end of file diff --git a/unpackage/dist/build/app-plus/app-view.js b/unpackage/dist/build/app-plus/app-view.js new file mode 100644 index 0000000..8d66462 --- /dev/null +++ b/unpackage/dist/build/app-plus/app-view.js @@ -0,0 +1 @@ +(function(t){var e={};function n(i){if(e[i])return e[i].exports;var a=e[i]={i:i,l:!1,exports:{}};return t[i].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)n.d(i,a,function(e){return t[e]}.bind(null,a));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="./",n(n.s="97ae")})({"001f":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";body[data-v-cf944334]{width:100%;height:100%}.is_images[data-v-cf944334]{display:block;width:100%;height:100%}.mt40rpx[data-v-cf944334]{margin-top:40rpx}[data-v-cf944334] .balance_con{width:100%;height:100%;overflow:hidden;position:relative}[data-v-cf944334] .balance_con .balance_con_rich_text{width:100%;height:80%;line-height:2;overflow:hidden}[data-v-cf944334] .balance_con .balance_recharge_option{position:fixed;bottom:0;left:0;width:414px;height:560rpx;background:rgba(243,239,233,.7);-webkit-filter:blur(10px);filter:blur(10px)}[data-v-cf944334] .balance_con .balance_recharge{position:fixed;bottom:0rpx;left:0;width:100%;box-shadow:0 0 8rpx rgba(0,0,0,.2);height:360rpx;border-radius:24rpx 24rpx 0 0;padding:32rpx;box-sizing:border-box}[data-v-cf944334] .balance_con .balance_recharge .balance_tips{font-size:30rpx}[data-v-cf944334] .balance_con .balance_recharge .balance_btn_all{margin-top:32rpx}[data-v-cf944334] .balance_con .balance_recharge .balance_btn_all .purchaseFull_popup_btn{display:flex;justify-content:center;align-items:center;width:100%;height:84rpx;font-size:30rpx;color:#fff;background:linear-gradient(0deg,#fba676,#e95e32);border-radius:24rpx}.novelReading_content[data-v-cf944334] .u-navbar{box-shadow:0 0 10rpx rgba(0,0,0,.2)}.novelReading_content[data-v-cf944334] .u-navbar__content__title{font-size:30rpx}.novelReading_content[data-v-cf944334] .u-navbar--fixed{box-shadow:0 0 8rpx rgba(0,0,0,.2)}.novelReading_content[data-v-cf944334] .z-paging-content{position:relative}#compute_rich_text[data-v-cf944334]{position:fixed;top:1500px;padding:32rpx;box-sizing:border-box}.novelReading_content[data-v-cf944334]{display:flex;flex-direction:column;width:100%;height:100%;overflow:hidden}.novelReading_content .novelReading_body[data-v-cf944334]{flex:1;width:100%}.novelReading_content .novelReading_body .novelReading_main_con[data-v-cf944334]{display:flex;flex-direction:column;width:100%;height:100%;box-sizing:border-box}.novelReading_content .novelReading_body .novelReading_main_con .novelReading_main[data-v-cf944334]{flex:1;width:100%;height:100%;box-sizing:border-box;position:relative}.novelReading_content .novelReading_body .novelReading_main_con .novelReading_main .novelReading_characters_scroll[data-v-cf944334]{width:100%;position:absolute;top:0;left:0;right:0;bottom:0;box-sizing:border-box}.novelReading_content .novelReading_body .novelReading_main_con .novelReading_main .novelReading_characters_scroll .read_chapter[data-v-cf944334]{padding:40rpx 0}.novelReading_content .novelReading_body .novelReading_main_con .novelReading_main .novelReading_characters_scroll .novelReading_characters_main[data-v-cf944334]{width:100%}.novelReading_content .u_popup_all[data-v-cf944334]{flex:0}.my_tabBar_Reading[data-v-cf944334]{width:100%;height:140rpx;display:flex;justify-content:space-between;align-items:center;padding:0 40rpx;box-sizing:border-box;border-top:1rpx solid #d6d2ce}.my_tabBar_Reading .tabBar_Reading_item[data-v-cf944334]{display:flex;flex-direction:column;align-items:center}.my_tabBar_Reading .tabBar_Reading_item .reading_item_icon[data-v-cf944334]{width:34rpx;height:34rpx}.my_tabBar_Reading .tabBar_Reading_item .reading_item_name[data-v-cf944334]{font-size:30rpx;line-height:1;margin-top:10rpx}.reading_schedule_box[data-v-cf944334]{width:100%;box-shadow:0 0 8rpx rgba(0,0,0,.2);border-radius:40rpx;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.reading_schedule_box .reading_schedule_body[data-v-cf944334]{display:flex;justify-content:space-between;align-items:center;width:100%;padding:40rpx;box-sizing:border-box;background:transparent}.reading_schedule_box .reading_schedule_body ._previous_chapter[data-v-cf944334]{display:flex;justify-content:center;align-items:center;width:192rpx;height:82rpx;font-size:34rpx;line-height:1;border-radius:12rpx}.reading_schedule_box .reading_schedule_body ._next_chapter[data-v-cf944334]{display:flex;justify-content:center;align-items:center;width:442rpx;height:82rpx;font-size:34rpx;line-height:1;border-radius:12rpx}.step_up_box[data-v-cf944334]{width:100%;box-shadow:0 0 8rpx rgba(0,0,0,.2);border-radius:40rpx;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.step_up_box .step_up_box_body[data-v-cf944334]{width:100%;padding:40rpx 24rpx;box-sizing:border-box;background:transparent}.step_up_box .step_up_box_body .step_up_item[data-v-cf944334]{display:flex;justify-content:space-between;align-items:center}.step_up_box .step_up_box_body .step_up_item .step_up_item_name[data-v-cf944334]{line-height:1;font-size:30rpx}.step_up_box .step_up_box_body .step_up_item .step_up_item_bg[data-v-cf944334]{display:flex;justify-content:center;align-items:center;width:188rpx;height:74rpx;border-radius:37rpx;box-sizing:border-box;border:2rpx solid transparent}.step_up_box .step_up_box_body .step_up_item .step_up_item_text_bg[data-v-cf944334]{display:flex;justify-content:center;align-items:center;width:188rpx;height:74rpx;border-radius:37rpx;box-sizing:border-box}.step_up_box .step_up_box_body .step_up_item .step_up_item_bg.activeBlack[data-v-cf944334]{border-color:#1a1a1a}.step_up_box .step_up_box_body .step_up_item .step_up_item_bg.activeWhite[data-v-cf944334]{border-color:#fff}.reading_schedule_slider[data-v-cf944334].uni-slider-handle-wrapper{height:60rpx;border-radius:30rpx}.reading_schedule_slider[data-v-cf944334].uni-slider-handle-wrapper .uni-slider-track{border-radius:30rpx}.directory_popup_box[data-v-cf944334]{position:relative;width:560rpx;height:100%;box-sizing:border-box}.directory_popup_box .directory_scroll_y[data-v-cf944334]{position:absolute;top:0;left:0;right:0;bottom:0;padding-left:32rpx;padding-right:32rpx;box-sizing:border-box;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.directory_popup_box .directory_scroll_y ._popup_box_item[data-v-cf944334]{display:flex;justify-content:space-between;align-items:center;width:100%;height:120rpx;border-bottom:1rpx solid #f2f2f2}.directory_popup_box .directory_scroll_y ._popup_box_item ._item_name[data-v-cf944334]{font-size:32rpx;color:#333;line-height:1}.directory_popup_box .directory_scroll_y ._popup_box_item ._item_name.active[data-v-cf944334]{color:#ff728f}.directory_popup_box .directory_scroll_y ._popup_box_item ._item_chapter_lock[data-v-cf944334]{width:32rpx;height:32rpx}.purchaseFull_popup_box[data-v-cf944334]{width:100%;box-sizing:border-box;padding:50rpx 32rpx}.purchaseFull_popup_box .purchaseFull_popup_btn_box[data-v-cf944334]{display:flex;justify-content:center;margin-top:50rpx}.purchaseFull_popup_box .purchaseFull_popup_btn_box .purchaseFull_popup_btn[data-v-cf944334]{display:flex;justify-content:center;align-items:center;width:640rpx;height:84rpx;font-size:30rpx;color:#fff;background:linear-gradient(0deg,#fba676,#e95e32);border-radius:24rpx}',""]),t.exports=e},"0048":function(t,e,n){var i=n("e8e8");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("f9afed74",i,!0,{sourceMap:!1,shadowMode:!1})},"004e":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},"005c":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this.$createElement,e=this._self._c||t;return e("uni-view",{staticClass:this._$g(0,"sc"),attrs:{_i:0}},[e("uni-view",{staticClass:this._$g(1,"sc"),attrs:{_i:1}},[e("uni-view",{attrs:{_i:2}},[this._v("\u5f53\u524d\u7248\u672c")]),e("uni-view",{attrs:{_i:3}},[this._v("1.23")])],1)],1)},a=[]},"00f9":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-line",data:function(){return{wxsProps:{}}},components:{}}},"016a":function(t,e){t.exports="/static/images/member_vip_bg.png"},"0172":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.image{display:block;width:100%;height:100%}.content{background:#f6f6f6;padding:32rpx 0 0}.content .step_user_info{width:100%;padding:0 32rpx;box-sizing:border-box}.content .step_user_info ._info_box{width:100%;height:348rpx;background-color:#fff;border-radius:24rpx;box-sizing:border-box;padding:32rpx 32rpx 56rpx}.content .step_vip_info{width:100%;padding:0 32rpx;margin-top:-30rpx;box-sizing:border-box}.content .step_recharge_grid_info{background-color:#fff;border-radius:24rpx 24rpx 0 0;padding:32rpx;margin-top:-2rpx}.content .step_recharge_grid_info .rechargeGrid_box{width:100%}.content .step_other_info{background-color:#fff}.content .step_other_info .otherCellInfo_box{width:100%}',""]),t.exports=e},"0189":function(t,e,n){"use strict";n.r(e);var i=n("e484"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0239":function(t,e,n){"use strict";n.r(e);var i=n("fd58"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0263":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},"02bc":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.is_image[data-v-86d5eee4]{display:block;width:100%;height:100%}[data-v-86d5eee4].u-navbar__content__title{font-size:32rpx;font-weight:700}.booksTheCharts_content[data-v-86d5eee4]{display:flex;flex-direction:column;width:100%;height:100%;overflow:hidden}.booksTheCharts_content .uni-navbar[data-v-86d5eee4]{position:relative;z-index:20}.booksTheCharts_content .booksTheCharts_header_bag[data-v-86d5eee4]{position:fixed;top:0;left:0;width:100%;height:330rpx;background:linear-gradient(to left bottom,rgba(252,194,202,.5),rgba(253,255,227,.5))}.booksTheCharts_content .booksTheCharts_content_body[data-v-86d5eee4]{flex:1;display:flex;flex-direction:column;width:100%;height:100%}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_body_btn_list[data-v-86d5eee4]{display:flex;align-items:center;width:100%;height:110rpx;box-sizing:border-box;padding:0 32rpx;flex:0 0 auto;position:relative}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_body_btn_list .btn_list_scroll_view[data-v-86d5eee4]{white-space:nowrap}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_body_btn_list .btn_list_scroll_view .btn_list_scroll_view_item[data-v-86d5eee4]{display:inline-block;background-color:initial;height:64rpx;padding:0 16rpx;color:#222;line-height:64rpx;margin-left:16rpx;border-radius:16rpx}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_body_btn_list .btn_list_scroll_view .btn_list_scroll_view_item.active[data-v-86d5eee4]{background-color:#ff728f;color:#fff}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_body_btn_list .btn_list_scroll_view .btn_list_scroll_view_item[data-v-86d5eee4]:first-child{margin-left:0}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body[data-v-86d5eee4]{flex:1;display:flex;width:100%;border-top:2rpx solid #e5e5e5;position:relative;z-index:10;box-sizing:border-box}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_title_list[data-v-86d5eee4]{width:160rpx;height:100%;background-color:#f1eeec;flex:0 0 auto;position:relative}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_title_list ._title_list_scroll_view[data-v-86d5eee4]{position:absolute;top:0;left:0;right:0;bottom:0}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_title_list ._title_list_scroll_view ._title_list_scroll_view_item[data-v-86d5eee4]{position:relative;width:100%;height:124rpx;text-align:center;line-height:124rpx;color:#666;font-size:32rpx}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_title_list ._title_list_scroll_view ._title_list_scroll_view_item.active[data-v-86d5eee4]{background-color:#fff;color:#ff728f}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_title_list ._title_list_scroll_view ._title_list_scroll_view_item.active[data-v-86d5eee4]::before{position:absolute;top:0;left:0;content:"";width:6rpx;height:124rpx;background-color:#ff728f}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list[data-v-86d5eee4]{width:100%;height:100%;background-color:#fff;position:relative}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view[data-v-86d5eee4]{position:absolute;top:0;left:0;right:0;bottom:0;padding:32rpx 32rpx 0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);box-sizing:border-box}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view ._book_list_scroll_view_item[data-v-86d5eee4]{display:flex;width:100%;padding-bottom:32rpx}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view ._book_list_scroll_view_item .scroll_view_item_book_image[data-v-86d5eee4]{width:128rpx;height:170rpx;flex:0 0 auto;border-radius:8rpx;overflow:hidden;box-shadow:0 0 8rpx rgba(0,0,0,.2)}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view ._book_list_scroll_view_item .scroll_view_item_book_tips[data-v-86d5eee4]{flex:1;display:flex;flex-direction:column;justify-content:space-around;padding-left:28rpx;overflow:hidden}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view ._book_list_scroll_view_item .scroll_view_item_book_tips ._book_tips_title[data-v-86d5eee4]{font-size:30rpx;line-height:1;color:#1a1a1a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view ._book_list_scroll_view_item .scroll_view_item_book_tips ._book_tips_msg[data-v-86d5eee4]{font-size:28rpx;line-height:1;color:#999;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.booksTheCharts_content .booksTheCharts_content_body .booksTheCharts_main_body ._main_body_book_list ._book_list_scroll_view ._book_list_scroll_view_empty[data-v-86d5eee4]{width:100%;height:60rpx}',""]),t.exports=e},"02e1":function(t,e,n){"use strict";n.r(e);var i=n("bb53"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"02e2":function(t,e,n){"use strict";n.r(e);var i=n("62cb"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"030c":function(t,e,n){"use strict";n.r(e);var i=n("9163"),a=n("4d0d");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("9c7a");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"2f0e5305",null,!1,i["a"],void 0);e["default"]=s.exports},"0311":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.is_image[data-v-ed3c0f1e]{display:block;width:100%;height:100%}.rankingList_content[data-v-ed3c0f1e]{width:100%}.rankingList_content .rankingList_header[data-v-ed3c0f1e]{width:100%}.rankingList_content .rankingList_header ._header_list_scroll[data-v-ed3c0f1e]{white-space:nowrap}.rankingList_content .rankingList_header ._header_list_scroll ._header_list[data-v-ed3c0f1e]{display:inline-block;margin-left:10rpx}.rankingList_content .rankingList_header ._header_list_scroll ._header_list ._header_list_item[data-v-ed3c0f1e]{width:160rpx;height:70rpx;text-align:center;line-height:70rpx;background-color:#f6f6f6;border-radius:8rpx;color:#666;font-size:30rpx}.rankingList_content .rankingList_header ._header_list_scroll ._header_list ._header_list_item.active[data-v-ed3c0f1e]{color:#fc0538;background-color:#ffdce3}.rankingList_content .rankingList_header ._header_list_scroll ._header_list[data-v-ed3c0f1e]:first-child{margin-left:0}.rankingList_content .rankingList_body[data-v-ed3c0f1e]{width:100%}.rankingList_content .rankingList_body .rankingList_body_box[data-v-ed3c0f1e]{width:100%}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list[data-v-ed3c0f1e]{width:100%;display:flex;flex-wrap:wrap}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item[data-v-ed3c0f1e]{display:flex;width:50%;margin-top:30rpx;box-sizing:border-box}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item ._book_list_item_left[data-v-ed3c0f1e]{position:relative;width:130rpx;height:180rpx;flex:0 0 auto;z-index:2;border-radius:8rpx;overflow:hidden}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item ._book_list_item_left ._book_list_item_ranking_icon[data-v-ed3c0f1e]{position:absolute;top:0;left:0;z-index:3;width:38rpx;height:38rpx}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item ._book_list_item_right[data-v-ed3c0f1e]{flex:1;flex-shrink:0;display:flex;flex-direction:column;justify-content:space-around;margin-left:16rpx;overflow:hidden}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item ._book_list_item_right ._book_list_item_title[data-v-ed3c0f1e]{width:100%;font-size:30rpx;color:#1a1a1a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item ._book_list_item_right ._book_list_item_tips[data-v-ed3c0f1e]{width:100%;font-size:26rpx;color:#999;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item[data-v-ed3c0f1e]:nth-child(2n){padding-left:15rpx}.rankingList_content .rankingList_body .rankingList_body_box ._body_box_book_list ._book_list_item[data-v-ed3c0f1e]:nth-child(2n-1){padding-right:15rpx}.rankingList_content .rankingList_more[data-v-ed3c0f1e]{width:100%;margin-top:32rpx}.rankingList_content .rankingList_more .rankingList_more_btn[data-v-ed3c0f1e]{width:100%;height:82rpx;border-radius:16rpx;background-color:#f1f1f1;color:#666;font-size:28rpx;text-align:center;line-height:82rpx}',""]),t.exports=e},"03ce":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={yingbingReadPage:n("fed0").default,uPopup:n("adb9").default,uNavbar:n("6856").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),style:t._$g(1,"s"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("yingbing-ReadPage",{ref:"yingbingReadPage",staticStyle:{height:"100%"},attrs:{_i:3},on:{loadmore:function(e){return t.$handleViewEvent(e)},clickTo:function(e){return t.$handleViewEvent(e)}},scopedSlots:t._u([{key:"test",fn:function(e,i,a){return[n("uni-view",{staticClass:i._$g("5-"+a,"sc"),attrs:{_i:"5-"+a}},[n("v-uni-rich-text",{staticClass:i._$g("6-"+a,"sc"),style:i._$g("6-"+a,"s"),attrs:{nodes:i._$g("6-"+a,"a-nodes"),_i:"6-"+a}}),n("uni-view",{staticClass:i._$g("7-"+a,"sc"),attrs:{_i:"7-"+a}}),n("uni-view",{staticClass:i._$g("8-"+a,"sc"),style:i._$g("8-"+a,"s"),attrs:{_i:"8-"+a}},[n("uni-view",{staticClass:i._$g("9-"+a,"sc"),style:i._$g("9-"+a,"s"),attrs:{_i:"9-"+a}},[i._$g("10-"+a,"i")?n("uni-view",{attrs:{_i:"10-"+a}},[i._$g("11-"+a,"i")?n("uni-view",{staticClass:i._$g("11-"+a,"sc"),attrs:{sstyle:"margin-bottom:8rpx;",_i:"11-"+a}},[t._v("\u4e66\u5e01\u4f59\u989d\u4e0d\u8db3")]):t._e(),n("uni-view",{attrs:{_i:"12-"+a}},[n("v-uni-text",{attrs:{_i:"13-"+a}},[t._v("\u4ed8\u8d39\u7ae0\u8282\uff0c\u9700\u8981\u8d2d\u4e70\u3002")]),n("v-uni-text",{attrs:{_i:"14-"+a}},[t._v(i._$g("14-"+a,"t0-0"))]),n("v-uni-text",{attrs:{_i:"15-"+a}},[t._v("\u4e66\u5e01")])],1)],1):t._e(),i._$g("16-"+a,"i")?n("uni-view",{attrs:{_i:"16-"+a}},[n("v-uni-text",{attrs:{_i:"17-"+a}},[t._v("\u4ed8\u8d39\u7ae0\u8282\uff0c\u9700\u8981\u5168\u672c\u8d2d\u4e70\u3002")]),n("v-uni-text",{attrs:{_i:"18-"+a}},[t._v(i._$g("18-"+a,"t0-0"))]),n("v-uni-text",{attrs:{_i:"19-"+a}},[t._v("\u4e66\u5e01")])],1):t._e()],1),n("uni-view",{staticClass:i._$g("20-"+a,"sc"),attrs:{_i:"20-"+a}},[i._$g("21-"+a,"i")?n("uni-view",{staticClass:i._$g("21-"+a,"sc"),attrs:{_i:"21-"+a},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u65b0\u7528\u6237\u767b\u5f55")]):i._$g(22,"e")?n("uni-view",{staticClass:i._$g(22,"sc"),attrs:{_i:22},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u53bb\u5145\u503c")]):i._$g(23,"e")?n("uni-view",{staticClass:i._$g(23,"sc"),attrs:{_i:23},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u9700\u8981\u5168\u672c\u8d2d\u4e70")]):t._e()],1)],1)],1)]}}])})],1)],1),n("uni-view",{staticClass:t._$g(24,"sc"),attrs:{_i:24}},[n("u-popup",{attrs:{_i:25},on:{close:function(e){return t.$handleViewEvent(e)}}},[n("u-navbar",{attrs:{_i:26},on:{rightClick:function(e){return t.$handleViewEvent(e)}}})],1),n("u-popup",{attrs:{_i:27}},[n("uni-view",{staticClass:t._$g(28,"sc"),style:t._$g(28,"s"),attrs:{_i:28}},[n("uni-view",{staticClass:t._$g(29,"sc"),attrs:{_i:29}},[n("uni-view",{staticClass:t._$g(30,"sc"),style:t._$g(30,"s"),attrs:{_i:30},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u4e0a\u4e00\u7ae0")]),n("uni-view",{staticClass:t._$g(31,"sc"),style:t._$g(31,"s"),attrs:{_i:31},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u4e0b\u4e00\u7ae0")])],1),n("uni-view",{staticClass:t._$g(32,"sc"),style:t._$g(32,"s"),attrs:{_i:32}},[n("uni-view",{staticClass:t._$g(33,"sc"),attrs:{_i:33}},[n("uni-view",{staticClass:t._$g(34,"sc"),attrs:{_i:34},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("v-uni-image",{staticClass:t._$g(35,"sc"),attrs:{src:t._$g(35,"a-src"),_i:35}})],1),n("uni-view",{staticClass:t._$g(36,"sc"),style:t._$g(36,"s"),attrs:{_i:36}},[t._v("\u76ee\u5f55")])],1),n("uni-view",{staticClass:t._$g(37,"sc"),attrs:{_i:37}},[n("uni-view",{staticClass:t._$g(38,"sc"),attrs:{_i:38},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("v-uni-image",{staticClass:t._$g(39,"sc"),attrs:{src:t._$g(39,"a-src"),_i:39}})],1),n("uni-view",{staticClass:t._$g(40,"sc"),style:t._$g(40,"s"),attrs:{_i:40}},[t._v("\u4e66\u57ce")])],1),n("uni-view",{staticClass:t._$g(41,"sc"),attrs:{_i:41},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("uni-view",{staticClass:t._$g(42,"sc"),attrs:{_i:42}},[n("v-uni-image",{staticClass:t._$g(43,"sc"),attrs:{src:t._$g(43,"a-src"),_i:43}})],1),n("uni-view",{staticClass:t._$g(44,"sc"),style:t._$g(44,"s"),attrs:{_i:44}},[t._v("\u8bbe\u7f6e")])],1)],1)],1)],1),n("u-popup",{attrs:{_i:45}},[n("uni-view",{staticClass:t._$g(46,"sc"),style:t._$g(46,"s"),attrs:{_i:46}},[n("uni-view",{staticClass:t._$g(47,"sc"),attrs:{_i:47}},[n("uni-view",{staticClass:t._$g(48,"sc"),attrs:{_i:48}},[n("uni-view",{staticClass:t._$g(49,"sc"),style:t._$g(49,"s"),attrs:{_i:49}},[t._v("\u80cc\u666f")]),n("uni-view",{class:t._$g(50,"c"),staticStyle:{background:"#f3efe9"},attrs:{_i:50},on:{click:function(e){return t.$handleViewEvent(e)}}}),n("uni-view",{class:t._$g(51,"c"),staticStyle:{background:"#ccd9e2"},attrs:{_i:51},on:{click:function(e){return t.$handleViewEvent(e)}}}),n("uni-view",{class:t._$g(52,"c"),attrs:{_i:52},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("v-uni-image",{staticClass:t._$g(53,"sc"),attrs:{src:t._$g(53,"a-src"),_i:53}})],1)],1),n("uni-view",{staticClass:t._$g(54,"sc"),attrs:{_i:54}},[n("uni-view",{staticClass:t._$g(55,"sc"),style:t._$g(55,"s"),attrs:{_i:55}},[t._v("\u5b57\u53f7")]),n("uni-view",{staticClass:t._$g(56,"sc"),style:t._$g(56,"s"),attrs:{_i:56},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("A-")]),n("uni-view",{staticClass:t._$g(57,"sc"),style:t._$g(57,"s"),attrs:{_i:57},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("A+")]),n("uni-view",{staticClass:t._$g(58,"sc"),style:t._$g(58,"s"),attrs:{_i:58},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u9ed8\u8ba4")])],1)],1),n("uni-view",{staticStyle:{height:"140rpx"},attrs:{_i:59}})],1)],1)],1)],1)},o=[]},"03dd":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-swiper-indicator",data:function(){return{wxsProps:{}}},components:{}}},"042c":function(t,e,n){"use strict";var i=n("36ac"),a=n.n(i);a.a},"0455":function(t,e,n){"use strict";n.r(e);var i=n("2c5f"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0490":function(t,e,n){"use strict";n.r(e);var i=n("2d38"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"04ab":function(t,e){t.exports="/static/images/signInBookCurrency_header_bag.png"},"05a8":function(t,e,n){var i=n("86c9");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("eaf64f92",i,!0,{sourceMap:!1,shadowMode:!1})},"05cf":function(t,e,n){"use strict";n.r(e);var i=n("affe"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"066d":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this.$createElement,e=this._self._c||t;return e("uni-view",{staticClass:this._$g(0,"sc"),class:this._$g(0,"c"),attrs:{_i:0}},[this._t("default",null,{_i:1})],2)},a=[]},"067f":function(t,e,n){"use strict";n.r(e);var i=n("5036"),a=n("fa9a");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0873");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"53189b64",null,!1,i["a"],void 0);e["default"]=s.exports},"0680":function(t,e,n){"use strict";n.r(e);var i=n("0c90"),a=n("02e2");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("2606");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"bf54f184",null,!1,i["a"],void 0);e["default"]=s.exports},"0699":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("3325")),o=i(n("b134")),r=i(n("b0a2")),s=i(n("067f")),c={data:function(){return{wxsProps:{}}},components:{CommVipInfo:a.default,MyUserInfo:o.default,rechargeGrid:r.default,otherCellInfo:s.default}};e.default=c},"069a":function(t,e,n){"use strict";n.r(e);var i=n("6147"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"06a6":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uStatusBar:n("d02e").default,uIcon:n("7b88").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[t._$g(1,"i")?n("uni-view",{staticClass:t._$g(1,"sc"),style:t._$g(1,"s"),attrs:{_i:1}}):t._e(),n("uni-view",{class:t._$g(2,"c"),attrs:{_i:2}},[t._$g(3,"i")?n("u-status-bar",{attrs:{_i:3}}):t._e(),n("uni-view",{staticClass:t._$g(4,"sc"),class:t._$g(4,"c"),style:t._$g(4,"s"),attrs:{_i:4}},[n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{"hover-class":"u-navbar__content__left--hover","hover-start-time":"150",_i:5},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._t("left",[t._$g(7,"i")?n("u-icon",{attrs:{_i:7}}):t._e(),t._$g(8,"i")?n("v-uni-text",{staticClass:t._$g(8,"sc"),style:t._$g(8,"s"),attrs:{_i:8}},[t._v(t._$g(8,"t0-0"))]):t._e()],{_i:6})],2),t._t("center",[n("v-uni-text",{staticClass:t._$g(10,"sc"),style:t._$g(10,"s"),attrs:{_i:10}},[t._v(t._$g(10,"t0-0"))])],{_i:9}),t._$g(11,"i")?n("uni-view",{staticClass:t._$g(11,"sc"),attrs:{_i:11},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._t("right",[t._$g(13,"i")?n("u-icon",{attrs:{_i:13}}):t._e(),t._$g(14,"i")?n("v-uni-text",{staticClass:t._$g(14,"sc"),attrs:{_i:14}},[t._v(t._$g(14,"t0-0"))]):t._e()],{_i:12})],2):t._e()],2)],1)],1)},o=[]},"06c0":function(t,e,n){var i=n("24fb"),a=n("b8d8"),o=n("016a");e=i(!1);var r=a(o);e.push([t.i,'@charset "UTF-8";.is_image[data-v-6da36778]{display:block;width:100%;height:100%}.commVipInfo_content[data-v-6da36778]{width:100%}.commVipInfo_content .vip_info_box[data-v-6da36778]{display:flex;justify-content:space-between;align-items:center;width:100%;height:142rpx;padding:0 40rpx;background:url('+r+") no-repeat;background-size:100% 100%;box-sizing:border-box}.commVipInfo_content .vip_info_box .vip_info_box_left[data-v-6da36778]{display:flex;align-items:center}.commVipInfo_content .vip_info_box .vip_info_box_left .vip_info_sculpture[data-v-6da36778]{width:68rpx;height:68rpx;margin-right:16rpx}.commVipInfo_content .vip_info_box .vip_info_box_left .vip_whether_tips_box[data-v-6da36778]{display:flex;flex-direction:column;justify-center:center}.commVipInfo_content .vip_info_box .vip_info_box_left .vip_whether_tips_box .vip_whether_tips[data-v-6da36778]{display:flex;align-items:center}.commVipInfo_content .vip_info_box .vip_info_box_left .vip_whether_tips_box .vip_whether_tips .vip_whether_tips_test[data-v-6da36778]{font-size:36rpx;font-weight:700;color:#fff;line-height:1.2}.commVipInfo_content .vip_info_box .vip_info_box_left .vip_whether_tips_box .vip_whether_tips .vip_whether_tips_icon[data-v-6da36778]{width:36rpx;height:36rpx;margin-left:8rpx}.commVipInfo_content .vip_info_box .vip_info_box_left .vip_whether_tips_box .vip_time_tips[data-v-6da36778]{font-size:24rpx;color:#fff;line-height:1;margin-top:16rpx}.commVipInfo_content .vip_info_box .vip_info_box_right .vip_info_renew[data-v-6da36778]{display:flex;justify-content:center;align-items:center;padding:0 30rpx;border-radius:34rpx;height:68rpx;background-color:hsla(0,0%,100%,.65);font-size:28rpx;color:#e0385b;line-height:1}",""]),t.exports=e},"074b":function(t,e){t.exports="/uni_modules/uni-icons/components/uni-icons/uniicons.ttf"},"07e2":function(t,e,n){var i=n("3de9");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("24114314",i,!0,{sourceMap:!1,shadowMode:!1})},"080b":function(t,e,n){var i=n("c3dd");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("4b9ac85a",i,!0,{sourceMap:!1,shadowMode:!1})},"0813":function(t,e,n){"use strict";var i=n("4ce8"),a=n.n(i);a.a},"0824":function(t,e,n){"use strict";n.r(e);var i=n("d934"),a=n("b378");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("5399");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,null,null,!1,i["a"],void 0);e["default"]=s.exports},"0873":function(t,e,n){"use strict";var i=n("b84e"),a=n.n(i);a.a},"087c":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-2f0e5305], uni-scroll-view[data-v-2f0e5305], uni-swiper-item[data-v-2f0e5305]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-line[data-v-2f0e5305]{vertical-align:middle}',""]),t.exports=e},"08be":function(t,e,n){var i=n("958c");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("0ccfed66",i,!0,{sourceMap:!1,shadowMode:!1})},"096b":function(t,e,n){"use strict";n.r(e);var i=n("68d1"),a=n("d359");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("e926");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"af7a0868",null,!1,i["a"],void 0);e["default"]=s.exports},"097f":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},"098d":function(t,e,n){"use strict";var i=n("df07"),a=n.n(i);a.a},"09d7":function(t,e,n){"use strict";n.r(e);var i=n("e954"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0a35":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("096b")),o={data:function(){return{wxsProps:{}}},components:{CommFooter:a.default}};e.default=o},"0a99":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("0d31")),o={data:function(){return{wxsProps:{}}},components:{CommBookLeftRigth:a.default}};e.default=o},"0aba":function(t,e,n){"use strict";n.r(e);var i=n("1431"),a=n("c0d1");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("f14d");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"c496bc48",null,!1,i["a"],void 0);e["default"]=s.exports},"0b0b":function(t,e,n){"use strict";n.r(e);var i=n("1157"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0bbf":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("8180")),o={name:"explosiveList",props:["dataList"],data:function(){return{wxsProps:{}}},components:{CommBookItem:a.default}};e.default=o},"0bed":function(t,e,n){var i=n("8999");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("79818405",i,!0,{sourceMap:!1,shadowMode:!1})},"0c64":function(t,e,n){"use strict";n.r(e);var i=n("7324"),a=n("2d31");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("403c");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,null,null,!1,i["a"],void 0);e["default"]=s.exports},"0c90":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this.$createElement,e=this._self._c||t;return e("v-uni-text",{staticClass:this._$g(0,"sc"),style:this._$g(0,"s"),attrs:{_i:0}},[this._v(this._$g(0,"t0-0"))])},a=[]},"0ca8":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uReadMore:n("514f").default,uParse:n("6aeb").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[t._v("\u4e66\u7c4d\u7b80\u4ecb")]),n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[n("u-read-more",{ref:"uReadMore",attrs:{_i:4}},[n("u-parse",{attrs:{_i:5},on:{load:function(e){return t.$handleViewEvent(e)}}})],1)],1)],1)],1)},o=[]},"0cc1":function(t,e,n){var i=n("eeb5");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("7aa9a150",i,!0,{sourceMap:!1,shadowMode:!1})},"0ce7":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uLoadingIcon:n("70a6").default,uSwiperIndicator:n("92f6").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),style:t._$g(0,"s"),attrs:{_i:0}},[t._$g(1,"i")?n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("u-loading-icon",{attrs:{_i:2}})],1):n("v-uni-swiper",{staticClass:t._$g(3,"sc"),style:t._$g(3,"s"),attrs:{circular:t._$g(3,"a-circular"),interval:t._$g(3,"a-interval"),duration:t._$g(3,"a-duration"),autoplay:t._$g(3,"a-autoplay"),current:t._$g(3,"a-current"),currentItemId:t._$g(3,"a-currentItemId"),previousMargin:t._$g(3,"a-previousMargin"),nextMargin:t._$g(3,"a-nextMargin"),acceleration:t._$g(3,"a-acceleration"),displayMultipleItems:t._$g(3,"a-displayMultipleItems"),easingFunction:t._$g(3,"a-easingFunction"),_i:3},on:{change:function(e){return t.$handleViewEvent(e)}}},t._l(t._$g(4,"f"),(function(e,i,a,o){return n("v-uni-swiper-item",{key:e,staticClass:t._$g("4-"+o,"sc"),attrs:{_i:"4-"+o}},[n("uni-view",{staticClass:t._$g("5-"+o,"sc"),style:t._$g("5-"+o,"s"),attrs:{_i:"5-"+o}},[t._$g("6-"+o,"i")?n("v-uni-image",{staticClass:t._$g("6-"+o,"sc"),style:t._$g("6-"+o,"s"),attrs:{src:t._$g("6-"+o,"a-src"),mode:t._$g("6-"+o,"a-mode"),_i:"6-"+o},on:{click:function(e){return t.$handleViewEvent(e)}}}):t._e(),t._$g("7-"+o,"i")?n("v-uni-video",{staticClass:t._$g("7-"+o,"sc"),style:t._$g("7-"+o,"s"),attrs:{id:t._$g("7-"+o,"a-id"),"enable-progress-gesture":!1,src:t._$g("7-"+o,"a-src"),poster:t._$g("7-"+o,"a-poster"),title:t._$g("7-"+o,"a-title"),controls:!0,_i:"7-"+o},on:{click:function(e){return t.$handleViewEvent(e)}}}):t._e(),t._$g("8-"+o,"i")?n("v-uni-text",{staticClass:t._$g("8-"+o,"sc"),attrs:{_i:"8-"+o}},[t._v(t._$g("8-"+o,"t0-0"))]):t._e()],1)],1)})),1),n("uni-view",{staticClass:t._$g(9,"sc"),style:t._$g(9,"s"),attrs:{_i:9}},[t._t("indicator",[t._$g(11,"i")?n("u-swiper-indicator",{attrs:{_i:11}}):t._e()],{_i:10})],2)],1)},o=[]},"0d31":function(t,e,n){"use strict";n.r(e);var i=n("9167"),a=n("5417");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("1073");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"3718b9d2",null,!1,i["a"],void 0);e["default"]=s.exports},"0d77":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("3325")),o={data:function(){return{wxsProps:{}}},components:{CommVipInfo:a.default}};e.default=o},"0de6":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("8180")),o={props:["dataList"],data:function(){return{wxsProps:{}}},components:{CommBookItem:a.default}};e.default=o},"0e9f":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.bookChapterInfo_content[data-v-61a11307]{width:100%}.bookChapterInfo_content .bookChapterInfo_body[data-v-61a11307]{width:100%}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_header[data-v-61a11307]{display:flex;justify-content:space-between;align-items:center;width:100%}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_header ._header_title[data-v-61a11307]{font-size:36rpx;color:#1a1a1a;line-height:1}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_header ._header_chapter[data-v-61a11307]{display:flex;align-items:center;font-size:28rpx;color:#666}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_list_box[data-v-61a11307]{margin-top:20rpx}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_list_box .list_chapter_item[data-v-61a11307]{display:flex;align-items:center;height:106rpx;border-bottom:2rpx solid #e5e5e5}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_list_box .list_chapter_item .chapter_item_name[data-v-61a11307]{font-size:30rpx;color:#222;line-height:1}.bookChapterInfo_content .bookChapterInfo_body .bookChapterInfo_list_box .list_chapter_item[data-v-61a11307]:last-child{border-bottom:none}.bookChapterInfo_content .bookChapterInfo_body ._check_all_chapter[data-v-61a11307]{display:flex;justify-content:center;align-items:center;width:100%;height:88rpx;background:#eee;color:#444;font-size:32rpx;border-radius:8rpx;margin-top:10rpx}',""]),t.exports=e},"0eb4":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},"0f2c":function(t,e,n){var i=n("178b");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("33829591",i,!0,{sourceMap:!1,shadowMode:!1})},"0f2e":function(t,e,n){"use strict";n.r(e);var i=n("6251"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0f3e":function(t,e,n){"use strict";n.r(e);var i=n("d26b"),a=n("7bed");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("f1e6");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"597e56b5",null,!1,i["a"],void 0);e["default"]=s.exports},"0f51":function(t,e,n){"use strict";n.r(e);var i=n("57ea"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"0f87":function(t,e,n){"use strict";var i=n("b73a"),a=n.n(i);a.a},1073:function(t,e,n){"use strict";var i=n("ab87"),a=n.n(i);a.a},1096:function(t,e,n){var i=n("b3e2");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("46091ce0",i,!0,{sourceMap:!1,shadowMode:!1})},1136:function(t,e,n){"use strict";n.r(e);var i=n("1fc0"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},1157:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-transition",data:function(){return{wxsProps:{}}},components:{}}},"11d4":function(t,e,n){"use strict";n.r(e);var i=n("bba8"),a=n("c9fa");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("405b");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"0512cc1d",null,!1,i["a"],void 0);e["default"]=s.exports},"11fa":function(t,e,n){"use strict";var i=n("05a8"),a=n.n(i);a.a},"123c":function(t,e,n){var i=n("e716");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("0306da6c",i,!0,{sourceMap:!1,shadowMode:!1})},"12ba":function(t,e,n){"use strict";n.r(e);var i=n("1aff"),a=n("3b95");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("3081");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"4fc74a16",null,!1,i["a"],void 0);e["default"]=s.exports},"13d6":function(t,e,n){"use strict";n.r(e);var i=n("2c51"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"13ed":function(t,e,n){var i=n("77a3");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("2babd7a5",i,!0,{sourceMap:!1,shadowMode:!1})},1431:function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uLine:n("030c").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),class:t._$g(0,"c"),style:t._$g(0,"s"),attrs:{_i:0}},[t._$g(1,"i")?n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[t._t("title",[n("v-uni-text",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[t._v(t._$g(3,"t0-0"))])],{_i:2})],2):t._e(),n("uni-view",{staticClass:t._$g(4,"sc"),attrs:{_i:4}},[t._$g(5,"i")?n("u-line",{attrs:{_i:5}}):t._e(),t._t("default",null,{_i:6})],2)],1)},o=[]},1437:function(t,e,n){"use strict";n.r(e);var i=n("a370"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"146c":function(t,e,n){var i=n("f67c");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("e2ea5256",i,!0,{sourceMap:!1,shadowMode:!1})},1484:function(t,e,n){"use strict";n.r(e);var i=n("eb99"),a=n("c5f2");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("44be");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,null,null,!1,i["a"],void 0);e["default"]=s.exports},"14c9":function(t,e,n){var i=n("a1d5");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("23fc375a",i,!0,{sourceMap:!1,shadowMode:!1})},"14e3":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("eadf")),o=i(n("bb90")),r=i(n("3ef3")),s=i(n("25cd")),c={props:["autoplay","autoplayTime","color","fontSize","fontFamily","fontFace","firstTip","lastTip","firstTipUnable","lastTipUnable","bgColor","unableClickPage","pageType","lineHeight","slide","topGap","bottomGap","enablePreload","noChapter","enableClick","headerShow","footerShow","split","clickOption"],data:function(){return{wxsProps:{}}},components:{Battery:a.default,ReadRichText:o.default,ScrollList:r.default,ListLoading:s.default}};e.default=c},"14ec":function(t,e,n){"use strict";n.r(e);var i=n("86d4"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"158c":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.bookOtherInfo_content[data-v-4ad751ba]{width:100%}.bookOtherInfo_content .bookOtherInfo_body[data-v-4ad751ba]{display:flex;justify-content:space-between;width:100%}.bookOtherInfo_content .bookOtherInfo_body .bookOtherInfo_item .bookOtherInfo_top[data-v-4ad751ba]{display:flex;align-items:flex-end;flex-wrap:nowrap}.bookOtherInfo_content .bookOtherInfo_body .bookOtherInfo_item .bookOtherInfo_top .book_item_num[data-v-4ad751ba]{font-size:50rpx;color:#1a1a1a;line-height:1;font-weight:600}.bookOtherInfo_content .bookOtherInfo_body .bookOtherInfo_item .bookOtherInfo_top .book_item_tex[data-v-4ad751ba]{margin-left:4rpx;color:#1a1a1a;line-height:1;font-size:28rpx}.bookOtherInfo_content .bookOtherInfo_body .bookOtherInfo_item .bookOtherInfo_bottom[data-v-4ad751ba]{line-height:1;color:#666;font-size:26rpx;margin-top:32rpx}',""]),t.exports=e},"15a2":function(t,e,n){"use strict";n.r(e);var i=n("d768"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"15e9":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-2b5fb029], uni-scroll-view[data-v-2b5fb029], uni-swiper-item[data-v-2b5fb029]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-link[data-v-2b5fb029]{line-height:1;display:flex;flex-direction:row;flex-wrap:wrap;flex:1}',""]),t.exports=e},"163b":function(t,e,n){"use strict";n.r(e);var i=n("4447"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},1666:function(t,e,n){"use strict";n.r(e);var i=n("a417"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"16f6":function(t,e,n){var i=n("7e44");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("e7f9af0a",i,!0,{sourceMap:!1,shadowMode:!1})},1730:function(t,e,n){"use strict";n.r(e);var i=n("7297"),a=n("0455");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("5d80");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"969f47fc",null,!1,i["a"],void 0);e["default"]=s.exports},1767:function(t,e,n){var i=n("7cba");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("bf6422ee",i,!0,{sourceMap:!1,shadowMode:!1})},"176b":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("29b4")),o=i(n("7bd2")),r=i(n("e53f")),s={data:function(){return{wxsProps:{}}},components:{CommNavBar:a.default,Home:o.default,Member:r.default}};e.default=s},"178b":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-23a72621], uni-scroll-view[data-v-23a72621], uni-swiper-item[data-v-23a72621]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-swiper-indicator__wrapper[data-v-23a72621]{display:flex;flex-direction:row}.u-swiper-indicator__wrapper--line[data-v-23a72621]{border-radius:100px;height:4px}.u-swiper-indicator__wrapper--line__bar[data-v-23a72621]{width:22px;height:4px;border-radius:100px;background-color:#fff;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.u-swiper-indicator__wrapper__dot[data-v-23a72621]{width:5px;height:5px;border-radius:100px;margin:0 4px}.u-swiper-indicator__wrapper__dot--active[data-v-23a72621]{width:12px}',""]),t.exports=e},1814:function(t,e,n){"use strict";n.r(e);var i=n("85b8"),a=n("3163");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("d22f");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"3927d88e",null,!1,i["a"],void 0);e["default"]=s.exports},1868:function(t,e,n){"use strict";var i=n("90d6"),a=n.n(i);a.a},"18b4":function(t,e,n){"use strict";var i=n("dfae"),a=n.n(i);a.a},"18cf":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[t._v(t._$g(2,"t0-0"))])],1),n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},t._l(t._$g(4,"f"),(function(e,i,a,o){return n("uni-view",{key:e,staticClass:t._$g("4-"+o,"sc"),attrs:{_i:"4-"+o},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("CommBookLeftRigth",{attrs:{_i:"5-"+o}})],1)})),1)],1)},a=[]},"191d":function(t,e,n){var i=n("8509");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("7d360f9c",i,!0,{sourceMap:!1,shadowMode:!1})},"19fd":function(t,e,n){var i=n("24fb"),a=n("b8d8"),o=n("7db7");e=i(!1);var r=a(o);e.push([t.i,'@charset "UTF-8";[data-v-db0dc8a6] .u-input__content{height:116rpx;background-color:#fff;border-radius:58rpx}[data-v-db0dc8a6] .u-input--square{padding:0!important}.login_content[data-v-db0dc8a6]{width:100%;height:100%}.login_content .login_content_bg[data-v-db0dc8a6]{position:fixed;top:0;left:0;width:100%;height:1056rpx;background:url('+r+") no-repeat;background-size:100% 100%}.login_content .login_content_body[data-v-db0dc8a6]{position:relative;z-index:2;width:100%;padding:40rpx 32rpx;box-sizing:border-box}.login_content .login_content_body .login_title[data-v-db0dc8a6]{font-size:56rpx;color:#1d242c;line-height:1}.login_content .login_content_body .login_tips[data-v-db0dc8a6]{font-size:28rpx;color:#524e5c;line-height:1;margin-top:32rpx}.login_content .login_content_body .login_mobile[data-v-db0dc8a6]{margin-top:90rpx}.login_content .login_content_body .login_mobile .login_mobile_tips[data-v-db0dc8a6]{margin:0 32rpx;font-size:44rpx;color:#1d242c}.login_content .login_content_body .login_mobile_Code[data-v-db0dc8a6]{display:flex;justify-content:center;align-items:center;width:100%;height:116rpx;line-height:1;background:linear-gradient(270deg,#f27e49,#f25a14);color:#fff;font-size:40rpx;margin-top:64rpx;border-radius:58rpx}.login_content .login_content_body .login_mobile_Code.active[data-v-db0dc8a6]{background:#999}",""]),t.exports=e},"1a0a":function(t,e,n){"use strict";n.r(e);var i=n("6d87"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"1a3e":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.originalList_content[data-v-63021ba8]{width:100%}.originalList_content .originalList_content_header[data-v-63021ba8]{width:100%}.originalList_content .originalList_content_header ._content_headertitle[data-v-63021ba8]{font-size:36rpx;color:#1a1a1a;line-height:1;font-weight:600}.originalList_content .originalList_content_body[data-v-63021ba8]{width:100%}.originalList_content .originalList_content_body ._content_body_original_list[data-v-63021ba8]{display:flex;flex-wrap:wrap;width:100%}.originalList_content .originalList_content_body ._content_body_original_list ._original_list_item[data-v-63021ba8]{width:150rpx;margin-top:32rpx;margin-left:20rpx}.originalList_content .originalList_content_body ._content_body_original_list ._original_list_item[data-v-63021ba8]:first-child{margin-left:0}.originalList_content .originalList_content_body ._content_body_original_list ._original_list_item[data-v-63021ba8]:nth-child(5n+0){margin-left:0}',""]),t.exports=e},"1a5c":function(t,e,n){"use strict";var i=n("13ed"),a=n.n(i);a.a},"1ac7":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("8180")),o={data:function(){return{wxsProps:{}}},components:{CommBookItem:a.default}};e.default=o},"1aff":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[n("v-uni-image",{staticClass:t._$g(4,"sc"),attrs:{src:"/static/images/myInfo/VIP_active.png",_i:4}})],1),n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{_i:5}},[t._v("\u4e3a\u4f60\u63a8\u8350")])],1),n("uni-view",{staticClass:t._$g(6,"sc"),attrs:{_i:6}})],1),n("uni-view",{staticClass:t._$g(7,"sc"),attrs:{_i:7}},[n("uni-view",{staticClass:t._$g(8,"sc"),attrs:{_i:8}},t._l(8,(function(e,i,a,o){return n("uni-view",{key:e,staticClass:t._$g("9-"+o,"sc"),attrs:{_i:"9-"+o}},[n("commBookItemThree",{attrs:{_i:"10-"+o}})],1)})),1)],1)],1)},a=[]},"1b51":function(t,e,n){var i=n("a2c8");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("e2326440",i,!0,{sourceMap:!1,shadowMode:!1})},"1c18":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("b547")),o=i(n("f0bd")),r={props:["pulldown","loadmore"],data:function(){return{wxsProps:{}}},components:{ListPulldown:a.default,ListLoadmore:o.default}};e.default=r},"1cbb":function(t,e,n){"use strict";var i=n("07e2"),a=n.n(i);a.a},"1cd0":function(t,e,n){"use strict";n.r(e);var i=n("8cb2"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"1cfe":function(t,e,n){"use strict";n.r(e);var i=n("6c37"),a=n("1666");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("ae1c");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,null,null,!1,i["a"],void 0);e["default"]=s.exports},"1dad":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("CommNavBar",{attrs:{_i:1},on:{navBarClick:function(e){return t.$handleViewEvent(e)}}}),n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("v-uni-scroll-view",{staticClass:t._$g(3,"sc"),attrs:{"scroll-y":"true",_i:3}},[n("uni-view",{staticClass:t._$g(4,"sc"),attrs:{_i:4}},[t._$g(5,"i")?n("Home",{attrs:{_i:5}}):t._e(),t._$g(6,"i")?n("Member",{attrs:{_i:6}}):t._e()],1)],1)],1)],1)},a=[]},"1dd7":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uIcon:n("7b88").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[t._v("\u67e5\u770b\u76ee\u5f55")]),n("uni-view",{staticClass:t._$g(4,"sc"),attrs:{_i:4}},[t._v("\u5171"+t._$g(4,"t0-0")+"\u7ae0"),n("u-icon",{attrs:{_i:5}})],1)],1),n("uni-view",{staticClass:t._$g(6,"sc"),attrs:{_i:6}},t._l(t._$g(7,"f"),(function(e,i,a,o){return n("uni-view",{key:e,staticClass:t._$g("7-"+o,"sc"),attrs:{_i:"7-"+o}},[n("uni-view",{staticClass:t._$g("8-"+o,"sc"),attrs:{_i:"8-"+o}},[t._v(t._$g("8-"+o,"t0-0"))])],1)})),1),n("uni-view",{staticClass:t._$g(9,"sc"),attrs:{_i:9},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u67e5\u770b\u5168\u90e8")])],1)],1)},o=[]},"1e57":function(t,e,n){var i=n("b990");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("5b2f77c7",i,!0,{sourceMap:!1,shadowMode:!1})},"1f5e":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},"1f79":function(t,e,n){var i=n("8bf8");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("332dfb1a",i,!0,{sourceMap:!1,shadowMode:!1})},"1fc0":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-input",data:function(){return{wxsProps:{}}},components:{}}},"20df":function(t,e,n){"use strict";var i=n("14c9"),a=n.n(i);a.a},"215c":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("1730")),o={props:["dataList"],data:function(){return{wxsProps:{}}},components:{OriginalBoolItem:a.default}};e.default=o},"215ca":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".yb-flex[data-v-63a95bea]{\ndisplay:flex;flex-direction:column;box-sizing:border-box;overflow:hidden;flex-shrink:0;background:none;flex-wrap:nowrap\n}.yb-flex-1[data-v-63a95bea]{flex:1!important}.yb-wrap[data-v-63a95bea]{flex-wrap:wrap!important}.yb-row[data-v-63a95bea]{flex-direction:row!important}.yb-column[data-v-63a95bea]{flex-direction:column!important}.yb-row-reverse[data-v-63a95bea]{flex-direction:row-reverse!important}.yb-column-reverse[data-v-63a95bea]{flex-direction:column-reverse!important}.yb-align-center[data-v-63a95bea]{align-items:center!important}.yb-align-start[data-v-63a95bea]{align-items:flex-start!important}.yb-align-end[data-v-63a95bea]{align-items:flex-end!important}.yb-align-between[data-v-63a95bea]{align-content:space-between!important}.yb-justify-center[data-v-63a95bea]{justify-content:center!important}.yb-justify-start[data-v-63a95bea]{justify-content:flex-start!important}.yb-justify-end[data-v-63a95bea]{justify-content:flex-end!important}.yb-justify-between[data-v-63a95bea]{justify-content:space-between!important}\n.yb-list[data-v-63a95bea]{position:relative;flex:1}.yb-list .yb-refresh[data-v-63a95bea]{position:relative;\noverflow:visible\n}.yb-list .yb-list-pulldown[data-v-63a95bea]{height:400rpx;margin-top:-400rpx;justify-content:flex-end;padding:40rpx 0}.yb-pulldown-scroller[data-v-63a95bea]{\noverflow:visible\n}.yb-list .yb-pulldown-scroll-view[data-v-63a95bea]{position:absolute;top:0;left:0;right:0;bottom:0}",""]),t.exports=e},"21c3":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("c118")),o={name:"u--text",data:function(){return{wxsProps:{}}},components:{uvText:a.default}};e.default=o},"21f1":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-ed1d90b6], uni-scroll-view[data-v-ed1d90b6], uni-swiper-item[data-v-ed1d90b6]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-text[data-v-ed1d90b6]{display:flex;flex-direction:row;align-items:center;flex-wrap:nowrap;flex:1;width:100%}.u-text__price[data-v-ed1d90b6]{font-size:14px;color:#606266}.u-text__value[data-v-ed1d90b6]{font-size:14px;display:flex;flex-direction:row;color:#606266;flex-wrap:wrap;text-overflow:ellipsis;align-items:center}.u-text__value--primary[data-v-ed1d90b6]{color:#3c9cff}.u-text__value--warning[data-v-ed1d90b6]{color:#f9ae3d}.u-text__value--success[data-v-ed1d90b6]{color:#5ac725}.u-text__value--info[data-v-ed1d90b6]{color:#909399}.u-text__value--error[data-v-ed1d90b6]{color:#f56c6c}.u-text__value--main[data-v-ed1d90b6]{color:#303133}.u-text__value--content[data-v-ed1d90b6]{color:#606266}.u-text__value--tips[data-v-ed1d90b6]{color:#909193}.u-text__value--light[data-v-ed1d90b6]{color:#c0c4cc}',""]),t.exports=e},"231e":function(t,e,n){var i=n("e0ab");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("3d8fd14c",i,!0,{sourceMap:!1,shadowMode:!1})},2391:function(t,e,n){var i=n("001f");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("792a08f5",i,!0,{sourceMap:!1,shadowMode:!1})},"24d7":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-text",{staticClass:t._$g(0,"sc"),style:t._$g(0,"s"),attrs:{_i:0},on:{click:function(e){return t.$handleViewEvent(e,{stop:!0})}}},[t._v(t._$g(0,"t0-0"))])},a=[]},"24ed":function(t,e){t.exports="/static/images/myInfo/balance_bg.png"},"24fb":function(t,e,n){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=function(t,e){var n=t[1]||"",i=t[3];if(!i)return n;if(e&&"function"===typeof btoa){var a=function(t){var e=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(e);return"/*# ".concat(n," */")}(i),o=i.sources.map((function(t){return"/*# sourceURL=".concat(i.sourceRoot||"").concat(t," */")}));return[n].concat(o).concat([a]).join("\n")}return[n].join("\n")}(e,t);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,i){"string"===typeof t&&(t=[[null,t,""]]);var a={};if(i)for(var o=0;o0){var i=t.touches[0]||t.changedTouches[0];if(Math.abs(i.pageY-n.startY)>Math.abs(i.pageX-n.startX)&&Math.abs(i.pageY-n.startY)>20){var a=i.pageY,o=200/(200+Math.abs(a-n.startY));n.threshold=o*(a-n.startY),n.threshold>200&&(n.threshold=200),n.threshold<-200&&(n.threshold=-200),e.selectComponent(".yb-pulldown-scroller").setStyle({transform:"translateY("+n.threshold+"px)",transition:""}),e.selectComponent(".yb-list-pulldown").setStyle({transform:"translateY("+n.threshold+"px)",transition:""}),n.threshold>0?e.callMethod("pullingdown",n.threshold):e.callMethod("pullingup",Math.abs(n.threshold))}}},touchend:function(t,e){var n=e.getState();n.threshold>120&&n.enablePulldown?(e.selectComponent(".yb-pulldown-scroller").setStyle({transform:"translateY(120px)",transition:"transform .1s"}),e.selectComponent(".yb-list-pulldown").setStyle({transform:"translateY(120px)",transition:"transform .1s"}),e.callMethod("refresh")):(e.selectComponent(".yb-pulldown-scroller").setStyle({transform:"translateY(0)",transition:"transform .1s"}),e.selectComponent(".yb-list-pulldown").setStyle({transform:"translateY(0)",transition:"transform .1s"}))}},t.exports}({exports:{}})}},"37b8":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-8c7a2b80], uni-scroll-view[data-v-8c7a2b80], uni-swiper-item[data-v-8c7a2b80]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-toolbar[data-v-8c7a2b80]{height:42px;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.u-toolbar__wrapper__cancel[data-v-8c7a2b80]{color:#909193;font-size:15px;padding:0 15px}.u-toolbar__title[data-v-8c7a2b80]{color:#303133;padding:0 60rpx;font-size:16px;flex:1;text-align:center}.u-toolbar__wrapper__confirm[data-v-8c7a2b80]{color:#3c9cff;font-size:15px;padding:0 15px}',""]),t.exports=e},"37bf":function(t,e,n){"use strict";n.r(e);var i=n("8805"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"37d0":function(t,e,n){"use strict";n.r(e);var i=n("1dd7"),a=n("842d");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("fb66");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"61a11307",null,!1,i["a"],void 0);e["default"]=s.exports},3842:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={props:["bookInfo"],data:function(){return{wxsProps:{}}},components:{}}},"393f":function(t,e,n){"use strict";n.r(e);var i=n("af6d"),a=n("6103");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("c74a");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"3684d39c",null,!1,i["a"],void 0);e["default"]=s.exports},"39a9":function(t,e,n){var i=n("f68a");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("b9f44ad6",i,!0,{sourceMap:!1,shadowMode:!1})},"39e6":function(t,e,n){"use strict";var i=n("547d"),a=n.n(i);a.a},"3a28":function(t,e,n){"use strict";var i=n("a339"),a=n.n(i);a.a},"3b3b":function(t,e,n){"use strict";n.r(e);var i=n("0263"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"3b95":function(t,e,n){"use strict";n.r(e);var i=n("c726"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"3c21":function(t,e,n){"use strict";n.r(e);var i=n("6d66"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"3d1f":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{class:t._$g(0,"c"),style:t._$g(0,"s"),attrs:{id:t._$g(0,"a-id"),_i:0}},[t._l(t._$g(1,"f"),(function(e,i,a,o){return[t._$g("2-"+o,"i")?n("v-uni-image",{key:e["k0"],staticClass:t._$g("2-"+o,"sc"),style:t._$g("2-"+o,"s"),attrs:{src:t._$g("2-"+o,"a-src"),mode:"widthFix",_i:"2-"+o}}):t._e(),t._$g("3-"+o,"i")?n("img",{key:e["k1"],class:t._$g("3-"+o,"c"),style:t._$g("3-"+o,"s"),attrs:{id:t._$g("3-"+o,"a-id"),src:t._$g("3-"+o,"a-src"),"data-i":t._$g("3-"+o,"a-data-i"),_i:"3-"+o},on:{load:function(e){return t.$handleViewEvent(e)},error:function(e){return t.$handleViewEvent(e)},longpress:function(e){return t.$handleViewEvent(e)},click:function(e){return t.$handleViewEvent(e,{stop:!0})}}}):t._$g("4-"+o,"e")?n("v-uni-text",{key:e["k-1"],attrs:{decode:!0,_i:"4-"+o}},[t._v(t._$g("4-"+o,"t0-0"))]):t._$g("5-"+o,"e")?n("v-uni-text",{key:e["k-1"],attrs:{_i:"5-"+o}},[t._v("\\n")]):t._$g("6-"+o,"e")?n("uni-view",{key:e["k-1"],class:t._$g("6-"+o,"c"),style:t._$g("6-"+o,"s"),attrs:{id:t._$g("6-"+o,"a-id"),"hover-class":"_hover","data-i":t._$g("6-"+o,"a-data-i"),_i:"6-"+o},on:{click:function(e){return t.$handleViewEvent(e,{stop:!0})}}},[n("node",{staticStyle:{display:"inherit"},attrs:{_i:"7-"+o}})],1):t._$g("8-"+o,"e")?n("uni-view",{key:e["k-1"],class:t._$g("8-"+o,"c"),style:t._$g("8-"+o,"s"),attrs:{id:t._$g("8-"+o,"a-id"),_i:"8-"+o},domProps:{innerHTML:t._s(t._$g("8-"+o,"v-html"))}}):t._$g("9-"+o,"e")?n("iframe",{key:e["k-1"],style:t._$g("9-"+o,"s"),attrs:{allowfullscreen:t._$g("9-"+o,"a-allowfullscreen"),frameborder:t._$g("9-"+o,"a-frameborder"),src:t._$g("9-"+o,"a-src"),_i:"9-"+o}}):t._$g("10-"+o,"e")?n("embed",{key:e["k-1"],style:t._$g("10-"+o,"s"),attrs:{src:t._$g("10-"+o,"a-src"),_i:"10-"+o}}):t._$g("11-"+o,"e")?n("v-uni-audio",{key:e["k-1"],class:t._$g("11-"+o,"c"),style:t._$g("11-"+o,"s"),attrs:{id:t._$g("11-"+o,"a-id"),author:t._$g("11-"+o,"a-author"),controls:t._$g("11-"+o,"a-controls"),loop:t._$g("11-"+o,"a-loop"),name:t._$g("11-"+o,"a-name"),poster:t._$g("11-"+o,"a-poster"),src:t._$g("11-"+o,"a-src"),"data-i":t._$g("11-"+o,"a-data-i"),_i:"11-"+o},on:{play:function(e){return t.$handleViewEvent(e)},error:function(e){return t.$handleViewEvent(e)}}}):t._$g("12-"+o,"e")?n("uni-view",{key:e["k-1"],class:t._$g("12-"+o,"c"),style:t._$g("12-"+o,"s"),attrs:{id:t._$g("12-"+o,"a-id"),_i:"12-"+o}},[t._$g("13-"+o,"i")?n("node",{attrs:{_i:"13-"+o}}):t._l(t._$g(14,"f"),(function(e,i,a,r){return n("uni-view",{key:e,class:t._$g("14-"+o+r,"c"),style:t._$g("14-"+o+r,"s"),attrs:{_i:"14-"+o+r}},[t._$g("15-"+o+r,"i")?n("node",{attrs:{_i:"15-"+o+r}}):t._l(t._$g(16,"f"),(function(e,i,a,s){return[t._$g("17-"+o+r+s,"i")?n("uni-view",{key:e["k0"],class:t._$g("17-"+o+r+s,"c"),style:t._$g("17-"+o+r+s,"s"),attrs:{_i:"17-"+o+r+s}},[n("node",{attrs:{_i:"18-"+o+r+s}})],1):n("uni-view",{key:e["k-1"],class:t._$g("19-"+o+r+s,"c"),style:t._$g("19-"+o+r+s,"s"),attrs:{_i:"19-"+o+r+s}},t._l(t._$g("20-"+o+"-"+r+"-"+s,"f"),(function(e,i,a,c){return n("uni-view",{key:e,class:t._$g("20-"+o+r+s+"-"+c,"c"),style:t._$g("20-"+o+r+s+"-"+c,"s"),attrs:{_i:"20-"+o+r+s+"-"+c}},[n("node",{attrs:{_i:"21-"+o+r+s+"-"+c}})],1)})),1)]}))],2)}))],2):t._$g("22-"+o,"e")?n("v-uni-rich-text",{key:e["k-1"],style:t._$g("22-"+o,"s"),attrs:{id:t._$g("22-"+o,"a-id"),nodes:t._$g("22-"+o,"a-nodes"),_i:"22-"+o}}):t._$g("23-"+o,"e")?n("uni-view",{key:e["k-1"],class:t._$g("23-"+o,"c"),style:t._$g("23-"+o,"s"),attrs:{id:t._$g("23-"+o,"a-id"),_i:"23-"+o}},t._l(t._$g("24-"+o,"f"),(function(e,i,a,r){return n("node",{key:e,style:t._$g("24-"+o+"-"+r,"s"),attrs:{_i:"24-"+o+"-"+r}})})),1):n("node",{key:e["k-1"],style:t._$g("25-"+o,"s"),attrs:{_i:"25-"+o}})]}))],2)},a=[]},"3de9":function(t,e,n){var i=n("24fb"),a=n("b8d8"),o=n("7db7");e=i(!1);var r=a(o);e.push([t.i,'@charset "UTF-8";[data-v-402b5869] .u-input__content{height:116rpx;background-color:#fff;border-radius:58rpx}[data-v-402b5869] .u-input--square{padding:0!important}.login_content[data-v-402b5869]{width:100%;height:100%}.login_content .login_content_bg[data-v-402b5869]{position:fixed;top:0;left:0;width:100%;height:1056rpx;background:url('+r+") no-repeat;background-size:100% 100%}.login_content .login_content_body[data-v-402b5869]{position:relative;z-index:2;width:100%;padding:40rpx 32rpx;box-sizing:border-box}.login_content .login_content_body .login_title[data-v-402b5869]{font-size:56rpx;color:#1d242c;line-height:1}.login_content .login_content_body .login_tips[data-v-402b5869]{font-size:28rpx;color:#524e5c;line-height:1;margin-top:32rpx}.login_content .login_content_body .login_mobile[data-v-402b5869]{margin-top:90rpx}.login_content .login_content_body .login_mobile .login_mobile_tips[data-v-402b5869]{margin:0 32rpx;font-size:44rpx;color:#1d242c}.login_content .login_content_body .login_mobile_Code[data-v-402b5869]{display:flex;justify-content:center;align-items:center;width:100%;height:116rpx;line-height:1;background:linear-gradient(270deg,#f27e49,#f25a14);color:#fff;font-size:40rpx;margin-top:64rpx;border-radius:58rpx}.login_content .login_content_body .login_mobile_Code.active[data-v-402b5869]{background-color:#999}",""]),t.exports=e},"3ef3":function(t,e,n){"use strict";n.r(e);var i=n("f01c"),a=n("c80f");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("2ae1");var r=n("f0c5"),s=n("3713"),c=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"63a95bea",null,!1,i["a"],void 0);"function"===typeof s["a"]&&Object(s["a"])(c),e["default"]=c.exports},"3f3e":function(t,e,n){"use strict";n.r(e);var i=n("14e3"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},4005:function(t,e,n){"use strict";var i=n("5197"),a=n.n(i);a.a},"403c":function(t,e,n){"use strict";var i=n("a055"),a=n.n(i);a.a},"405b":function(t,e,n){"use strict";var i=n("39a9"),a=n.n(i);a.a},"40b0":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[n("v-uni-image",{staticClass:t._$g(4,"sc"),attrs:{src:t._$g(4,"a-src"),_i:4}})],1)],1),n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{_i:5}},[n("uni-view",{staticClass:t._$g(6,"sc"),attrs:{_i:6}},[t._v(t._$g(6,"t0-0"))]),n("uni-view",{staticClass:t._$g(7,"sc"),attrs:{_i:7}},[t._v(t._$g(7,"t0-0"))]),n("uni-view",{staticClass:t._$g(8,"sc"),attrs:{_i:8}},[n("uni-view",{staticClass:t._$g(9,"sc"),attrs:{_i:9}},[t._v(t._$g(9,"t0-0"))])],1)],1)],1)],1)},a=[]},"40b7":function(t,e,n){var i=n("0e9f");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("ac3af7e2",i,!0,{sourceMap:!1,shadowMode:!1})},"40e9":function(t,e,n){var i=n("6152");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("1c9c1f68",i,!0,{sourceMap:!1,shadowMode:!1})},"40fd":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uNavbar:n("6856").default,uInput:n("994f").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}}),n("u-navbar",{attrs:{_i:2}}),n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[n("uni-view",{staticClass:t._$g(4,"sc"),attrs:{_i:4}},[t._v("\u624b\u673a\u9a8c\u8bc1\u7801\u767b\u5f55")]),n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{_i:5}},[t._v("\u672a\u6ce8\u518c\u7684\u624b\u673a\u9a8c\u8bc1\u540e\u81ea\u52a8\u521b\u5efa\u8d26\u6237")]),n("uni-view",{staticClass:t._$g(6,"sc"),attrs:{_i:6}},[n("u-input",{attrs:{_i:7},model:{value:t._$g(7,"v-model"),callback:function(){},expression:"mobile"}},[n("template",{attrs:{_i:8},slot:"prefix"},[n("v-uni-text",{staticClass:t._$g(9,"sc"),attrs:{_i:9}},[t._v("+86")])],1)],2)],1),n("uni-view",{class:t._$g(10,"c"),attrs:{_i:10},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("v-uni-text",{attrs:{_i:11}},[t._v("\u83b7\u53d6\u9a8c\u8bc1\u7801")])],1)],1)],1)},o=[]},4102:function(t,e,n){"use strict";n.r(e);var i=n("78d3"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"412d":function(t,e,n){var i=n("5c93");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("760c7214",i,!0,{sourceMap:!1,shadowMode:!1})},4145:function(t,e,n){"use strict";n.r(e);var i=n("0a35"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"41c8":function(t,e,n){"use strict";var i=n("1e57"),a=n.n(i);a.a},"41e0":function(t,e,n){var i=n("2615");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("c7ae9c88",i,!0,{sourceMap:!1,shadowMode:!1})},4243:function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t._$g(0,"i")?n("uni-view",{ref:"u-transition",staticClass:t._$g(0,"sc"),class:t._$g(0,"c"),style:t._$g(0,"s"),attrs:{_i:0},on:{touchmove:function(e){return t.$handleViewEvent(e)},click:function(e){return t.$handleViewEvent(e)}}},[t._t("default",null,{_i:1})],2):t._e()},a=[]},"42bc":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-picker",data:function(){return{wxsProps:{}}},components:{}}},4447:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},"44be":function(t,e,n){"use strict";var i=n("9c9e"),a=n.n(i);a.a},"44ec":function(t,e,n){var i=n("19fd");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("5e5de21c",i,!0,{sourceMap:!1,shadowMode:!1})},4529:function(t,e,n){var i=n("0311");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("0f30089e",i,!0,{sourceMap:!1,shadowMode:!1})},"453e":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.is_image[data-v-3718b9d2]{display:block;width:100%;height:100%;border-radius:12rpx}.commBookLeftRigth_content[data-v-3718b9d2]{width:100%;display:flex}.commBookLeftRigth_content .commBookLeftRigth_content_left[data-v-3718b9d2]{width:200rpx;height:266rpx;flex:0 0 auto;border-radius:12rpx}.commBookLeftRigth_content .commBookLeftRigth_content_right[data-v-3718b9d2]{flex:1;flex-shrink:0;display:flex;flex-direction:column;justify-content:space-between;padding:10rpx 0 10rpx 20rpx;overflow:hidden}.commBookLeftRigth_content .commBookLeftRigth_content_right ._content_right_title[data-v-3718b9d2]{font-size:34rpx;color:#1a1a1a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.commBookLeftRigth_content .commBookLeftRigth_content_right ._content_right_tips[data-v-3718b9d2]{font-size:30rpx;color:#999;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.commBookLeftRigth_content .commBookLeftRigth_content_right ._content_right_introduction[data-v-3718b9d2]{font-size:30rpx;color:#999;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}',""]),t.exports=e},"45d9":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-checkbox",data:function(){return{wxsProps:{}}},components:{}}},"45f5":function(t,e,n){"use strict";var i=n("ecd3"),a=n.n(i);a.a},"460a":function(t,e,n){"use strict";n.r(e);var i=n("5898"),a=n("2814");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("ff32");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"72bdd996",null,!1,i["a"],void 0);e["default"]=s.exports},"462a":function(t,e,n){"use strict";n.r(e);var i=n("85d4"),a=n("0239");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("18b4");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"d3cb6ea0",null,!1,i["a"],void 0);e["default"]=s.exports},4655:function(t,e,n){var i=n("96b0");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("5dc24426",i,!0,{sourceMap:!1,shadowMode:!1})},4694:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".yb-flex[data-v-5b9d5bd7]{\ndisplay:flex;flex-direction:column;box-sizing:border-box;overflow:hidden;flex-shrink:0;background:none;flex-wrap:nowrap\n}.yb-flex-1[data-v-5b9d5bd7]{flex:1!important}.yb-wrap[data-v-5b9d5bd7]{flex-wrap:wrap!important}.yb-row[data-v-5b9d5bd7]{flex-direction:row!important}.yb-column[data-v-5b9d5bd7]{flex-direction:column!important}.yb-row-reverse[data-v-5b9d5bd7]{flex-direction:row-reverse!important}.yb-column-reverse[data-v-5b9d5bd7]{flex-direction:column-reverse!important}.yb-align-center[data-v-5b9d5bd7]{align-items:center!important}.yb-align-start[data-v-5b9d5bd7]{align-items:flex-start!important}.yb-align-end[data-v-5b9d5bd7]{align-items:flex-end!important}.yb-align-between[data-v-5b9d5bd7]{align-content:space-between!important}.yb-justify-center[data-v-5b9d5bd7]{justify-content:center!important}.yb-justify-start[data-v-5b9d5bd7]{justify-content:flex-start!important}.yb-justify-end[data-v-5b9d5bd7]{justify-content:flex-end!important}.yb-justify-between[data-v-5b9d5bd7]{justify-content:space-between!important}\n.yb-pulldown .indicator-icon[data-v-5b9d5bd7]{width:70rpx;height:70rpx}.yb-pulldown .refresh-text[data-v-5b9d5bd7]{text-align:center;font-size:24rpx}.yb-pulldown .indicator-symbol[data-v-5b9d5bd7]{transition:-webkit-transform .1s;transition:transform .1s;transition:transform .1s,-webkit-transform .1s}.yb-pulldown .refresh-time[data-v-5b9d5bd7]{font-size:23rpx}",""]),t.exports=e},"46a5":function(t,e,n){"use strict";n.r(e);var i=n("4243"),a=n("0b0b");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("7cc3");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"a75f7a08",null,!1,i["a"],void 0);e["default"]=s.exports},"46ae":function(t,e,n){"use strict";n.r(e);var i=n("85ae"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"46ea":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("29b4")),o=i(n("8138")),r={data:function(){return{wxsProps:{}}},components:{CommNavBar:a.default,BookshelfListBody:o.default}};e.default=r},"475f":function(t,e,n){"use strict";n.r(e);var i=n("d60e"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},4799:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.is_image[data-v-969f47fc]{width:100%;height:100%;border-radius:8rpx}._book_content[data-v-969f47fc]{width:100%}._book_content .book_box[data-v-969f47fc]{width:100%}._book_content .book_box .book_box_image[data-v-969f47fc]{width:100%;height:204rpx}._book_content .book_box .book_box_title[data-v-969f47fc]{width:100%;font-size:32rpx;color:#1a1a1a;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-weight:600;margin-top:16rpx}._book_content .book_box .book_box_tips[data-v-969f47fc]{font-size:26rpx;color:#999;line-height:1;margin-top:16rpx}',""]),t.exports=e},"47c5":function(t,e,n){"use strict";var i=n("49a3"),a=n.n(i);a.a},4876:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-navbar",data:function(){return{wxsProps:{}}},components:{}}},"489e":function(t,e,n){var i=n("d078");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("3de94abf",i,!0,{sourceMap:!1,shadowMode:!1})},"48c0":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-grid",data:function(){return{wxsProps:{}}},components:{}}},"493a":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-7dab6260], uni-scroll-view[data-v-7dab6260], uni-swiper-item[data-v-7dab6260]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-input[data-v-7dab6260]{display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex:1}.u-input--radius[data-v-7dab6260], .u-input--square[data-v-7dab6260]{border-radius:4px}.u-input--no-radius[data-v-7dab6260]{border-radius:0}.u-input--circle[data-v-7dab6260]{border-radius:100px}.u-input__content[data-v-7dab6260]{flex:1;display:flex;flex-direction:row;align-items:center;justify-content:space-between}.u-input__content__field-wrapper[data-v-7dab6260]{position:relative;display:flex;flex-direction:row;margin:0;flex:1}.u-input__content__field-wrapper__field[data-v-7dab6260]{line-height:26px;text-align:left;color:#303133;height:24px;font-size:15px;flex:1}.u-input__content__clear[data-v-7dab6260]{width:20px;height:20px;border-radius:100px;background-color:#c6c7cb;display:flex;flex-direction:row;align-items:center;justify-content:center;-webkit-transform:scale(.82);transform:scale(.82);margin-left:4px}.u-input__content__subfix-icon[data-v-7dab6260]{margin-left:4px}.u-input__content__prefix-icon[data-v-7dab6260]{margin-right:4px}',""]),t.exports=e},"49a3":function(t,e,n){var i=n("f1c0");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("7d70bdd8",i,!0,{sourceMap:!1,shadowMode:!1})},"49c9":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("v-uni-image",{staticClass:t._$g(3,"sc"),attrs:{src:t._$g(3,"a-src"),_i:3}})],1),n("uni-view",{staticClass:t._$g(4,"sc"),attrs:{_i:4}},[t._v(t._$g(4,"t0-0"))]),n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{_i:5}},[t._v(t._$g(5,"t0-0"))])],1)],1)},a=[]},"4afe":function(t,e,n){"use strict";n.r(e);var i=n("8767"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"4b48":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.memberUserInfo_centent[data-v-88bf8632]{width:100%}.memberUserInfo_centent .member_tips_info[data-v-88bf8632]{width:100%}',""]),t.exports=e},"4b93":function(t,e,n){"use strict";n.r(e);var i=n("b77f"),a=n("d048");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("b9fc");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"a1c9e37c",null,!1,i["a"],void 0);e["default"]=s.exports},"4ce8":function(t,e,n){var i=n("21f1");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("6d61b021",i,!0,{sourceMap:!1,shadowMode:!1})},"4d0d":function(t,e,n){"use strict";n.r(e);var i=n("00f9"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"4d3a":function(t,e,n){"use strict";var i=n("f0a0"),a=n.n(i);a.a},"4dea":function(t,e,n){"use strict";var i=n("d99c"),a=n.n(i);a.a},"4e09":function(t,e,n){"use strict";var i=n("bfd9"),a=n.n(i);a.a},"4e32":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uLoadingIcon:n("70a6").default,uIcon:n("7b88").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-button",{staticClass:t._$g(0,"sc"),class:t._$g(0,"c"),style:t._$g(0,"s"),attrs:{"hover-start-time":t._$g(0,"a-hover-start-time"),"hover-stay-time":t._$g(0,"a-hover-stay-time"),"form-type":t._$g(0,"a-form-type"),"open-type":t._$g(0,"a-open-type"),"app-parameter":t._$g(0,"a-app-parameter"),"hover-stop-propagation":t._$g(0,"a-hover-stop-propagation"),"send-message-title":t._$g(0,"a-send-message-title"),"send-message-path":t._$g(0,"a-send-message-path"),lang:t._$g(0,"a-lang"),"data-name":t._$g(0,"a-data-name"),"session-from":t._$g(0,"a-session-from"),"send-message-img":t._$g(0,"a-send-message-img"),"show-message-card":t._$g(0,"a-show-message-card"),"hover-class":t._$g(0,"a-hover-class"),_i:0},on:{getphonenumber:function(e){return t.$handleViewEvent(e)},getuserinfo:function(e){return t.$handleViewEvent(e)},error:function(e){return t.$handleViewEvent(e)},opensetting:function(e){return t.$handleViewEvent(e)},launchapp:function(e){return t.$handleViewEvent(e)},click:function(e){return t.$handleViewEvent(e)}}},[t._$g(1,"i")?[n("u-loading-icon",{attrs:{_i:2}}),n("v-uni-text",{staticClass:t._$g(3,"sc"),style:t._$g(3,"s"),attrs:{_i:3}},[t._v(t._$g(3,"t0-0"))])]:[t._$g(5,"i")?n("u-icon",{attrs:{_i:5}}):t._e(),t._t("default",[n("v-uni-text",{staticClass:t._$g(7,"sc"),style:t._$g(7,"s"),attrs:{_i:7}},[t._v(t._$g(7,"t0-0"))])],{_i:6})]],2)},o=[]},"4ea4":function(t,e){t.exports=function(t){return t&&t.__esModule?t:{default:t}},t.exports.__esModule=!0,t.exports["default"]=t.exports},"4f1e":function(t,e,n){"use strict";n.r(e);var i=n("176b"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"501e":function(t,e,n){"use strict";n.r(e);var i=n("a9a0"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},5036:function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uCellGroup:n("0aba").default,uCell:n("9bd0").default,uIcon:n("7b88").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("u-cell-group",{attrs:{_i:1}},t._l(t._$g(2,"f"),(function(e,i,a,o){return n("u-cell",{key:e,attrs:{_i:"2-"+o},scopedSlots:t._u([{key:"icon",fn:function(t,e,i){return[n("u-icon",{attrs:{_i:"4-"+o+"-"+i}})]}}],null,!0)})})),1)],1)},o=[]},5082:function(t,e,n){"use strict";var i=n("c6a8"),a=n.n(i);a.a},5100:function(t,e,n){var i=n("2db4");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("f2dee516",i,!0,{sourceMap:!1,shadowMode:!1})},"514f":function(t,e,n){"use strict";n.r(e);var i=n("f386"),a=n("15a2");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("bfb6");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"e591b23e",null,!1,i["a"],void 0);e["default"]=s.exports},5194:function(t,e,n){var i=n("0172");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("0bd9aaf5",i,!0,{sourceMap:!1,shadowMode:!1})},5197:function(t,e,n){var i=n("737c");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("0ab225e5",i,!0,{sourceMap:!1,shadowMode:!1})},5271:function(t,e,n){"use strict";n.r(e);var i=n("e643"),a=n("e927");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("c74f");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,null,null,!1,i["a"],void 0);e["default"]=s.exports},5366:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-3927d88e], uni-scroll-view[data-v-3927d88e], uni-swiper-item[data-v-3927d88e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}',""]),t.exports=e},5396:function(t,e,n){"use strict";var i=n("2391"),a=n.n(i);a.a},5399:function(t,e,n){"use strict";var i=n("5194"),a=n.n(i);a.a},5403:function(t,e,n){var i=n("d22c");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("1951cb9e",i,!0,{sourceMap:!1,shadowMode:!1})},5417:function(t,e,n){"use strict";n.r(e);var i=n("ac93"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"547d":function(t,e,n){var i=n("06c0");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("1824f736",i,!0,{sourceMap:!1,shadowMode:!1})},"558c":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-gap",data:function(){return{wxsProps:{}}},components:{}}},"573a":function(t,e,n){"use strict";n.r(e);var i=n("2d99"),a=n("3b3b");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("1cbb");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"402b5869",null,!1,i["a"],void 0);e["default"]=s.exports},"57ea":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-toolbar",data:function(){return{wxsProps:{}}},components:{}}},"585f":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".yingbing-flip[data-v-b5baed0e]{\n\n\nheight:100%;\noverflow:hidden;position:relative}.yingbing-flip-item[data-v-b5baed0e]{position:absolute;top:0;left:0;right:0;bottom:0;\noverflow:hidden\n}.yingbing-flip-item-content[data-v-b5baed0e]{position:absolute;top:0;left:0;right:0;bottom:0}.yingbing-flip-item-bg[data-v-b5baed0e]{position:absolute;top:0;left:0;right:0;bottom:0;\n}.yingbing-flip-item-shadow[data-v-b5baed0e]{position:absolute;\n}.yingbing-flip-pulldown[data-v-b5baed0e], .yingbing-flip-pullup[data-v-b5baed0e]{position:absolute}.yingbing-flip-pulldown-item[data-v-b5baed0e], .yingbing-flip-pullup-item[data-v-b5baed0e]{\nvisibility:hidden;\n\n\nposition:absolute;top:0;left:0;right:0;bottom:0}\n\n",""]),t.exports=e},5898:function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uIcon:n("7b88").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),style:t._$g(0,"s"),attrs:{_i:0},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("uni-view",{staticClass:t._$g(1,"sc"),style:t._$g(1,"s"),attrs:{_i:1}},[t._$g(2,"i")?[t._t("label",[n("v-uni-text",{staticClass:t._$g(4,"sc"),attrs:{_i:4}},[t._v(t._$g(4,"t0-0"))])],{_i:3})]:t._e(),n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{_i:5}},[n("u-icon",{attrs:{_i:6},on:{click:function(e){return t.$handleViewEvent(e)}}})],1),n("v-uni-input",{staticClass:t._$g(7,"sc"),style:t._$g(7,"s"),attrs:{"confirm-type":"search",value:t._$g(7,"a-value"),disabled:t._$g(7,"a-disabled"),focus:t._$g(7,"a-focus"),maxlength:t._$g(7,"a-maxlength"),"placeholder-class":"u-search__content__input--placeholder",placeholder:t._$g(7,"a-placeholder"),"placeholder-style":t._$g(7,"a-placeholder-style"),type:"text",_i:7},on:{blur:function(e){return t.$handleViewEvent(e)},confirm:function(e){return t.$handleViewEvent(e)},input:function(e){return t.$handleViewEvent(e)},focus:function(e){return t.$handleViewEvent(e)}}}),t._$g(8,"i")?n("uni-view",{staticClass:t._$g(8,"sc"),attrs:{_i:8},on:{click:function(e){return t.$handleViewEvent(e)}}},[n("u-icon",{attrs:{_i:9}})],1):t._e()],2),n("v-uni-text",{staticClass:t._$g(10,"sc"),class:t._$g(10,"c"),style:t._$g(10,"s"),attrs:{_i:10},on:{click:function(e){return t.$handleViewEvent(e,{stop:!0,prevent:!0})}}},[t._v(t._$g(10,"t0-0"))])],1)},o=[]},"58a6":function(t,e,n){"use strict";e["a"]=function(t){(t.options.wxs||(t.options.wxs={}))["handler"]=function(t){var e={abbr:!0,b:!0,big:!0,code:!0,del:!0,em:!0,i:!0,ins:!0,label:!0,q:!0,small:!0,span:!0,strong:!0,sub:!0,sup:!0};return t.exports={use:function(t){return!e[t.name]&&-1==(t.attrs.style||"").indexOf("display:inline")&&!t.c}},t.exports}({exports:{}})}},"5a06":function(t,e,n){"use strict";n.r(e);var i=n("0bbf"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},"5a09":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"commFooter",props:["footerTips"],data:function(){return{wxsProps:{}}},components:{}}},"5a29":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={props:["directoryCount","bookDirectory","bookSid","bookInfo"],data:function(){return{wxsProps:{}}},components:{}}},"5a5e":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";uni-view[data-v-e591b23e], uni-scroll-view[data-v-e591b23e], uni-swiper-item[data-v-e591b23e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-read-more__content[data-v-e591b23e]{overflow:hidden;color:#606266;font-size:15px;text-align:left}.u-read-more__toggle[data-v-e591b23e]{display:flex;flex-direction:row;justify-content:center}.u-read-more__toggle__text[data-v-e591b23e]{display:flex;flex-direction:row;align-items:center;justify-content:center;margin-top:5px}',""]),t.exports=e},"5ac9":function(t,e,n){"use strict";var i=n("b2fc"),a=n.n(i);a.a},"5b04":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.PopularityList_content[data-v-15cacd66]{width:100%}.PopularityList_content .PopularityList_header[data-v-15cacd66]{width:100%}.PopularityList_content .PopularityList_header .PopularityList_header_title[data-v-15cacd66]{font-size:36rpx;color:#1a1a1a;line-height:1;font-weight:600}.PopularityList_content .PopularityList_body .PopularityList_body_item[data-v-15cacd66]{margin-top:32rpx}',""]),t.exports=e},"5b31":function(t,e,n){"use strict";n.r(e);var i=n("f097"),a=n("34f7");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("1868");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"63021ba8",null,!1,i["a"],void 0);e["default"]=s.exports},"5bf1":function(t,e,n){"use strict";var i=n("1096"),a=n.n(i);a.a},"5c22":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{staticClass:t._$g(1,"sc"),attrs:{_i:1}},[t._$g(2,"i")?n("uni-view",{ref:"loading",staticClass:t._$g(2,"sc"),style:t._$g(2,"s"),attrs:{_i:2}},t._l(t._$g(3,"f"),(function(e,i,a,o){return n("uni-view",{key:e,staticClass:t._$g("3-"+o,"sc"),class:t._$g("3-"+o,"c"),style:t._$g("3-"+o,"s"),attrs:{_i:"3-"+o}})})),1):t._e(),t._$g(4,"i")?n("v-uni-text",{staticClass:t._$g(4,"sc"),style:t._$g(4,"s"),attrs:{_i:4}},[t._v(t._$g(4,"t0-0"))]):t._e()],1)],1)},a=[]},"5c47":function(t,e,n){"use strict";var i=n("fc80"),a=n.n(i);a.a},"5c93":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.content{padding:32rpx}.content .version_info{display:flex;justify-content:space-between;font-size:36rpx}',""]),t.exports=e},"5cca":function(t,e,n){var i=n("37b8");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("7f7e").default;a("07108a0e",i,!0,{sourceMap:!1,shadowMode:!1})},"5d80":function(t,e,n){"use strict";var i=n("9997"),a=n.n(i);a.a},"5db0":function(t,e,n){"use strict";var i=n("e1f9"),a=n.n(i);a.a},"5dc6":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u-cell",data:function(){return{wxsProps:{}}},components:{}}},"5f72":function(t,e,n){"use strict";n.r(e);var i=n("8ce2"),a=n("069a");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("5db0");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"7990f3ac",null,!1,i["a"],void 0);e["default"]=s.exports},6103:function(t,e,n){"use strict";n.r(e);var i=n("45d9"),a=n.n(i);for(var o in i)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},6147:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={data:function(){return{wxsProps:{}}},components:{}}},6152:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";.is_image[data-v-6cc6f7ea]{display:block;width:100%;height:100%;border-radius:8rpx}.bookRecommendInfo_content[data-v-6cc6f7ea]{width:100%}.bookRecommendInfo_content .bookRecommendInfo_box[data-v-6cc6f7ea]{width:100%}.bookRecommendInfo_content .bookRecommendInfo_box ._header_box[data-v-6cc6f7ea]{width:100%}.bookRecommendInfo_content .bookRecommendInfo_box ._header_box ._header_box_title[data-v-6cc6f7ea]{font-size:36rpx;color:#1a1a1a;line-height:1}.bookRecommendInfo_content .bookRecommendInfo_box ._body_list_box[data-v-6cc6f7ea]{width:100%}.bookRecommendInfo_content .bookRecommendInfo_box ._body_list_box ._body_list[data-v-6cc6f7ea]{width:100%;display:flex;flex-wrap:wrap}.bookRecommendInfo_content .bookRecommendInfo_box ._body_list_box ._body_list ._body_list_item[data-v-6cc6f7ea]{width:202rpx;margin-right:32rpx}.bookRecommendInfo_content .bookRecommendInfo_box ._body_list_box ._body_list ._body_list_item ._item_book_over[data-v-6cc6f7ea]{width:202rpx;height:270rpx;border-radius:8rpx;margin-top:30rpx}.bookRecommendInfo_content .bookRecommendInfo_box ._body_list_box ._body_list ._body_list_item ._item_book_name[data-v-6cc6f7ea]{width:100%;margin-top:24rpx;font-size:30rpx;line-height:1;color:#1a1a1a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bookRecommendInfo_content .bookRecommendInfo_box ._body_list_box ._body_list ._body_list_item[data-v-6cc6f7ea]:nth-child(3n+0){margin-right:0}',""]),t.exports=e},6167:function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var i={uCellGroup:n("0aba").default,uCell:n("9bd0").default},a=function(){var t=this.$createElement,e=this._self._c||t;return e("uni-view",{staticClass:this._$g(0,"sc"),attrs:{_i:0}},[e("uni-view",{staticClass:this._$g(1,"sc"),attrs:{_i:1}},[e("u-cell-group",{attrs:{_i:2}},this._l(this._$g(3,"f"),(function(t,n,i,a){return e("u-cell",{key:t,attrs:{_i:"3-"+a}})})),1)],1)],1)},o=[]},"61e9":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".computed[data-v-06963913]{position:fixed;top:-1000rpx;left:0;\r\ndisplay:flex;\r\nflex-direction:row;flex-wrap:wrap}.computed-text[data-v-06963913]{font-size:20px;flex-shrink:0}.yingbing-read-page-flip[data-v-06963913]{position:absolute;top:0;left:0;right:0;bottom:0}.flip-item-wrapper[data-v-06963913]{\r\ndisplay:flex;flex-direction:column;box-sizing:border-box;\r\nposition:absolute;top:0;left:0;right:0;bottom:0}.flip-item-header[data-v-06963913]{\r\ndisplay:flex;flex-direction:column;box-sizing:border-box;\r\njustify-content:center;height:50rpx;overflow:hidden}.flip-item-header-text[data-v-06963913]{font-size:24rpx;opacity:.4;font-weight:700;\r\n\r\n\r\ndisplay:-webkit-box!important;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-box-orient:vertical;-webkit-line-clamp:1\n}.flip-item-footer[data-v-06963913]{\r\ndisplay:flex;box-sizing:border-box;\r\nalign-items:center;flex-direction:row;justify-content:space-between;height:50rpx;overflow:hidden}.flip-item-footer-text[data-v-06963913]{font-size:24rpx;opacity:.4;font-weight:700}.flip-item-content[data-v-06963913]{\r\nbox-sizing:border-box;overflow:hidden;display:flex;flex-direction:column;\r\nflex:1}.flip-item-text[data-v-06963913]{\r\ndisplay:flex;flex-direction:column\n}.flip-text[data-v-06963913]{\r\nbox-sizing:border-box;white-space:pre-wrap\n}.flip-loading[data-v-06963913]{\r\ndisplay:flex;\r\nalign-items:center;justify-content:center}.flip-loading-text[data-v-06963913]{font-size:20px}\nuni-view[data-v-06963913], uni-image[data-v-06963913], uni-input[data-v-06963913], uni-scroll-view[data-v-06963913], uni-swiper[data-v-06963913], uni-swiper-item[data-v-06963913], uni-text[data-v-06963913], uni-textarea[data-v-06963913], uni-video[data-v-06963913]{position:static}\n.yingbing-scroll[data-v-06963913]{position:absolute;top:0;left:0;right:0;bottom:0;\r\nbox-sizing:border-box;overflow:hidden;display:flex;flex-direction:column\n}.scroll-wrapper[data-v-06963913]{\r\nbox-sizing:border-box;overflow:hidden;display:flex;flex-direction:column;\r\nflex:1}.scroll-item[data-v-06963913]{\r\nbox-sizing:border-box;overflow:hidden;display:flex;flex-direction:column\n}.scroll-item-content[data-v-06963913]{\r\nbox-sizing:border-box;overflow:hidden;display:flex;flex-direction:column;\r\npadding-bottom:20rpx}.scroll-text[data-v-06963913]{\r\nbox-sizing:border-box;white-space:pre-wrap\n}.scroll-item-header[data-v-06963913]{\r\ndisplay:flex;box-sizing:border-box;overflow:hidden;\r\npadding:0 40rpx;position:fixed;left:20rpx;align-items:center;flex-direction:row;justify-content:space-between;height:50rpx;background-color:rgba(0,0,0,.4);border-radius:50rpx}.scroll-item-header-text[data-v-06963913]{font-size:24rpx;color:#fff;\r\n\r\n\r\ndisplay:-webkit-box!important;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-box-orient:vertical;-webkit-line-clamp:1\n}.scroll-item-footer[data-v-06963913]{\r\ndisplay:flex;box-sizing:border-box;overflow:hidden;\r\npadding:0 40rpx;position:fixed;left:20rpx;right:20rpx;align-items:center;flex-direction:row;justify-content:space-between;height:50rpx;background-color:rgba(0,0,0,.4);border-radius:50rpx}.scroll-item-footer-text[data-v-06963913]{font-size:24rpx;color:#fff}.yingbing-read-page[data-v-06963913]{\r\nwidth:100%;height:100%;\r\n\r\n\r\nposition:relative}.yingbing-loading[data-v-06963913]{position:absolute;left:0;top:0;right:0;bottom:0;\r\nbox-sizing:border-box;overflow:hidden;display:flex;\r\nflex-direction:row;align-items:center;justify-content:center}.yingbing-loading .error-text[data-v-06963913]{font-size:20px}.yingbing-slot[data-v-06963913]{\r\ndisplay:flex;flex-direction:column;box-sizing:border-box;overflow:hidden;\r\nflex:1}",""]),t.exports=e},6251:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"UniStatusBar",data:function(){return{wxsProps:{}}},components:{}}},"62cb":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={props:["name","size","color","weight"],data:function(){return{wxsProps:{}}},components:{}}},"636e":function(t,e,n){"use strict";var i=n("c6ae"),a=n.n(i);a.a},6417:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;e.default={name:"u--text",data:function(){return{wxsProps:{}}},components:{}}},"654c":function(t,e,n){"use strict";n.r(e);var i=n("33e4"),a=n("8cf4");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("f82b");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"88bf8632",null,!1,i["a"],void 0);e["default"]=s.exports},6562:function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t._$g(0,"i")?n("uni-view",{staticClass:t._$g(0,"sc"),class:t._$g(0,"c"),style:t._$g(0,"s"),attrs:{_i:0}},[t._$g(1,"i")?n("uni-view",{ref:"ani",staticClass:t._$g(1,"sc"),class:t._$g(1,"c"),style:t._$g(1,"s"),attrs:{_i:1}},[t._$g(2,"i")?t._l(t._$g(3,"f"),(function(e,i,a,o){return n("uni-view",{key:e,staticClass:t._$g("3-"+o,"sc"),attrs:{_i:"3-"+o}})})):t._e()],2):t._e(),t._$g(4,"i")?n("v-uni-text",{staticClass:t._$g(4,"sc"),style:t._$g(4,"s"),attrs:{_i:4}},[t._v(t._$g(4,"t0-0"))]):t._e()],1):t._e()},a=[]},"656f":function(t,e,n){"use strict";var i=n("e984"),a=n.n(i);a.a},"65d7":function(t,e,n){"use strict";n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){}));var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-view",{staticClass:t._$g(0,"sc"),attrs:{_i:0}},[n("uni-view",{attrs:{_i:1}},[n("uni-view",{staticClass:t._$g(2,"sc"),attrs:{_i:2}},[n("uni-view",{staticClass:t._$g(3,"sc"),attrs:{_i:3}},[n("v-uni-image",{staticClass:t._$g(4,"sc"),attrs:{src:t._$g(4,"a-src"),_i:4}})],1),n("uni-view",{staticClass:t._$g(5,"sc"),attrs:{_i:5}},[n("uni-view",{staticClass:t._$g(6,"sc"),attrs:{_i:6}},[t._v(t._$g(6,"t0-0"))]),n("uni-view",{staticClass:t._$g(7,"sc"),attrs:{_i:7}},[t._v(t._$g(7,"t0-0"))]),n("uni-view",{staticClass:t._$g(8,"sc"),attrs:{_i:8}},[t._v(t._$g(8,"t0-0"))])],1)],1),n("uni-view",{staticClass:t._$g(9,"sc"),attrs:{_i:9}},[t._$g(10,"i")?n("uni-view",{class:t._$g(10,"c"),attrs:{_i:10}},[t._v("\u5df2\u52a0\u5165\u4e66\u67b6")]):n("uni-view",{class:t._$g(11,"c"),attrs:{_i:11},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u52a0\u5165\u4e66\u67b6")]),n("uni-view",{staticClass:t._$g(12,"sc"),attrs:{_i:12},on:{click:function(e){return t.$handleViewEvent(e)}}},[t._v("\u5f00\u59cb\u9605\u8bfb")])],1)],1)],1)},a=[]},"65e4":function(t,e,n){"use strict";var i=n("85e0"),a=n.n(i);a.a},6609:function(t,e,n){"use strict";n.r(e);var i=n("8be9"),a=n("b7aa");for(var o in a)["default"].indexOf(o)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("a498");var r=n("f0c5"),s=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,null,null,!1,i["a"],void 0);e["default"]=s.exports},"660d":function(t,e,n){"use strict";var i=n("87a8"),a=n.n(i);a.a},6656:function(t,e,n){"use strict";e["a"]=function(t){(t.options.wxs||(t.options.wxs={}))["flip"]=function(t){function e(t,e,o){var s=e.getState();if(function(t){var e=t.getState();e.interval=!1,e.touchTimer&&(t.clearTimeout(e.touchTimer),e.touchTimer=null)}(e),s.isTouch&&!s.disableTouch){var c=e.getBoundingClientRect(),l=s.vertical?c.height:c.width,d=s.vertical?s.startY:s.startX;if(s.direction||!(s.touchTime<=200)||s.unableClickPage&&"none"!=s.type||o||(d>l/4*3&&s.nextIndex=0&&s.prevIndex!=s.count-1&&(s.direction="prev")),s.direction)if(s.disableTouch=!0,s.touchTime<=200){var u="none"==s.type?0:s.duration,f="next"==s.direction?1:-1;a(-f*l,u,e),e.setTimeout((function(){n(e,!0),e.callMethod("handleFlipChange",f)}),u+50)}else{u="none"==s.type?0:s.duration;if(Math.abs(s.offset)>=l/4){f="next"==s.direction?1:-1;a(-f*l,u,e),e.setTimeout((function(){n(e,!0),e.callMethod("handleFlipChange",f)}),u+50)}else a(0,u,e),e.setTimeout((function(){n(e),i(e)}),u+50)}else"default"==s.loadingState?r(e):"ready"==s.loadingState?function(t){var e=t.getState();e.loadingState="loading";var n=e.loadingType;t.requestAnimationFrame((function(){for(var e=t.selectAllComponents(".yingbing-flip-"+n+"-item"),i=0;i=0&&(n.selectComponent(".yingbing-flip-item_"+a.prevIndex).setStyle({transform:s+"("+(c-r)+"px)","box-shadow":i?"":"real"==a.type?"0 0 30px 20px rgba(0,0,0,0.4)":"cover"==a.type?"0 0 10px 5px rgba(0,0,0,0.3)":"",transition:e>0?"transform "+e+"ms":""}),"real"==a.type&&(n.selectComponent(".yingbing-flip-item-content_"+a.prevIndex).setStyle({transform:s+"("+(r-c)+"px)",transition:e>0?"transform "+e+"ms":""}),n.selectComponent(".yingbing-flip-item-bg_"+a.prevIndex).setStyle({transform:s+"("+c+"px)","box-shadow":i?"":"-5px 0 20px rgba(0,0,0,0.1)",transition:e>0?"transform "+e+"ms, boxShadow "+e+"ms":""}),n.selectComponent(".yingbing-flip-item-shadow_"+a.prevIndex).setStyle({"box-shadow":i?"":"0 0 60px 30px rgba(0,0,0,0.4)",transition:e>0?"boxShadow "+e+"ms":""}))):(a.nextIndex0?"transform "+e+"ms":""}),"real"==a.type&&(n.selectComponent(".yingbing-flip-item-content_"+a.currentIndex).setStyle({transform:s+"("+-c+"px)",transition:e>0?"transform "+e+"ms":""}),n.selectComponent(".yingbing-flip-item-bg_"+a.currentIndex).setStyle({transform:s+"("+(c+r)+"px)","box-shadow":i?"":"-5px 0 20px rgba(0,0,0,0.1)",transition:e>0?"transform "+e+"ms, boxShadow "+e+"ms":""}),n.selectComponent(".yingbing-flip-item-shadow_"+a.currentIndex).setStyle({"box-shadow":i?"":"0 0 60px 30px rgba(0,0,0,0.4)",transition:e>0?"boxShadow "+e+"ms":""})))}))}function o(t,e){var n=e.getState(),i=n.loadingType,a=n.translate,o="pullup"==i?n.pullupHeight:n.pulldownHeight,r=t;Math.abs(n.offset)0&&"next"==n.direction||n.offset<0&&"prev"==n.direction)&&(n.offset=0),Math.abs(n.offset)<=s&&a(n.offset,0,e)}else{if(Math.abs(n.offset)=0&&n.prevIndex!=n.count-1?"none"!=n.type&&(n.direction="prev"):n.pulldownable&&"loading"!=n.loadingState&&"success"!=n.loadingState&&"fail"!=n.loadingState&&(n.loadingType="pulldown",n.offset=n.offset-n.sliderFault,o(n.offset,e))}}},touchend:function(t,n){e(t,n)},touchcancel:function(t,n){e(t,n)},propWatcher:function(t,n,a){a.setTimeout((function(){var o=a.getState();o.vertical=t.vertical,o.pulldownable=t.pulldownable,o.pullupable=t.pullupable,o.pulldownHeight=t.pulldownHeight,o.loadingState=t.loadingState,o.pullupHeight=t.pullupHeight,o.duration=t.duration,o.nextIndex=t.nextIndex,o.prevIndex=t.prevIndex,o.currentIndex=t.currentIndex,o.sliderFault=t.sliderFault,o.count=t.count,o.type=t.type,o.unableClickPage=t.unableClickPage,o.translate=t.translate,n&&t.currentIndex!=n.currentIndex&&i(a),n&&t.loadingState!=n.loadingState&&o.loadingState&&(r(a),a.callMethod("resetLoading")),n&&t.flipTo!=n.flipTo&&0!=t.flipTo&&(o.disableTouch||(t.flipTo<0&&o.prevIndex>=0&&o.prevIndex!=o.count-1&&(o.isTouch=!0,o.touchTime=0,o.direction="prev",e(0,a,!0)),t.flipTo>0&&o.nextIndexn.parts.length&&(i.parts.length=n.parts.length)}else{var r=[];for(a=0;a","","","","","","","","","","","","","",""]},"apple":{"dSYMs":false},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"3.8.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"backgroundColor":"#FFFFFF","borderStyle":"#F5F5F5","selectedColor":"#FF5000","iconWidth":"24px","color":"#666666","fontSize":"10px","height":"68px","list":[{"pagePath":"pages/bookshelf/bookshelf/index","text":"书架","iconPath":"/static/images/tabbar/bookshelf.png","selectedIconPath":"/static/images/tabbar/bookshelfActive.png"},{"pagePath":"pages/bookCity/bookCity/index","text":"书城","iconPath":"/static/images/tabbar/bookCity.png","selectedIconPath":"/static/images/tabbar/bookCityActive.png"},{"pagePath":"pages/classification/classification/index","text":"分类","iconPath":"/static/images/tabbar/classification.png","selectedIconPath":"/static/images/tabbar/classificationActive.png"},{"pagePath":"pages/myInfo/myInfo/index","text":"我的","iconPath":"/static/images/tabbar/myInfo.png","selectedIconPath":"/static/images/tabbar/myInfoActive.png"}],"child":["lauchwebview"],"selected":1},"launch_path":"__uniappview.html"}} \ No newline at end of file diff --git a/unpackage/dist/build/app-plus/static/app_logo.png b/unpackage/dist/build/app-plus/static/app_logo.png new file mode 100644 index 0000000..2e263bf Binary files /dev/null and b/unpackage/dist/build/app-plus/static/app_logo.png differ diff --git a/unpackage/dist/build/app-plus/static/app_logo_222.png b/unpackage/dist/build/app-plus/static/app_logo_222.png new file mode 100644 index 0000000..211e0b6 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/app_logo_222.png differ diff --git a/unpackage/dist/build/app-plus/static/app_logoww.png b/unpackage/dist/build/app-plus/static/app_logoww.png new file mode 100644 index 0000000..5316c57 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/app_logoww.png differ diff --git a/unpackage/dist/build/app-plus/static/images/Rectangle_nav_bar.png b/unpackage/dist/build/app-plus/static/images/Rectangle_nav_bar.png new file mode 100644 index 0000000..20ff9bf Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/Rectangle_nav_bar.png differ diff --git a/unpackage/dist/build/app-plus/static/images/_coin.png b/unpackage/dist/build/app-plus/static/images/_coin.png new file mode 100644 index 0000000..4cbd3e4 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/_coin.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/complete.png b/unpackage/dist/build/app-plus/static/images/bookCity/complete.png new file mode 100644 index 0000000..4ab546a Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/complete.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/new_book.png b/unpackage/dist/build/app-plus/static/images/bookCity/new_book.png new file mode 100644 index 0000000..bcc4480 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/new_book.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/ranking_four.png b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_four.png new file mode 100644 index 0000000..a8b2901 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_four.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/ranking_one.png b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_one.png new file mode 100644 index 0000000..cb2b8e7 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_one.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/ranking_three.png b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_three.png new file mode 100644 index 0000000..54d289d Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_three.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/ranking_two.png b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_two.png new file mode 100644 index 0000000..01b5cd9 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/ranking_two.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/recharge.png b/unpackage/dist/build/app-plus/static/images/bookCity/recharge.png new file mode 100644 index 0000000..d3dfced Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/recharge.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookCity/the_charts.png b/unpackage/dist/build/app-plus/static/images/bookCity/the_charts.png new file mode 100644 index 0000000..1228ec1 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookCity/the_charts.png differ diff --git a/unpackage/dist/build/app-plus/static/images/book_111.png b/unpackage/dist/build/app-plus/static/images/book_111.png new file mode 100644 index 0000000..b6053d6 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/book_111.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookshelf/_sign_in.png b/unpackage/dist/build/app-plus/static/images/bookshelf/_sign_in.png new file mode 100644 index 0000000..ae95b99 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookshelf/_sign_in.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookshelf/_swipe_add.png b/unpackage/dist/build/app-plus/static/images/bookshelf/_swipe_add.png new file mode 100644 index 0000000..be639be Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookshelf/_swipe_add.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookshelf/del_all.png b/unpackage/dist/build/app-plus/static/images/bookshelf/del_all.png new file mode 100644 index 0000000..d5d0ac5 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookshelf/del_all.png differ diff --git a/unpackage/dist/build/app-plus/static/images/bookshelf/del_all_checked.png b/unpackage/dist/build/app-plus/static/images/bookshelf/del_all_checked.png new file mode 100644 index 0000000..d4713c3 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/bookshelf/del_all_checked.png differ diff --git a/unpackage/dist/build/app-plus/static/images/chapter_lock.png b/unpackage/dist/build/app-plus/static/images/chapter_lock.png new file mode 100644 index 0000000..d65eae5 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/chapter_lock.png differ diff --git a/unpackage/dist/build/app-plus/static/images/delete_icon.png b/unpackage/dist/build/app-plus/static/images/delete_icon.png new file mode 100644 index 0000000..bdb1fbf Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/delete_icon.png differ diff --git a/unpackage/dist/build/app-plus/static/images/login_bg.png b/unpackage/dist/build/app-plus/static/images/login_bg.png new file mode 100644 index 0000000..5798fdd Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/login_bg.png differ diff --git a/unpackage/dist/build/app-plus/static/images/member_vip_bg.png b/unpackage/dist/build/app-plus/static/images/member_vip_bg.png new file mode 100644 index 0000000..382b05a Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/member_vip_bg.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/VIP.png b/unpackage/dist/build/app-plus/static/images/myInfo/VIP.png new file mode 100644 index 0000000..fe5a3a0 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/VIP.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/VIP_active.png b/unpackage/dist/build/app-plus/static/images/myInfo/VIP_active.png new file mode 100644 index 0000000..7fe774c Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/VIP_active.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/VIP_whether.png b/unpackage/dist/build/app-plus/static/images/myInfo/VIP_whether.png new file mode 100644 index 0000000..e693ab9 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/VIP_whether.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/balance_bg.png b/unpackage/dist/build/app-plus/static/images/myInfo/balance_bg.png new file mode 100644 index 0000000..f8bc0f8 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/balance_bg.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/bookCoinHistoryImage.png b/unpackage/dist/build/app-plus/static/images/myInfo/bookCoinHistoryImage.png new file mode 100644 index 0000000..d814c0c Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/bookCoinHistoryImage.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/browsingHistoryImage.png b/unpackage/dist/build/app-plus/static/images/myInfo/browsingHistoryImage.png new file mode 100644 index 0000000..a3cf97f Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/browsingHistoryImage.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/default_sculpture.png b/unpackage/dist/build/app-plus/static/images/myInfo/default_sculpture.png new file mode 100644 index 0000000..2fc3738 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/default_sculpture.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/rechargeHistoryImage.png b/unpackage/dist/build/app-plus/static/images/myInfo/rechargeHistoryImage.png new file mode 100644 index 0000000..2eea72e Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/rechargeHistoryImage.png differ diff --git a/unpackage/dist/build/app-plus/static/images/myInfo/vip_tips_bg.png b/unpackage/dist/build/app-plus/static/images/myInfo/vip_tips_bg.png new file mode 100644 index 0000000..0753765 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/myInfo/vip_tips_bg.png differ diff --git a/unpackage/dist/build/app-plus/static/images/nav-bar_Vector.png b/unpackage/dist/build/app-plus/static/images/nav-bar_Vector.png new file mode 100644 index 0000000..a1a23e9 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/nav-bar_Vector.png differ diff --git a/unpackage/dist/build/app-plus/static/images/nav_bar_search.png b/unpackage/dist/build/app-plus/static/images/nav_bar_search.png new file mode 100644 index 0000000..613d121 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/nav_bar_search.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_333.png b/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_333.png new file mode 100644 index 0000000..fe85a21 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_333.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_ccd9e2.png b/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_ccd9e2.png new file mode 100644 index 0000000..4f46697 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_ccd9e2.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_f3efe.png b/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_f3efe.png new file mode 100644 index 0000000..5c929d7 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/bookshelf_f3efe.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/directory_333.png b/unpackage/dist/build/app-plus/static/images/novelReading/directory_333.png new file mode 100644 index 0000000..3302f8a Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/directory_333.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/directory_ccd9e2.png b/unpackage/dist/build/app-plus/static/images/novelReading/directory_ccd9e2.png new file mode 100644 index 0000000..df24cec Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/directory_ccd9e2.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/directory_f3efe9.png b/unpackage/dist/build/app-plus/static/images/novelReading/directory_f3efe9.png new file mode 100644 index 0000000..a295694 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/directory_f3efe9.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/set_up_mode_black.png b/unpackage/dist/build/app-plus/static/images/novelReading/set_up_mode_black.png new file mode 100644 index 0000000..6029cf3 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/set_up_mode_black.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/step_up_333.png b/unpackage/dist/build/app-plus/static/images/novelReading/step_up_333.png new file mode 100644 index 0000000..c499215 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/step_up_333.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/step_up_ccd9e2.png b/unpackage/dist/build/app-plus/static/images/novelReading/step_up_ccd9e2.png new file mode 100644 index 0000000..f13d74e Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/step_up_ccd9e2.png differ diff --git a/unpackage/dist/build/app-plus/static/images/novelReading/step_up_f3efe.png b/unpackage/dist/build/app-plus/static/images/novelReading/step_up_f3efe.png new file mode 100644 index 0000000..934cd77 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/novelReading/step_up_f3efe.png differ diff --git a/unpackage/dist/build/app-plus/static/images/readingRecords_add.png b/unpackage/dist/build/app-plus/static/images/readingRecords_add.png new file mode 100644 index 0000000..3344076 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/readingRecords_add.png differ diff --git a/unpackage/dist/build/app-plus/static/images/readingRecords_add_sdelete.png b/unpackage/dist/build/app-plus/static/images/readingRecords_add_sdelete.png new file mode 100644 index 0000000..d6fa094 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/readingRecords_add_sdelete.png differ diff --git a/unpackage/dist/build/app-plus/static/images/readingRecords_book.png b/unpackage/dist/build/app-plus/static/images/readingRecords_book.png new file mode 100644 index 0000000..bfc442d Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/readingRecords_book.png differ diff --git a/unpackage/dist/build/app-plus/static/images/readingRecords_have.png b/unpackage/dist/build/app-plus/static/images/readingRecords_have.png new file mode 100644 index 0000000..02d3d59 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/readingRecords_have.png differ diff --git a/unpackage/dist/build/app-plus/static/images/recharge_empty.png b/unpackage/dist/build/app-plus/static/images/recharge_empty.png new file mode 100644 index 0000000..5356b26 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/recharge_empty.png differ diff --git a/unpackage/dist/build/app-plus/static/images/search_empty.png b/unpackage/dist/build/app-plus/static/images/search_empty.png new file mode 100644 index 0000000..71793ee Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/search_empty.png differ diff --git a/unpackage/dist/build/app-plus/static/images/signInBookCurrency_header_bag.png b/unpackage/dist/build/app-plus/static/images/signInBookCurrency_header_bag.png new file mode 100644 index 0000000..1102674 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/signInBookCurrency_header_bag.png differ diff --git a/unpackage/dist/build/app-plus/static/images/sign_in_calendar.png b/unpackage/dist/build/app-plus/static/images/sign_in_calendar.png new file mode 100644 index 0000000..42c6792 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/sign_in_calendar.png differ diff --git a/unpackage/dist/build/app-plus/static/images/sign_in_success.png b/unpackage/dist/build/app-plus/static/images/sign_in_success.png new file mode 100644 index 0000000..861d08b Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/sign_in_success.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/bookCity.png b/unpackage/dist/build/app-plus/static/images/tabbar/bookCity.png new file mode 100644 index 0000000..fb70ec2 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/bookCity.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/bookCityActive.png b/unpackage/dist/build/app-plus/static/images/tabbar/bookCityActive.png new file mode 100644 index 0000000..7e693df Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/bookCityActive.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/bookshelf.png b/unpackage/dist/build/app-plus/static/images/tabbar/bookshelf.png new file mode 100644 index 0000000..84fcca4 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/bookshelf.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/bookshelfActive.png b/unpackage/dist/build/app-plus/static/images/tabbar/bookshelfActive.png new file mode 100644 index 0000000..0f22fdd Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/bookshelfActive.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/classification.png b/unpackage/dist/build/app-plus/static/images/tabbar/classification.png new file mode 100644 index 0000000..23981eb Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/classification.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/classificationActive.png b/unpackage/dist/build/app-plus/static/images/tabbar/classificationActive.png new file mode 100644 index 0000000..73b1677 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/classificationActive.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/myInfo.png b/unpackage/dist/build/app-plus/static/images/tabbar/myInfo.png new file mode 100644 index 0000000..b2a5f65 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/myInfo.png differ diff --git a/unpackage/dist/build/app-plus/static/images/tabbar/myInfoActive.png b/unpackage/dist/build/app-plus/static/images/tabbar/myInfoActive.png new file mode 100644 index 0000000..7e0ffb1 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/images/tabbar/myInfoActive.png differ diff --git a/unpackage/dist/build/app-plus/static/logo.png b/unpackage/dist/build/app-plus/static/logo.png new file mode 100644 index 0000000..b5771e2 Binary files /dev/null and b/unpackage/dist/build/app-plus/static/logo.png differ diff --git a/unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf b/unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf new file mode 100644 index 0000000..835f33b Binary files /dev/null and b/unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf differ diff --git a/unpackage/dist/build/app-plus/uni_modules/yingbing-ReadPage/hybrid/html/js/uni-webview-js@1.5.4.js b/unpackage/dist/build/app-plus/uni_modules/yingbing-ReadPage/hybrid/html/js/uni-webview-js@1.5.4.js new file mode 100644 index 0000000..328b91e --- /dev/null +++ b/unpackage/dist/build/app-plus/uni_modules/yingbing-ReadPage/hybrid/html/js/uni-webview-js@1.5.4.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e=e||self).uni=n()}(this,(function(){"use strict";try{var e={};Object.defineProperty(e,"passive",{get:function(){!0}}),window.addEventListener("test-passive",null,e)}catch(e){}var n=Object.prototype.hasOwnProperty;function i(e,i){return n.call(e,i)}var t=[];function r(){return window.__dcloud_weex_postMessage||window.__dcloud_weex_}var o=function(e,n){var i={options:{timestamp:+new Date},name:e,arg:n};if(r()){if("postMessage"===e){var o={data:[n]};return window.__dcloud_weex_postMessage?window.__dcloud_weex_postMessage(o):window.__dcloud_weex_.postMessage(JSON.stringify(o))}var a={type:"WEB_INVOKE_APPSERVICE",args:{data:i,webviewIds:t}};window.__dcloud_weex_postMessage?window.__dcloud_weex_postMessageToService(a):window.__dcloud_weex_.postMessageToService(JSON.stringify(a))}if(!window.plus)return window.parent.postMessage({type:"WEB_INVOKE_APPSERVICE",data:i,pageId:""},"*");if(0===t.length){var d=plus.webview.currentWebview();if(!d)throw new Error("plus.webview.currentWebview() is undefined");var s=d.parent(),w="";w=s?s.id:d.id,t.push(w)}if(plus.webview.getWebviewById("__uniapp__service"))plus.webview.postMessageToUniNView({type:"WEB_INVOKE_APPSERVICE",args:{data:i,webviewIds:t}},"__uniapp__service");else{var u=JSON.stringify(i);plus.webview.getLaunchWebview().evalJS('UniPlusBridge.subscribeHandler("'.concat("WEB_INVOKE_APPSERVICE",'",').concat(u,",").concat(JSON.stringify(t),");"))}},a={navigateTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;o("navigateTo",{url:encodeURI(n)})},navigateBack:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.delta;o("navigateBack",{delta:parseInt(n)||1})},switchTab:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;o("switchTab",{url:encodeURI(n)})},reLaunch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;o("reLaunch",{url:encodeURI(n)})},redirectTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;o("redirectTo",{url:encodeURI(n)})},getEnv:function(e){r()?e({nvue:!0}):window.plus?e({plus:!0}):e({h5:!0})},postMessage:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};o("postMessage",e.data||{})}},d=/uni-app/i.test(navigator.userAgent),s=/Html5Plus/i.test(navigator.userAgent),w=/complete|loaded|interactive/;var u=window.my&&navigator.userAgent.indexOf(["t","n","e","i","l","C","y","a","p","i","l","A"].reverse().join(""))>-1;var g=window.swan&&window.swan.webView&&/swan/i.test(navigator.userAgent);var v=window.qq&&window.qq.miniProgram&&/QQ/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var c=window.tt&&window.tt.miniProgram&&/toutiaomicroapp/i.test(navigator.userAgent);var m=window.wx&&window.wx.miniProgram&&/micromessenger/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var p=window.qa&&/quickapp/i.test(navigator.userAgent);var f=window.ks&&window.ks.miniProgram&&/micromessenger/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var l=window.tt&&window.tt.miniProgram&&/Lark|Feishu/i.test(navigator.userAgent);var _=window.jd&&window.jd.miniProgram&&/micromessenger/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var E=window.xhs&&window.xhs.miniProgram&&/xhsminiapp/i.test(navigator.userAgent);for(var h,P=function(){window.UniAppJSBridge=!0,document.dispatchEvent(new CustomEvent("UniAppJSBridgeReady",{bubbles:!0,cancelable:!0}))},b=[function(e){if(d||s)return window.__dcloud_weex_postMessage||window.__dcloud_weex_?document.addEventListener("DOMContentLoaded",e):window.plus&&w.test(document.readyState)?setTimeout(e,0):document.addEventListener("plusready",e),a},function(e){if(m)return window.WeixinJSBridge&&window.WeixinJSBridge.invoke?setTimeout(e,0):document.addEventListener("WeixinJSBridgeReady",e),window.wx.miniProgram},function(e){if(v)return window.QQJSBridge&&window.QQJSBridge.invoke?setTimeout(e,0):document.addEventListener("QQJSBridgeReady",e),window.qq.miniProgram},function(e){if(u){document.addEventListener("DOMContentLoaded",e);var n=window.my;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){if(g)return document.addEventListener("DOMContentLoaded",e),window.swan.webView},function(e){if(c)return document.addEventListener("DOMContentLoaded",e),window.tt.miniProgram},function(e){if(p){window.QaJSBridge&&window.QaJSBridge.invoke?setTimeout(e,0):document.addEventListener("QaJSBridgeReady",e);var n=window.qa;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){if(f)return window.WeixinJSBridge&&window.WeixinJSBridge.invoke?setTimeout(e,0):document.addEventListener("WeixinJSBridgeReady",e),window.ks.miniProgram},function(e){if(l)return document.addEventListener("DOMContentLoaded",e),window.tt.miniProgram},function(e){if(_)return window.JDJSBridgeReady&&window.JDJSBridgeReady.invoke?setTimeout(e,0):document.addEventListener("JDJSBridgeReady",e),window.jd.miniProgram},function(e){if(E)return window.xhs.miniProgram},function(e){return document.addEventListener("DOMContentLoaded",e),a}],y=0;y + + + 富文本展示 + + + +

+ + + + \ No newline at end of file diff --git a/unpackage/dist/build/app-plus/view.css b/unpackage/dist/build/app-plus/view.css new file mode 100644 index 0000000..532c0e1 --- /dev/null +++ b/unpackage/dist/build/app-plus/view.css @@ -0,0 +1 @@ +*{margin:0;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}input[type=search]::-webkit-search-cancel-button{display:none}@font-face{font-weight:400;font-style:normal;font-family:uni;src:url("data:application/octet-stream;base64,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") format("truetype")}@font-face{font-weight:400;font-style:normal;font-family:unibtn;src:url("data:application/octet-stream;base64,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") format("truetype")}body,html{-webkit-user-select:none;user-select:none;width:100%}html{height:100%;height:100vh;width:100%;width:100vw}body{overflow-x:hidden;background-color:#fff}[class*=" uni-icon-"],[class^=uni-icon-]{display:inline-block;vertical-align:middle;font:normal normal normal 14px/1 uni;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}[class*=" uni-btn-icon"],[class^=uni-btn-icon]{display:inline-block;font:normal normal normal 14px/1 unibtn;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}[class*=" uni-btn-icon"]:before,[class^=uni-btn-icon]:before{margin:0;box-sizing:border-box}.uni-icon-success-no-circle:before{content:"\EA08"}.uni-icon-error:before{content:"\EA0B"}.uni-loading,uni-button[loading]:before{background:rgba(0,0,0,0) url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=") no-repeat}.uni-loading{width:20px;height:20px;display:inline-block;vertical-align:middle;-webkit-animation:uni-loading 1s steps(12) infinite;animation:uni-loading 1s steps(12) infinite;background-size:100%}@-webkit-keyframes uni-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes uni-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}[nvue] uni-scroll-view,[nvue] uni-swiper-item,[nvue] uni-view{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0;-webkit-flex-basis:auto;flex-basis:auto;-webkit-box-align:stretch;-webkit-align-items:stretch;align-items:stretch;-webkit-align-content:flex-start;align-content:flex-start}[nvue] uni-button{margin:0}[nvue-dir-row] uni-label,[nvue-dir-row] uni-swiper-item,[nvue-dir-row] uni-view{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row}[nvue-dir-column] uni-label,[nvue-dir-column] uni-swiper-item,[nvue-dir-column] uni-view{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}[nvue-dir-row-reverse] uni-label,[nvue-dir-row-reverse] uni-swiper-item,[nvue-dir-row-reverse] uni-view{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}[nvue-dir-column-reverse] uni-label,[nvue-dir-column-reverse] uni-swiper-item,[nvue-dir-column-reverse] uni-view{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}[nvue] uni-image,[nvue] uni-input,[nvue] uni-scroll-view,[nvue] uni-swiper,[nvue] uni-swiper-item,[nvue] uni-text,[nvue] uni-textarea,[nvue] uni-video,[nvue] uni-view{position:relative;border:0 solid #000;box-sizing:border-box}[nvue] uni-swiper-item{position:absolute}html{--UI-BG:#fff;--UI-BG-1:#f7f7f7;--UI-BG-2:#fff;--UI-BG-3:#f7f7f7;--UI-BG-4:#4c4c4c;--UI-BG-5:#fff;--UI-FG:#000;--UI-FG-0:rgba(0,0,0,0.9);--UI-FG-HALF:rgba(0,0,0,0.9);--UI-FG-1:rgba(0,0,0,0.5);--UI-FG-2:rgba(0,0,0,0.3);--UI-FG-3:rgba(0,0,0,0.1)}@media (prefers-color-scheme:dark){html{--UI-BG-CLOLOR-ACTIVE:#373737;--UI-BORDER-CLOLOR-1:#373737;--UI-BG:#000;--UI-BG-0:#191919;--UI-BG-1:#1f1f1f;--UI-BG-2:#232323;--UI-BG-3:#2f2f2f;--UI-BG-4:#606060;--UI-BG-5:#2c2c2c;--UI-FG:#fff;--UI-FG-0:hsla(0,0%,100%,0.8);--UI-FG-HALF:hsla(0,0%,100%,0.6);--UI-FG-1:hsla(0,0%,100%,0.5);--UI-FG-2:hsla(0,0%,100%,0.3);--UI-FG-3:hsla(0,0%,100%,0.05)}body{background-color:var(--UI-BG-0);color:var(--UI-FG-0)}}uni-audio{display:none}uni-audio[controls]{display:inline-block}uni-audio[hidden]{display:none}.uni-audio-default{max-width:100%;min-width:302px;height:65px;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:2.5px;display:inline-block;overflow:hidden}.uni-audio-left{width:65px;height:65px;float:left;background-color:#e6e6e6;background-size:100% 100%;background-position:50% 50%}.uni-audio-button{width:24px;height:24px;margin:20.5px;background-size:cover}.uni-audio-button.play{background-image:url(data:image/png;base64,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)}.uni-audio-button.pause{background-image:url(data:image/png;base64,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)}.uni-audio-right{box-sizing:border-box;height:65px;margin-left:65px;padding:11px 16.5px 13.5px 15px;overflow:hidden}.uni-audio-time{margin-top:3.5px;height:16.5px;font-size:12px;color:#888;float:right}.uni-audio-info{margin-right:70px;overflow:hidden}.uni-audio-name{height:22.5px;line-height:22.5px;margin-bottom:3.5px;font-size:14px;color:#353535}.uni-audio-author,.uni-audio-name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uni-audio-author{height:14.5px;line-height:14.5px;font-size:12px;color:#888}uni-button{position:relative;display:block;margin-left:auto;margin-right:auto;padding-left:14px;padding-right:14px;box-sizing:border-box;font-size:18px;text-align:center;text-decoration:none;line-height:2.55555556;border-radius:5px;-webkit-tap-highlight-color:transparent;overflow:hidden;color:#000;background-color:#f8f8f8;cursor:pointer}uni-button[hidden]{display:none!important}uni-button:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border:1px solid rgba(0,0,0,.2);-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0;box-sizing:border-box;border-radius:10px}uni-button[native]{padding-left:0;padding-right:0}uni-button[native] .uni-button-cover-view-wrapper{border:inherit;border-color:inherit;border-radius:inherit;background-color:inherit}uni-button[native] .uni-button-cover-view-inner{padding-left:14px;padding-right:14px}uni-button uni-cover-view{line-height:inherit;white-space:inherit}uni-button[type=default]{color:#000;background-color:#f8f8f8}uni-button[type=primary]{color:#fff;background-color:#007aff}uni-button[type=warn]{color:#fff;background-color:#e64340}uni-button[disabled]{color:hsla(0,0%,100%,.6);cursor:not-allowed}uni-button[disabled]:not([type]),uni-button[disabled][type=default]{color:rgba(0,0,0,.3);background-color:#f7f7f7}uni-button[disabled][type=primary]{background-color:rgba(0,122,255,.6)}uni-button[disabled][type=warn]{background-color:#ec8b89}uni-button[type=primary][plain]{color:#007aff;border:1px solid #007aff;background-color:rgba(0,0,0,0)}uni-button[type=primary][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=primary][plain]:after{border-width:0}uni-button[type=default][plain]{color:#353535;border:1px solid #353535;background-color:rgba(0,0,0,0)}uni-button[type=default][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=default][plain]:after{border-width:0}uni-button[plain]{color:#353535;border:1px solid #353535;background-color:rgba(0,0,0,0)}uni-button[plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[plain]:after{border-width:0}uni-button[plain][native] .uni-button-cover-view-inner{padding:0}uni-button[type=warn][plain]{color:#e64340;border:1px solid #e64340;background-color:rgba(0,0,0,0)}uni-button[type=warn][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=warn][plain]:after{border-width:0}uni-button[size=mini]{display:inline-block;line-height:2.3;font-size:13px;padding:0 1.34em}uni-button[size=mini][native]{padding:0}uni-button[size=mini][native] .uni-button-cover-view-inner{padding:0 1.34em}uni-button[loading]:not([disabled]){cursor:progress}uni-button[loading]:before{content:" ";display:inline-block;width:18px;height:18px;vertical-align:middle;-webkit-animation:uni-loading 1s steps(12) infinite;animation:uni-loading 1s steps(12) infinite;background-size:100%}uni-button[loading][type=primary]{color:hsla(0,0%,100%,.6);background-color:#0062cc}uni-button[loading][type=primary][plain]{color:#007aff;background-color:rgba(0,0,0,0)}uni-button[loading][type=default]{color:rgba(0,0,0,.6);background-color:#dedede}uni-button[loading][type=default][plain]{color:#353535;background-color:rgba(0,0,0,0)}uni-button[loading][type=warn]{color:hsla(0,0%,100%,.6);background-color:#ce3c39}uni-button[loading][type=warn][plain]{color:#e64340;background-color:rgba(0,0,0,0)}uni-button[loading][native]:before{content:none}.button-hover{color:rgba(0,0,0,.6);background-color:#dedede}.button-hover[plain]{color:rgba(53,53,53,.6);border-color:rgba(53,53,53,.6);background-color:rgba(0,0,0,0)}.button-hover[type=primary]{color:hsla(0,0%,100%,.6);background-color:#0062cc}.button-hover[type=primary][plain]{color:rgba(0,122,255,.6);border-color:rgba(0,122,255,.6);background-color:rgba(0,0,0,0)}.button-hover[type=default]{color:rgba(0,0,0,.6);background-color:#dedede}.button-hover[type=default][plain]{color:rgba(53,53,53,.6);border-color:rgba(53,53,53,.6);background-color:rgba(0,0,0,0)}.button-hover[type=warn]{color:hsla(0,0%,100%,.6);background-color:#ce3c39}.button-hover[type=warn][plain]{color:rgba(230,67,64,.6);border-color:rgba(230,67,64,.6);background-color:rgba(0,0,0,0)}@media (prefers-color-scheme:dark){uni-button,uni-button[type=default]{color:#d6d6d6;background-color:#343434}.button-hover,.button-hover[type=default]{color:#d6d6d6;background-color:hsla(0,0%,100%,.1)}uni-button[disabled]:not([type]),uni-button[disabled][type=default]{color:hsla(0,0%,100%,.2);background-color:hsla(0,0%,100%,.08)}uni-button[type=primary][plain][disabled]{color:hsla(0,0%,100%,.2);border-color:hsla(0,0%,100%,.2)}uni-button[type=default][plain]{color:#d6d6d6;border:1px solid #d6d6d6}.button-hover[type=default][plain]{color:hsla(0,0%,58.8%,.6);border-color:hsla(0,0%,58.8%,.6);background-color:rgba(50,50,50,.2)}uni-button[type=default][plain][disabled]{border-color:hsla(0,0%,100%,.2);color:hsla(0,0%,100%,.2)}}uni-canvas{width:300px;height:150px;display:block;position:relative}uni-canvas>canvas{position:absolute;top:0;left:0;width:100%;height:100%}uni-checkbox-group[hidden]{display:none}uni-checkbox{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-checkbox[hidden]{display:none}uni-checkbox[disabled]{cursor:not-allowed}uni-checkbox .uni-checkbox-wrapper{display:-webkit-inline-flex;display:-webkit-inline-box;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;align-items:center;vertical-align:middle}uni-checkbox .uni-checkbox-input{margin-right:5px;-webkit-appearance:none;appearance:none;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:22px;height:22px;position:relative}uni-checkbox:not([disabled]) .uni-checkbox-input:hover{border-color:#007aff}uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked{color:#007aff}uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked:before{font:normal normal normal 14px/1 uni;content:"\EA08";font-size:22px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73);-webkit-transform:translate(-50%,-48%) scale(.73)}uni-checkbox .uni-checkbox-input.uni-checkbox-input-disabled{background-color:#e1e1e1}uni-checkbox .uni-checkbox-input.uni-checkbox-input-disabled:before{color:#adadad}uni-checkbox-group{display:block}.ql-container{display:block;position:relative;box-sizing:border-box;-webkit-user-select:text;user-select:text;outline:none;overflow:hidden;width:100%;height:200px;min-height:200px}.ql-container[hidden]{display:none}.ql-container .ql-editor{position:relative;font-size:inherit;line-height:inherit;font-family:inherit;min-height:inherit;width:100%;height:100%;padding:0;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-overflow-scrolling:touch}.ql-container .ql-editor::-webkit-scrollbar{width:0!important}.ql-container .ql-editor.scroll-disabled{overflow:hidden}.ql-container .ql-image-overlay{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;box-sizing:border-box;border:1px dashed #ccc;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-user-select:none;user-select:none}.ql-container .ql-image-overlay .ql-image-size{position:absolute;padding:4px 8px;text-align:center;background-color:#fff;color:#888;border:1px solid #ccc;box-sizing:border-box;opacity:.8;right:4px;top:4px;font-size:12px;display:inline-block;width:auto}.ql-container .ql-image-overlay .ql-image-toolbar{position:relative;text-align:center;box-sizing:border-box;background:#000;border-radius:5px;color:#fff;font-size:0;min-height:24px;z-index:100}.ql-container .ql-image-overlay .ql-image-toolbar span{display:inline-block;cursor:pointer;padding:5px;font-size:12px;border-right:1px solid #fff}.ql-container .ql-image-overlay .ql-image-toolbar span:last-child{border-right:0}.ql-container .ql-image-overlay .ql-image-toolbar span.triangle-up{padding:0;position:absolute;top:-12px;left:50%;-webkit-transform:translatex(-50%);transform:translatex(-50%);width:0;height:0;border-width:6px;border-style:solid;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #000 rgba(0,0,0,0)}.ql-container .ql-image-overlay .ql-image-handle{position:absolute;height:12px;width:12px;border-radius:50%;border:1px solid #ccc;box-sizing:border-box;background:#fff}.ql-container img{display:inline-block;max-width:100%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;height:100%;outline:none;overflow-y:auto;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:2em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl),.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:2em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:2em}.ql-editor .ql-indent-2:not(.ql-direction-rtl),.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:4em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:4em}.ql-editor .ql-indent-3:not(.ql-direction-rtl),.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:6em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor .ql-indent-4:not(.ql-direction-rtl),.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:8em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:8em}.ql-editor .ql-indent-5:not(.ql-direction-rtl),.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:10em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:10em}.ql-editor .ql-indent-6:not(.ql-direction-rtl),.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:12em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor .ql-indent-7:not(.ql-direction-rtl),.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:14em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:14em}.ql-editor .ql-indent-8:not(.ql-direction-rtl),.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:16em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:16em}.ql-editor .ql-indent-9:not(.ql-direction-rtl),.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:18em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;pointer-events:none;position:absolute}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}uni-icon{display:inline-block;font-size:0;box-sizing:border-box}uni-icon[hidden]{display:none}uni-icon>i{font:normal normal normal 14px/1 weui}uni-icon>i:before{margin:0;box-sizing:border-box}@font-face{font-weight:400;font-style:normal;font-family:weui;src:url("data:application/octet-stream;base64,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") format("truetype")}.uni-icon-success:before{content:"\EA06"}.uni-icon-success_circle:before{content:"\EA07"}.uni-icon-success_no_circle:before{content:"\EA08"}.uni-icon-safe_success:before{content:"\EA04"}.uni-icon-safe_warn:before{content:"\EA05"}.uni-icon-info:before{content:"\EA03"}.uni-icon-info_circle:before{content:"\EA0C"}.uni-icon-warn:before{content:"\EA0B"}.uni-icon-waiting:before{content:"\EA09"}.uni-icon-waiting_circle:before{content:"\EA0A"}.uni-icon-circle:before{content:"\EA01"}.uni-icon-cancel:before{content:"\EA0D"}.uni-icon-download:before{content:"\EA02"}.uni-icon-search:before{content:"\EA0E"}.uni-icon-clear:before{content:"\EA0F"}.uni-icon-safe_success,.uni-icon-success,.uni-icon-success_circle,.uni-icon-success_no_circle{color:#007aff}.uni-icon-safe_warn{color:#ffbe00}.uni-icon-info{color:#10aeff}.uni-icon-info_circle{color:#007aff}.uni-icon-warn{color:#f76260}.uni-icon-waiting,.uni-icon-waiting_circle{color:#10aeff}.uni-icon-circle{color:#c9c9c9}.uni-icon-cancel{color:#f43530}.uni-icon-download{color:#007aff}.uni-icon-clear,.uni-icon-search{color:#b2b2b2}uni-image{width:320px;height:240px;display:inline-block;overflow:hidden;position:relative}uni-image[hidden]{display:none}uni-image>div,uni-image>img{width:100%;height:100%}uni-image>img{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;display:block;position:absolute;top:0;left:0;opacity:0}uni-image>.uni-image-will-change{will-change:transform}uni-input{display:block;font-size:16px;line-height:1.4em;height:1.4em;min-height:1.4em;overflow:hidden}uni-input[hidden]{display:none}.uni-input-form,.uni-input-input,.uni-input-placeholder,.uni-input-wrapper{outline:none;border:none;padding:0;margin:0;text-decoration:inherit}.uni-input-form,.uni-input-wrapper{display:-webkit-box;display:-webkit-flex;display:flex;position:relative;width:100%;height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.uni-input-input,.uni-input-placeholder{width:100%}.uni-input-placeholder{position:absolute;top:auto!important;left:0;color:grey;overflow:hidden;text-overflow:clip;white-space:pre;word-break:keep-all;pointer-events:none;line-height:inherit}.uni-input-input{position:relative;display:block;height:100%;background:none;color:inherit;opacity:1;font:inherit;line-height:inherit;letter-spacing:inherit;text-align:inherit;text-indent:inherit;text-transform:inherit;text-shadow:inherit}.uni-input-input[type=search]::-webkit-search-cancel-button,.uni-input-input[type=search]::-webkit-search-decoration{display:none}.uni-input-input::-webkit-inner-spin-button,.uni-input-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.uni-input-input[type=number]{-moz-appearance:textfield}.uni-input-input:disabled{-webkit-text-fill-color:currentcolor}.uni-label-pointer{cursor:pointer}uni-movable-area{display:block;position:relative;width:10px;height:10px}uni-movable-area[hidden]{display:none}uni-movable-view{display:inline-block;width:10px;height:10px;top:0;left:0;position:absolute;cursor:grab}uni-movable-view[hidden]{display:none}uni-navigator{height:auto;width:auto;display:block;cursor:pointer}uni-navigator[hidden]{display:none}.navigator-hover{background-color:rgba(0,0,0,.1);opacity:.7}uni-picker-view-column{-webkit-flex:1;-webkit-box-flex:1;flex:1;position:relative;height:100%;overflow:hidden}uni-picker-view-column[hidden]{display:none}.uni-picker-view-group{height:100%;overflow:hidden}.uni-picker-view-mask{transform:translateZ(0);-webkit-transform:translateZ(0)}.uni-picker-view-indicator,.uni-picker-view-mask{position:absolute;left:0;width:100%;z-index:3;pointer-events:none}.uni-picker-view-mask{top:0;height:100%;margin:0 auto;background:-webkit-linear-gradient(top,hsla(0,0%,100%,.95),hsla(0,0%,100%,.6)),-webkit-linear-gradient(bottom,hsla(0,0%,100%,.95),hsla(0,0%,100%,.6));background:linear-gradient(180deg,hsla(0,0%,100%,.95),hsla(0,0%,100%,.6)),linear-gradient(0deg,hsla(0,0%,100%,.95),hsla(0,0%,100%,.6));background-position:top,bottom;background-size:100% 102px;background-repeat:no-repeat}.uni-picker-view-indicator{height:34px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.uni-picker-view-content{position:absolute;top:0;left:0;width:100%;will-change:transform;padding:102px 0;cursor:pointer}.uni-picker-view-content>*{height:34px;overflow:hidden}.uni-picker-view-indicator:before{top:0;border-top:1px solid #e5e5e5;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.uni-picker-view-indicator:after{bottom:0;border-bottom:1px solid #e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.uni-picker-view-indicator:after,.uni-picker-view-indicator:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#e5e5e5}@media (prefers-color-scheme:dark){.uni-picker-view-indicator:before{border-top-color:var(--UI-FG-3)}.uni-picker-view-indicator:after{border-bottom-color:var(--UI-FG-3)}.uni-picker-view-mask{background-image:-webkit-linear-gradient(top,rgba(35,35,35,.95),rgba(35,35,35,.6)),-webkit-linear-gradient(bottom,rgba(35,35,35,.95),rgba(35,35,35,.6));background-image:linear-gradient(180deg,rgba(35,35,35,.95),rgba(35,35,35,.6)),linear-gradient(0deg,rgba(35,35,35,.95),rgba(35,35,35,.6))}}uni-picker-view{display:block}uni-picker-view .uni-picker-view-wrapper{display:-webkit-box;display:-webkit-flex;display:flex;position:relative;overflow:hidden;height:100%}uni-picker-view[hidden]{display:none}uni-progress{display:-webkit-flex;display:-webkit-box;display:flex;-webkit-align-items:center;-webkit-box-align:center;align-items:center}uni-progress[hidden]{display:none}.uni-progress-bar{-webkit-flex:1;-webkit-box-flex:1;flex:1}.uni-progress-inner-bar{width:0;height:100%}.uni-progress-info{margin-top:0;margin-bottom:0;min-width:2em;margin-left:15px;font-size:16px}uni-radio-group[hidden]{display:none}uni-radio{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-radio[hidden]{display:none}uni-radio[disabled]{cursor:not-allowed}uni-radio .uni-radio-wrapper{display:-webkit-inline-flex;display:-webkit-inline-box;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;align-items:center;vertical-align:middle}uni-radio .uni-radio-input{-webkit-appearance:none;appearance:none;margin-right:5px;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:50%;width:22px;height:22px;position:relative}uni-radio:not([disabled]) .uni-radio-input:hover{border-color:#007aff}uni-radio .uni-radio-input.uni-radio-input-checked:before{font:normal normal normal 14px/1 uni;content:"\EA08";color:#fff;font-size:18px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73);-webkit-transform:translate(-50%,-48%) scale(.73)}uni-radio .uni-radio-input.uni-radio-input-disabled{background-color:#e1e1e1;border-color:#d1d1d1}uni-radio .uni-radio-input.uni-radio-input-disabled:before{color:#adadad}uni-radio-group{display:block}@-webkit-keyframes once-show{0%{top:0}}@keyframes once-show{0%{top:0}}uni-resize-sensor,uni-resize-sensor>div{position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden}uni-resize-sensor{display:block;z-index:-1;visibility:hidden;-webkit-animation:once-show 1ms;animation:once-show 1ms}uni-resize-sensor>div>div{position:absolute;left:0;top:0}uni-resize-sensor>div:first-child>div{width:100000px;height:100000px}uni-resize-sensor>div:last-child>div{width:200%;height:200%}uni-scroll-view{display:block;width:100%}uni-scroll-view[hidden]{display:none}.uni-scroll-view{position:relative;-webkit-overflow-scrolling:touch;max-height:inherit}.uni-scroll-view,.uni-scroll-view-content{width:100%;height:100%}.uni-scroll-view-refresher{position:relative;overflow:hidden}.uni-scroll-view-refresh{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row}.uni-scroll-view-refresh,.uni-scroll-view-refresh-inner{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.uni-scroll-view-refresh-inner{line-height:0;width:40px;height:40px;border-radius:50%;background-color:#fff;box-shadow:0 1px 6px rgba(0,0,0,.117647),0 1px 4px rgba(0,0,0,.117647)}.uni-scroll-view-refresh__spinner{-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation:uni-scroll-view-refresh-rotate 2s linear infinite;animation:uni-scroll-view-refresh-rotate 2s linear infinite}.uni-scroll-view-refresh__spinner>circle{stroke:currentColor;stroke-linecap:round;-webkit-animation:uni-scroll-view-refresh-dash 2s linear infinite;animation:uni-scroll-view-refresh-dash 2s linear infinite}@-webkit-keyframes uni-scroll-view-refresh-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes uni-scroll-view-refresh-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes uni-scroll-view-refresh-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes uni-scroll-view-refresh-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}uni-slider{margin:10px 18px;padding:0;display:block}uni-slider[hidden]{display:none}uni-slider .uni-slider-wrapper{display:-webkit-flex;display:-webkit-box;display:flex;-webkit-align-items:center;-webkit-box-align:center;align-items:center;min-height:16px}uni-slider .uni-slider-tap-area{-webkit-flex:1;-webkit-box-flex:1;flex:1;padding:8px 0}uni-slider .uni-slider-handle-wrapper{position:relative;height:2px;border-radius:5px;background-color:#e9e9e9;cursor:pointer;-webkit-tap-highlight-color:transparent}uni-slider .uni-slider-handle-wrapper,uni-slider .uni-slider-track{-webkit-transition:background-color .3s ease;transition:background-color .3s ease}uni-slider .uni-slider-track{height:100%;border-radius:6px;background-color:#007aff}uni-slider .uni-slider-handle,uni-slider .uni-slider-thumb{position:absolute;left:50%;top:50%;cursor:pointer;border-radius:50%;-webkit-transition:border-color .3s ease;transition:border-color .3s ease}uni-slider .uni-slider-handle{width:28px;height:28px;margin-top:-14px;margin-left:-14px;background-color:rgba(0,0,0,0);z-index:3;cursor:grab}uni-slider .uni-slider-thumb{z-index:2;box-shadow:0 0 4px rgba(0,0,0,.2)}uni-slider .uni-slider-step{position:absolute;width:100%;height:2px;background:rgba(0,0,0,0);z-index:1}uni-slider .uni-slider-value{width:3ch;color:#888;font-size:14px;margin-left:1em}uni-slider .uni-slider-disabled .uni-slider-track{background-color:#ccc}uni-slider .uni-slider-disabled .uni-slider-thumb{background-color:#fff;border-color:#ccc}uni-swiper-item{display:block;overflow:hidden;will-change:transform;position:absolute;width:100%;height:100%;cursor:grab}uni-swiper-item[hidden]{display:none}uni-swiper{display:block;height:150px}uni-swiper[hidden]{display:none}uni-swiper .uni-swiper-wrapper{overflow:hidden;position:relative;width:100%;height:100%;-webkit-transform:translateZ(0);transform:translateZ(0)}uni-swiper .uni-swiper-slides{position:absolute;left:0;top:0;right:0;bottom:0}uni-swiper .uni-swiper-slide-frame{position:absolute;left:0;top:0;width:100%;height:100%;will-change:transform}uni-swiper .uni-swiper-dots{position:absolute;font-size:0}uni-swiper .uni-swiper-dots-horizontal{left:50%;bottom:10px;text-align:center;white-space:nowrap;-webkit-transform:translate(-50%);transform:translate(-50%)}uni-swiper .uni-swiper-dots-horizontal .uni-swiper-dot{margin-right:8px}uni-swiper .uni-swiper-dots-horizontal .uni-swiper-dot:last-child{margin-right:0}uni-swiper .uni-swiper-dots-vertical{right:10px;top:50%;text-align:right;-webkit-transform:translateY(-50%);transform:translateY(-50%)}uni-swiper .uni-swiper-dots-vertical .uni-swiper-dot{display:block;margin-bottom:9px}uni-swiper .uni-swiper-dots-vertical .uni-swiper-dot:last-child{margin-bottom:0}uni-swiper .uni-swiper-dot{display:inline-block;width:8px;height:8px;cursor:pointer;-webkit-transition-property:background-color;transition-property:background-color;-webkit-transition-timing-function:ease;transition-timing-function:ease;background:rgba(0,0,0,.3);border-radius:50%}uni-swiper .uni-swiper-dot-active{background-color:#000}uni-swiper .uni-swiper-navigation{width:26px;height:26px;cursor:pointer;position:absolute;top:50%;margin-top:-13px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-transition:all .2s;transition:all .2s;border-radius:50%;opacity:1}uni-swiper .uni-swiper-navigation-disabled{opacity:.35;cursor:not-allowed}uni-swiper .uni-swiper-navigation-hide{opacity:0;cursor:auto;pointer-events:none}uni-swiper .uni-swiper-navigation-prev{left:10px}uni-swiper .uni-swiper-navigation-prev i{margin-left:-1px;left:10px}uni-swiper .uni-swiper-navigation-prev.uni-swiper-navigation-vertical{top:18px;left:50%;margin-left:-13px}uni-swiper .uni-swiper-navigation-prev.uni-swiper-navigation-vertical i{-webkit-transform:rotate(90deg);transform:rotate(90deg);margin-left:auto;margin-top:-2px}uni-swiper .uni-swiper-navigation-next{right:10px}uni-swiper .uni-swiper-navigation-next i{-webkit-transform:rotate(180deg);transform:rotate(180deg)}uni-swiper .uni-swiper-navigation-next.uni-swiper-navigation-vertical{top:auto;bottom:5px;left:50%;margin-left:-13px}uni-swiper .uni-swiper-navigation-next.uni-swiper-navigation-vertical i{margin-top:2px;-webkit-transform:rotate(270deg);transform:rotate(270deg)}uni-switch{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-switch[hidden]{display:none}uni-switch[disabled]{cursor:not-allowed}uni-switch .uni-switch-wrapper{display:-webkit-inline-flex;display:-webkit-inline-box;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;align-items:center;vertical-align:middle}uni-switch .uni-switch-input{-webkit-appearance:none;appearance:none;position:relative;width:52px;height:32px;margin-right:5px;border:1px solid #dfdfdf;outline:0;border-radius:16px;box-sizing:border-box;background-color:#dfdfdf;-webkit-transition:background-color .1s,border .1s;transition:background-color .1s,border .1s}uni-switch[disabled] .uni-switch-input{opacity:.7}uni-switch .uni-switch-input:before{width:50px;background-color:#fdfdfd}uni-switch .uni-switch-input:after,uni-switch .uni-switch-input:before{content:" ";position:absolute;top:0;left:0;height:30px;border-radius:15px;transition:-webkit-transform .3s;-webkit-transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}uni-switch .uni-switch-input:after{width:30px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4)}uni-switch .uni-switch-input.uni-switch-input-checked{border-color:#007aff;background-color:#007aff}uni-switch .uni-switch-input.uni-switch-input-checked:before{-webkit-transform:scale(0);transform:scale(0)}uni-switch .uni-switch-input.uni-switch-input-checked:after{-webkit-transform:translateX(20px);transform:translateX(20px)}uni-switch .uni-checkbox-input{margin-right:5px;-webkit-appearance:none;appearance:none;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:22px;height:22px;position:relative;color:#007aff}uni-switch:not([disabled]) .uni-checkbox-input:hover{border-color:#007aff}uni-switch .uni-checkbox-input.uni-checkbox-input-checked:before{font:normal normal normal 14px/1 uni;content:"\EA08";color:inherit;font-size:22px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73);-webkit-transform:translate(-50%,-48%) scale(.73)}uni-switch .uni-checkbox-input.uni-checkbox-input-disabled{background-color:#e1e1e1}uni-switch .uni-checkbox-input.uni-checkbox-input-disabled:before{color:#adadad}@media (prefers-color-scheme:dark){uni-switch .uni-switch-input{border-color:#3b3b3f}uni-switch .uni-switch-input,uni-switch .uni-switch-input:before{background-color:#3b3b3f}uni-switch .uni-switch-input:after{background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4)}uni-switch .uni-checkbox-input{background-color:#2c2c2c;border:1px solid #656565}}uni-text[selectable]{cursor:auto;user-select:text;-webkit-user-select:text}uni-textarea{width:300px;height:150px;display:block;position:relative;font-size:16px;line-height:normal;white-space:pre-wrap;word-break:break-all}uni-textarea[hidden]{display:none}.uni-textarea-compute,.uni-textarea-line,.uni-textarea-placeholder,.uni-textarea-textarea,.uni-textarea-wrapper{outline:none;border:none;padding:0;margin:0;text-decoration:inherit}.uni-textarea-wrapper{display:block;position:relative;width:100%;height:100%;min-height:inherit;overflow-y:hidden}.uni-textarea-compute,.uni-textarea-line,.uni-textarea-placeholder,.uni-textarea-textarea{position:absolute;width:100%;height:100%;left:0;top:0;white-space:inherit;word-break:inherit}.uni-textarea-placeholder{color:grey;overflow:hidden}.uni-textarea-compute,.uni-textarea-line{visibility:hidden;height:auto}.uni-textarea-line{width:1em}.uni-textarea-textarea{resize:none;background:none;color:inherit;opacity:1;font:inherit;line-height:inherit;letter-spacing:inherit;text-align:inherit;text-indent:inherit;text-transform:inherit;text-shadow:inherit}.uni-textarea-textarea-fix-margin{width:auto;right:0;margin:0 -3px}.uni-textarea-textarea:disabled{-webkit-text-fill-color:currentcolor}uni-ad{display:block;overflow:hidden}uni-ad[hidden]{display:none}uni-ad .uni-ad-container{width:100%;min-height:1px}uni-cover-image{display:block;line-height:1.2;overflow:hidden;height:100%;width:100%;pointer-events:auto}uni-cover-image[hidden]{display:none}uni-cover-image .uni-cover-image{width:100%;height:100%}uni-cover-view{display:block;line-height:1.2;overflow:hidden;white-space:nowrap;pointer-events:auto}uni-cover-view[hidden]{display:none}uni-cover-view .uni-cover-view{width:100%;height:100%;visibility:hidden;text-overflow:inherit;overflow:hidden;white-space:inherit;-webkit-align-items:inherit;-webkit-box-align:inherit;align-items:inherit;-webkit-justify-content:inherit;-webkit-box-pack:inherit;justify-content:inherit;-webkit-flex-direction:inherit;-webkit-box-orient:inherit;-webkit-box-direction:inherit;flex-direction:inherit;-webkit-flex-wrap:inherit;flex-wrap:inherit;display:inherit;overflow:inherit}uni-live-pusher{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-live-pusher[hidden]{display:none}.uni-live-pusher-container{left:0;background-color:#000}.uni-live-pusher-container,.uni-live-pusher-slot{width:100%;height:100%;position:absolute;top:0;overflow:hidden}.uni-live-pusher-slot{pointer-events:none}uni-map{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-map[hidden]{display:none}.uni-map-container{left:0;background-color:rgba(0,0,0,0)}.uni-map-container,.uni-map-slot{width:100%;height:100%;position:absolute;top:0;overflow:hidden}.uni-map-slot{pointer-events:none}uni-picker{display:block}uni-video{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-video[hidden]{display:none}.uni-video-container{left:0;background-color:#000}.uni-video-container,.uni-video-slot{width:100%;height:100%;position:absolute;top:0;overflow:hidden}.uni-video-slot{pointer-events:none}uni-view{display:block}uni-view[hidden]{display:none}uni-web-view{position:absolute;left:0;right:0;top:0;bottom:0} \ No newline at end of file diff --git a/unpackage/dist/build/app-plus/view.umd.min.js b/unpackage/dist/build/app-plus/view.umd.min.js new file mode 100644 index 0000000..f9bb4c9 --- /dev/null +++ b/unpackage/dist/build/app-plus/view.umd.min.js @@ -0,0 +1,6 @@ +(function(t,e){"object"===typeof exports&&"object"===typeof module?module.exports=e():"function"===typeof define&&define.amd?define([],e):"object"===typeof exports?exports["uni"]=e():t["uni"]=e()})("undefined"!==typeof self?self:this,(function(){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="fae3")}({"0094":function(t,e,n){"use strict";n.r(e);var i=n("f2b3"),r=n("c4c5");function o(t,e,n){return o="undefined"!==typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var i=a(t,e);if(i){var r=Object.getOwnPropertyDescriptor(i,e);return r.get?r.get.call(n):r.value}},o(t,e,n||t)}function a(t,e){while(!Object.prototype.hasOwnProperty.call(t,e))if(t=y(t),null===t)break;return t}function s(t){var e="function"===typeof Map?new Map:void 0;return s=function(t){if(null===t||!u(t))return t;if("function"!==typeof t)throw new TypeError("Super expression must either be null or a function");if("undefined"!==typeof e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return c(t,arguments,y(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),v(n,t)},s(t)}function c(t,e,n){return c=b()?Reflect.construct:function(t,e,n){var i=[null];i.push.apply(i,e);var r=Function.bind.apply(t,i),o=new r;return n&&v(o,n.prototype),o},c.apply(null,arguments)}function u(t){return-1!==Function.toString.call(t).indexOf("[native code]")}function l(t){return l="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},l(t)}function h(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function d(t,e){for(var n=0;n1)){this.getAttribute("hover-stop-propagation")&&(t._hoverPropagationStopped=!0),this._hoverTouch=!0;var n=50,i=Number(this.getAttribute("hover-start-time")||n);this._hoverStartTimer=setTimeout((function(){e.hovering=!0,e._hoverTouch||e._hoverReset()}),isNaN(i)?n:i)}}},{key:"_hoverTouchEnd",value:function(){this._hoverTouch=!1,this.hovering&&this._hoverReset()}},{key:"_hoverReset",value:function(){var t=this;requestAnimationFrame((function(){clearTimeout(t._hoverStayTimer);var e=400,n=Number(t.getAttribute("hover-stay-time")||e);t._hoverStayTimer=setTimeout((function(){t.hovering=!1}),isNaN(n)?e:n)}))}},{key:"_hoverTouchCancel",value:function(){this._hoverTouch=!1,this.hovering=!1,clearTimeout(this._hoverStartTimer)}},{key:"hovering",get:function(){return this._hovering},set:function(t){this._hovering=t;var e=this.getAttribute("hover-class").split(" ").filter(Boolean),n=this.classList;t?n.add.apply(n,e):n.remove.apply(n,e)}}]),n}(F);function et(t){return et="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},et(t)}function nt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function it(t,e){if("function"!==typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&rt(t,e)}function rt(t,e){return rt=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},rt(t,e)}function ot(t){return function(){var e,n=ut(t);if(ct()){var i=ut(this).constructor;e=Reflect.construct(n,arguments,i)}else e=n.apply(this,arguments);return at(this,e)}}function at(t,e){return!e||"object"!==et(e)&&"function"!==typeof e?st(t):e}function st(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function ct(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function ut(t){return ut=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},ut(t)}var lt=function(t){it(n,t);var e=ot(n);function n(){return nt(this,n),e.apply(this,arguments)}return n}(tt);e["default"]={View:lt}},"010d":function(t,e,n){},"02b5":function(t,e,n){"use strict";var i=n("e5e5"),r=n.n(i);r.a},"02ed":function(t){t.exports=JSON.parse('{"uni.app.quit":"再按一次退出應用","uni.async.error":"連接服務器超時,點擊屏幕重試","uni.showActionSheet.cancel":"取消","uni.showToast.unpaired":"請注意 showToast 與 hideToast 必須配對使用","uni.showLoading.unpaired":"請注意 showLoading 與 hideLoading 必須配對使用","uni.showModal.cancel":"取消","uni.showModal.confirm":"確定","uni.chooseImage.cancel":"取消","uni.chooseImage.sourceType.album":"從相冊選擇","uni.chooseImage.sourceType.camera":"拍攝","uni.chooseVideo.cancel":"取消","uni.chooseVideo.sourceType.album":"從相冊選擇","uni.chooseVideo.sourceType.camera":"拍攝","uni.chooseFile.notUserActivation":"文件選擇器對話框只能在由用戶激活時顯示","uni.previewImage.cancel":"取消","uni.previewImage.button.save":"保存圖像","uni.previewImage.save.success":"保存圖像到相冊成功","uni.previewImage.save.fail":"保存圖像到相冊失敗","uni.setClipboardData.success":"內容已復制","uni.scanCode.title":"掃碼","uni.scanCode.album":"相冊","uni.scanCode.fail":"識別失敗","uni.scanCode.flash.on":"輕觸照亮","uni.scanCode.flash.off":"輕觸關閉","uni.startSoterAuthentication.authContent":"指紋識別中...","uni.startSoterAuthentication.waitingContent":"無法識別","uni.picker.done":"完成","uni.picker.cancel":"取消","uni.video.danmu":"彈幕","uni.video.volume":"音量","uni.button.feedback.title":"問題反饋","uni.button.feedback.send":"發送","uni.chooseLocation.search":"搜索地點","uni.chooseLocation.cancel":"取消"}')},"03df":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-web-view",t._g({},t.$listeners))},r=[],o=n("646c"),a=o["a"],s=(n("2df3"),n("0c7c")),c=Object(s["a"])(a,i,r,!1,null,null,null);e["default"]=c.exports},"0516":function(t,e,n){"use strict";(function(t,i){n.d(e,"a",(function(){return f}));var r=n("f2b3"),o=n("a6b0"),a=n("33ed"),s=n("2522"),c=n("a20d"),u=!!r["l"]&&{passive:!1};function l(e){var n=e.statusbarHeight,i=e.windowTop,r=e.windowBottom;if(t.__WINDOW_TOP=i,t.__WINDOW_BOTTOM=r,uni.canIUse("css.var")){var o=document.documentElement.style;o.setProperty("--window-left","0px"),o.setProperty("--window-right","0px"),o.setProperty("--window-top",i+"px"),o.setProperty("--window-bottom",r+"px"),o.setProperty("--status-bar-height",n+"px")}}function h(t,e){var n=t.locale,i=t.statusbarHeight,r=t.windowTop,s=t.windowBottom,c=t.disableScroll,h=t.onPageScroll,d=t.onPageReachBottom,f=t.onReachBottomDistance;Object(o["c"])(n),l({statusbarHeight:i,windowTop:r,windowBottom:s}),c?document.addEventListener("touchmove",a["b"],u):(h||d)&&requestAnimationFrame((function(){document.addEventListener("scroll",Object(a["a"])(e,{enablePageScroll:h,enablePageReachBottom:d,onReachBottomDistance:f}))}))}function d(){i.publishHandler("webviewReady")}function f(t){t(c["m"],d),t(s["a"],h),t(c["f"],o["c"])}}).call(this,n("c8ba"),n("501c"))},"0741":function(t,e,n){"use strict";var i=n("5bb5a"),r=n.n(i);r.a},"07f4":function(t,e,n){"use strict";var i=n("be7f"),r=4,o=0,a=1,s=2;function c(t){var e=t.length;while(--e>=0)t[e]=0}var u=0,l=1,h=2,d=3,f=258,p=29,v=256,m=v+1+p,g=30,_=19,b=2*m+1,y=15,w=16,S=7,k=256,x=16,C=17,T=18,O=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],$=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],E=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],I=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],A=512,M=new Array(2*(m+2));c(M);var P=new Array(2*g);c(P);var j=new Array(A);c(j);var L=new Array(f-d+1);c(L);var N=new Array(p);c(N);var D,R,B,F=new Array(g);function z(t,e,n,i,r){this.static_tree=t,this.extra_bits=e,this.extra_base=n,this.elems=i,this.max_length=r,this.has_stree=t&&t.length}function V(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function H(t){return t<256?j[t]:j[256+(t>>>7)]}function Y(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function U(t,e,n){t.bi_valid>w-n?(t.bi_buf|=e<>w-t.bi_valid,t.bi_valid+=n-w):(t.bi_buf|=e<>>=1,n<<=1}while(--e>0);return n>>>1}function q(t){16===t.bi_valid?(Y(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}function Z(t,e){var n,i,r,o,a,s,c=e.dyn_tree,u=e.max_code,l=e.stat_desc.static_tree,h=e.stat_desc.has_stree,d=e.stat_desc.extra_bits,f=e.stat_desc.extra_base,p=e.stat_desc.max_length,v=0;for(o=0;o<=y;o++)t.bl_count[o]=0;for(c[2*t.heap[t.heap_max]+1]=0,n=t.heap_max+1;np&&(o=p,v++),c[2*i+1]=o,i>u||(t.bl_count[o]++,a=0,i>=f&&(a=d[i-f]),s=c[2*i],t.opt_len+=s*(o+a),h&&(t.static_len+=s*(l[2*i+1]+a)));if(0!==v){do{o=p-1;while(0===t.bl_count[o])o--;t.bl_count[o]--,t.bl_count[o+1]+=2,t.bl_count[p]--,v-=2}while(v>0);for(o=p;0!==o;o--){i=t.bl_count[o];while(0!==i)r=t.heap[--n],r>u||(c[2*r+1]!==o&&(t.opt_len+=(o-c[2*r+1])*c[2*r],c[2*r+1]=o),i--)}}}function G(t,e,n){var i,r,o=new Array(y+1),a=0;for(i=1;i<=y;i++)o[i]=a=a+n[i-1]<<1;for(r=0;r<=e;r++){var s=t[2*r+1];0!==s&&(t[2*r]=X(o[s]++,s))}}function K(){var t,e,n,i,r,o=new Array(y+1);for(n=0,i=0;i>=7;i8?Y(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function tt(t,e,n,r){Q(t),r&&(Y(t,n),Y(t,~n)),i.arraySet(t.pending_buf,t.window,e,n,t.pending),t.pending+=n}function et(t,e,n,i){var r=2*e,o=2*n;return t[r]>1;n>=1;n--)nt(t,o,n);r=c;do{n=t.heap[1],t.heap[1]=t.heap[t.heap_len--],nt(t,o,1),i=t.heap[1],t.heap[--t.heap_max]=n,t.heap[--t.heap_max]=i,o[2*r]=o[2*n]+o[2*i],t.depth[r]=(t.depth[n]>=t.depth[i]?t.depth[n]:t.depth[i])+1,o[2*n+1]=o[2*i+1]=r,t.heap[1]=r++,nt(t,o,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],Z(t,e),G(o,u,t.bl_count)}function ot(t,e,n){var i,r,o=-1,a=e[1],s=0,c=7,u=4;for(0===a&&(c=138,u=3),e[2*(n+1)+1]=65535,i=0;i<=n;i++)r=a,a=e[2*(i+1)+1],++s=3;e--)if(0!==t.bl_tree[2*I[e]+1])break;return t.opt_len+=3*(e+1)+5+5+4,e}function ct(t,e,n,i){var r;for(U(t,e-257,5),U(t,n-1,5),U(t,i-4,4),r=0;r>>=1)if(1&n&&0!==t.dyn_ltree[2*e])return o;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return a;for(e=32;e0?(t.strm.data_type===s&&(t.strm.data_type=ut(t)),rt(t,t.l_desc),rt(t,t.d_desc),c=st(t),o=t.opt_len+3+7>>>3,a=t.static_len+3+7>>>3,a<=o&&(o=a)):o=a=n+5,n+4<=o&&-1!==e?dt(t,e,n,i):t.strategy===r||a===o?(U(t,(l<<1)+(i?1:0),3),it(t,M,P)):(U(t,(h<<1)+(i?1:0),3),ct(t,t.l_desc.max_code+1,t.d_desc.max_code+1,c+1),it(t,t.dyn_ltree,t.dyn_dtree)),J(t),i&&Q(t)}function vt(t,e,n){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&n,t.last_lit++,0===e?t.dyn_ltree[2*n]++:(t.matches++,e--,t.dyn_ltree[2*(L[n]+v+1)]++,t.dyn_dtree[2*H(e)]++),t.last_lit===t.lit_bufsize-1}e._tr_init=ht,e._tr_stored_block=dt,e._tr_flush_block=pt,e._tr_tally=vt,e._tr_align=ft},"0998":function(t,e,n){"use strict";var i=n("010d"),r=n.n(i);r.a},"0aa0":function(t,e,n){"use strict";var i=n("a53f");function r(t){var e;while(t){var n=getComputedStyle(t),i=n.transform||n.webkitTransform;e=(!i||"none"===i)&&e,e="fixed"===n.position||e,t=t.parentElement}return e}e["a"]={name:"Native",data:function(){return{position:{top:"0px",left:"0px",width:"0px",height:"0px",position:"static"},hidden:!1}},provide:function(){return{parentOnDraw:this._onDraw}},inject:{parentOnDraw:{default:null}},created:function(){this.isNative=!0,this.onCanInsertCallbacks=[],this.onDrawCallbacks=[]},mounted:function(){this._updatePosition(),this.onCanInsertCallbacks.forEach((function(t){return t()})),this.onCanInsertCallbacks=null,this.$on("uni-view-update",this._requestPositionUpdate)},methods:{_updatePosition:function(){var t=(this.$refs.container||this.$el).getBoundingClientRect();if(this.hidden=0===t.width||0===t.height,!this.hidden){var e=this.position;e.position=r(this.$el)?"absolute":"static";var n=["top","left","width","height"];n.forEach((function(n){var r=t[n];r="top"===n?r+("static"===e.position?document.documentElement.scrollTop||document.body.scrollTop||0:Object(i["a"])()):r,e[n]=r+"px"}))}},_requestPositionUpdate:function(){var t=this;this._positionUpdateRequest&&cancelAnimationFrame(this._positionUpdateRequest),this._positionUpdateRequest=requestAnimationFrame((function(){delete t._positionUpdateRequest,t._updatePosition()}))},_onParentReady:function(t){var e=this,n=function(n){t(n),e.onDrawCallbacks.forEach((function(t){return t(e.position)})),e.onDrawCallbacks=null};this._onSelfReady((function(){e.parentOnDraw?e.parentOnDraw(n):n({top:"0px",left:"0px",width:Number.MAX_SAFE_INTEGER+"px",height:Number.MAX_SAFE_INTEGER+"px",position:"static"})}))},_onSelfReady:function(t){this.onCanInsertCallbacks?this.onCanInsertCallbacks.push(t):t()},_onDraw:function(t){this.onDrawCallbacks?this.onDrawCallbacks.push(t):t(this.position)}}}},"0b86":function(t,e,n){"use strict";n.d(e,"a",(function(){return r}));var i=n("f2b3");function r(t,e,n){if(!t.$parent)return"-1";var r=t.$vnode,o=r.context,a=r.data.attrs._i;return n&&Object(i["e"])(r.data,"key")&&(a=a+";"+r.data.key),o&&o!==e&&o._$id?o._$id+";"+e._$id+","+a:e._$id+","+a}},"0c7c":function(t,e,n){"use strict";function i(t,e,n,i,r,o,a,s){var c,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):r&&(c=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),c)if(u.functional){u._injectStyles=c;var l=u.render;u.render=function(t,e){return c.call(e),l(t,e)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,c):[c]}return{exports:t,options:u}}n.d(e,"a",(function(){return i}))},"0f55":function(t,e,n){"use strict";var i=n("55e3"),r=n.n(i);r.a},1029:function(t,e,n){"use strict";(function(t){var i=n("8af1"),r=n("18fd"),o=n("b253"),a=n("93ab");function s(t){return s="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s(t)}function c(){return"ios"===plus.os.name.toLowerCase()}e["a"]={name:"Editor",mixins:[i["f"],i["a"],i["d"]],props:{id:{type:String,default:""},readOnly:{type:[Boolean,String],default:!1},placeholder:{type:String,default:""},showImgSize:{type:[Boolean,String],default:!1},showImgToolbar:{type:[Boolean,String],default:!1},showImgResize:{type:[Boolean,String],default:!1}},data:function(){return{quillReady:!1}},computed:{},watch:{readOnly:function(t){if(this.quillReady){var e=this.quill;e.enable(!t),t||e.blur()}},placeholder:function(t){this.quillReady&&this.setPlaceHolder(t)}},mounted:function(){var t=this,e=[];this.showImgSize&&e.push("DisplaySize"),this.showImgToolbar&&e.push("Toolbar"),this.showImgResize&&e.push("Resize");var n="./__uniappquill.js";Object(a["a"])(window.Quill,n,(function(){if(e.length){var n="./__uniappquillimageresize.js";Object(a["a"])(window.ImageResize,n,(function(){t.initQuill(e)}))}else t.initQuill(e)}))},methods:{_textChangeHandler:function(){this.$trigger("input",{},this.getContents())},_handleSubscribe:function(e){var n,i,r,o=this,a=e.type,c=e.data,u=c.options,l=c.callbackId,h=this.quill,d=window.Quill;if(this.quillReady){switch(a){case"format":var f=u.name,p=void 0===f?"":f,v=u.value,m=void 0!==v&&v;i=h.getSelection(!0);var g=h.getFormat(i)[p]||!1;if(["bold","italic","underline","strike","ins"].includes(p))m=!g;else if("direction"===p){m=("rtl"!==m||!g)&&m;var _=h.getFormat(i).align;"rtl"!==m||_?m||"right"!==_||h.format("align",!1,d.sources.USER):h.format("align","right",d.sources.USER)}else if("indent"===p){var b="rtl"===h.getFormat(i).direction;m="+1"===m,b&&(m=!m),m=m?"+1":"-1"}else"list"===p&&(m="check"===m?"unchecked":m,g="checked"===g?"unchecked":g),m=g&&g!==(m||!1)||!g&&m?m:!g;h.format(p,m,d.sources.USER);break;case"insertDivider":i=h.getSelection(!0),h.insertText(i.index,"\n",d.sources.USER),h.insertEmbed(i.index+1,"divider",!0,d.sources.USER),h.setSelection(i.index+2,d.sources.SILENT);break;case"insertImage":i=h.getSelection(!0);var y=u.src,w=void 0===y?"":y,S=u.alt,k=void 0===S?"":S,x=u.width,C=void 0===x?"":x,T=u.height,O=void 0===T?"":T,$=u.extClass,E=void 0===$?"":$,I=u.data,A=void 0===I?{}:I,M=this.$getRealPath(w);h.insertEmbed(i.index,"image",M,d.sources.SILENT);var P=!!/^(file|blob):/.test(M)&&M;h.formatText(i.index,1,"data-local",P,d.sources.SILENT),h.formatText(i.index,1,"alt",k,d.sources.SILENT),h.formatText(i.index,1,"width",C,d.sources.SILENT),h.formatText(i.index,1,"height",O,d.sources.SILENT),h.formatText(i.index,1,"class",E,d.sources.SILENT),h.formatText(i.index,1,"data-custom",Object.keys(A).map((function(t){return"".concat(t,"=").concat(A[t])})).join("&"),d.sources.SILENT),h.setSelection(i.index+1,d.sources.SILENT),h.scrollIntoView(),setTimeout((function(){o._textChangeHandler()}),1e3);break;case"insertText":i=h.getSelection(!0);var j=u.text,L=void 0===j?"":j;h.insertText(i.index,L,d.sources.USER),h.setSelection(i.index+L.length,0,d.sources.SILENT);break;case"setContents":var N=u.delta,D=u.html;"object"===s(N)?h.setContents(N,d.sources.SILENT):"string"===typeof D?h.setContents(this.html2delta(D),d.sources.SILENT):r="contents is missing";break;case"getContents":n=this.getContents();break;case"clear":h.setContents([]);break;case"removeFormat":i=h.getSelection(!0);var R=d.import("parchment");i.length?h.removeFormat(i,d.sources.USER):Object.keys(h.getFormat(i)).forEach((function(t){R.query(t,R.Scope.INLINE)&&h.format(t,!1)}));break;case"undo":h.history.undo();break;case"redo":h.history.redo();break;case"blur":h.blur();break;case"getSelectionText":i=h.selection.savedRange,n={text:""},i&&0!==i.length&&(n.text=h.getText(i.index,i.length));break;case"scrollIntoView":h.scrollIntoView();break;default:break}this.updateStatus(i)}else r="not ready";l&&t.publishHandler("onEditorMethodCallback",{callbackId:l,data:Object.assign({},n,{errMsg:"".concat(a,":").concat(r?"fail "+r:"ok")})},this.$page.id)},setPlaceHolder:function(t){var e="data-placeholder",n=this.quill.root;n.getAttribute(e)!==t&&n.setAttribute(e,t)},initQuill:function(t){var e=this,n=window.Quill;o["a"](n);var i={toolbar:!1,readOnly:this.readOnly,placeholder:this.placeholder,modules:{}};t.length&&(n.register("modules/ImageResize",window.ImageResize.default),i.modules.ImageResize={modules:t});var r=this.quill=new n(this.$el,i),a=r.root,s=["focus","blur","input"];s.forEach((function(t){a.addEventListener(t,(function(n){var i=e.getContents();if("input"===t){if(c()){var r=(i.html.match(/([\s\S]*)<\/span>/)||[])[1],o=r&&r.replace(/\s/g,"")?"":e.placeholder;e.setPlaceHolder(o)}n.stopPropagation()}else e.$trigger(t,n,i)}))})),r.on(n.events.TEXT_CHANGE,this._textChangeHandler),r.on(n.events.SELECTION_CHANGE,this.updateStatus.bind(this)),r.on(n.events.SCROLL_OPTIMIZE,(function(){var t=r.selection.getRange()[0];e.updateStatus(t)})),r.clipboard.addMatcher(Node.ELEMENT_NODE,(function(t,n){return e.skipMatcher||(n.ops=n.ops.filter((function(t){var e=t.insert;return"string"===typeof e})).map((function(t){var e=t.insert;return{insert:e}}))),n})),this.initKeyboard(a),this.quillReady=!0,this.$trigger("ready",event,{})},getContents:function(){var t=this.quill,e=t.root["inner"+"HTML"],n=t.getText(),i=t.getContents();return{html:e,text:n,delta:i}},html2delta:function(t){var e,n=["span","strong","b","ins","em","i","u","a","del","s","sub","sup","img","div","p","h1","h2","h3","h4","h5","h6","hr","ol","ul","li","br"],i="";Object(r["a"])(t,{start:function(t,r,o){if(n.includes(t)){e=!1;var a=r.map((function(t){var e=t.name,n=t.value;return"".concat(e,'="').concat(n,'"')})).join(" "),s="<".concat(t," ").concat(a," ").concat(o?"/":"",">");i+=s}else e=!o},end:function(t){e||(i+=""))},chars:function(t){e||(i+=t)}}),this.skipMatcher=!0;var o=this.quill.clipboard.convert(i);return this.skipMatcher=!1,o},updateStatus:function(t){var e=this,n=t?this.quill.getFormat(t):{},i=Object.keys(n);(i.length!==Object.keys(this.__status||{}).length||i.find((function(t){return n[t]!==e.__status[t]})))&&(this.__status=n,this.$trigger("statuschange",{},n))}}}}).call(this,n("501c"))},1082:function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-image",t._g({},t.$listeners),[n("div",{ref:"content",style:t.style}),"widthFix"===t.mode||"heightFix"===t.mode?n("v-uni-resize-sensor",{ref:"sensor",on:{resize:function(e){return t._fixSize()}}}):t._e()],1)},r=[];function o(t){return o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function a(t){return("undefined"===typeof navigator||o(navigator))&&"Google Inc."===navigator.vendor&&t>10&&(t=2*Math.round(t/2)),t}var s={name:"Image",props:{src:{type:String,default:""},mode:{type:String,default:"scaleToFill"},lazyLoad:{type:[Boolean,String],default:!1},draggable:{type:Boolean,default:!1}},data:function(){return{originalWidth:0,originalHeight:0,originalStyle:{width:"",height:""},contentPath:""}},computed:{ratio:function(){return this.originalWidth&&this.originalHeight?this.originalWidth/this.originalHeight:0},style:function(){var t="auto",e="",n="no-repeat";switch(this.mode){case"aspectFit":t="contain",e="center center";break;case"aspectFill":t="cover",e="center center";break;case"widthFix":case"heightFix":t="100% 100%";break;case"top":e="center top";break;case"bottom":e="center bottom";break;case"center":e="center center";break;case"left":e="left center";break;case"right":e="right center";break;case"top left":e="left top";break;case"top right":e="right top";break;case"bottom left":e="left bottom";break;case"bottom right":e="right bottom";break;default:t="100% 100%",e="0% 0%";break}return{"background-image":this.contentPath?'url("'.concat(this.contentPath,'")'):"none","background-position":e,"background-size":t,"background-repeat":n}}},watch:{src:function(t,e){this._loadImage()},mode:function(t,e){"widthFix"!==e&&"heightFix"!==e||this._resetSize(),"widthFix"!==t&&"heightFix"!==t||this._fixSize()},contentPath:function(t){!t&&this.__img&&(this.__img.remove(),delete this.__img)}},mounted:function(){this.originalStyle.width=this.$el.style.width||"",this.originalStyle.height=this.$el.style.height||"",this._loadImage()},beforeDestroy:function(){this._clearImage()},methods:{_fixSize:function(){if(this.ratio){var t=this.$el;if("widthFix"===this.mode){var e=t.offsetWidth;e&&(t.style.height=a(e/this.ratio)+"px")}else if("heightFix"===this.mode){var n=t.offsetHeight;n&&(t.style.width=a(n*this.ratio)+"px")}}window.dispatchEvent(new CustomEvent("updateview"))},_resetSize:function(){this.$el.style.width=this.originalStyle.width,this.$el.style.height=this.originalStyle.height},_resetData:function(){this.originalWidth=0,this.originalHeight=0,this.contentPath=""},_loadImage:function(){var t=this,e=this.$getRealPath(this.src);if(e){var n=this._img=this._img||new Image;n.onload=function(i){t._img=null;var r=t.originalWidth=n.width,o=t.originalHeight=n.height;t._fixSize(),t.contentPath=e,n.draggable=t.draggable,t.__img&&t.__img.remove(),t.__img=n,t.$el.appendChild(n),t.$trigger("load",i,{width:r,height:o})},n.onerror=function(e){t._img=null,t._resetData(),t.$trigger("error",e,{errMsg:"GET ".concat(t.src," 404 (Not Found)")})},n.src=e}else this._clearImage(),this._resetData()},_clearImage:function(){var t=this._img;t&&(t.onload=null,t.onerror=null,this._img=null)}}},c=s,u=(n("db18"),n("0c7c")),l=Object(u["a"])(c,i,r,!1,null,null,null);e["default"]=l.exports},"14db":function(t,e,n){"use strict";var i=n("3770"),r=n.n(i);r.a},1757:function(t,e,n){},"17fd":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.hoverClass&&"none"!==t.hoverClass?n("uni-navigator",t._g({class:[t.hovering?t.hoverClass:""],on:{touchstart:t._hoverTouchStart,touchend:t._hoverTouchEnd,touchcancel:t._hoverTouchCancel,mousedown:t._hoverMousedown,mouseup:t._hoverMouseup,click:t._onClick}},t.$listeners),[t._t("default")],2):n("uni-navigator",t._g({on:{click:t._onClick}},t.$listeners),[t._t("default")],2)},r=[],o=n("8af1"),a=["navigate","redirect","switchTab","reLaunch","navigateBack"],s=["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"],c=["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"],u={name:"Navigator",mixins:[o["c"]],props:{hoverClass:{type:String,default:"navigator-hover"},url:{type:String,default:""},openType:{type:String,default:"navigate",validator:function(t){return~a.indexOf(t)}},delta:{type:Number,default:1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:600},exists:{type:String,default:""},animationType:{type:String,validator:function(t){return!t||~s.concat(c).indexOf(t)},default:""},animationDuration:{type:[String,Number],default:300}},methods:{_onClick:function(t){if("navigateBack"===this.openType||this.url){var e=parseInt(this.animationDuration);switch(this.openType){case"navigate":uni.navigateTo({url:this.url,animationType:this.animationType||"pop-in",animationDuration:e});break;case"redirect":uni.redirectTo({url:this.url,exists:this.exists});break;case"switchTab":uni.switchTab({url:this.url});break;case"reLaunch":uni.reLaunch({url:this.url});break;case"navigateBack":uni.navigateBack({delta:this.delta,animationType:this.animationType||"pop-out",animationDuration:e});break;default:break}}else console.error(" should have url attribute when using navigateTo, redirectTo, reLaunch or switchTab")}}},l=u,h=(n("f7fd"),n("0c7c")),d=Object(h["a"])(l,i,r,!1,null,null,null);e["default"]=d.exports},"18fd":function(t,e,n){"use strict";n.d(e,"a",(function(){return d}));var i=/^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,r=/^<\/([-A-Za-z0-9_]+)[^>]*>/,o=/([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g,a=f("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr"),s=f("a,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video"),c=f("abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var"),u=f("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr"),l=f("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"),h=f("script,style");function d(t,e){var n,d,f,p=[],v=t;p.last=function(){return this[this.length-1]};while(t){if(d=!0,p.last()&&h[p.last()])t=t.replace(new RegExp("([\\s\\S]*?)]*>"),(function(t,n){return n=n.replace(/|/g,"$1$2"),e.chars&&e.chars(n),""})),_("",p.last());else if(0==t.indexOf("\x3c!--")?(n=t.indexOf("--\x3e"),n>=0&&(e.comment&&e.comment(t.substring(4,n)),t=t.substring(n+3),d=!1)):0==t.indexOf("=0;i--)if(p[i]==n)break}else var i=0;if(i>=0){for(var r=p.length-1;r>=i;r--)e.end&&e.end(p[r]);p.length=i}}_()}function f(t){for(var e={},n=t.split(","),i=0;i*{height: ").concat(t,"px;overflow: hidden;}"),document.head.appendChild(e)},_handleTrack:function(t){if(this._scroller)switch(t.detail.state){case"start":this._handleTouchStart(t),Object(s["a"])({disable:!0});break;case"move":this._handleTouchMove(t),t.stopPropagation();break;case"end":case"cancel":this._handleTouchEnd(t),Object(s["a"])({disable:!1})}},_handleTap:function(t){var e=t.clientY;if(!this._scroller.isScrolling()){var n=this.$el.getBoundingClientRect(),i=e-n.top-this.height/2,r=this.indicatorHeight/2;if(!(Math.abs(i)<=r)){var o=Math.ceil((Math.abs(i)-r)/this.indicatorHeight),a=i<0?-o:o,s=Math.min(this.current+a,this.length-1);this.current=s=Math.max(s,0),this._scroller.scrollTo(s*this.indicatorHeight)}}},_handleWheel:function(t){var e=this.deltaY+t.deltaY;if(Math.abs(e)>10){this.deltaY=0;var n=Math.min(this.current+(e<0?-1:1),this.length-1);this.current=n=Math.max(n,0),this._scroller.scrollTo(n*this.indicatorHeight)}else this.deltaY=e;t.preventDefault()},setCurrent:function(t){t!==this.current&&(this.current=t,this.inited&&this.update())},init:function(){var t=this;this.initScroller(this.$refs.content,{enableY:!0,enableX:!1,enableSnap:!0,itemSize:this.indicatorHeight,friction:new o["a"](1e-4),spring:new a["a"](2,90,20),onSnap:function(e){isNaN(e)||e===t.current||(t.current=e)}}),this.inited=!0},update:function(){var t=this;this.$nextTick((function(){var e=Math.min(t.current,t.length-1);e=Math.max(e,0),t._scroller.update(e*t.indicatorHeight,void 0,t.indicatorHeight)}))},_resize:function(t){var e=t.height;this.indicatorHeight=e}},render:function(t){return this.length=this.$slots.default&&this.$slots.default.length||0,t("uni-picker-view-column",{on:{on:this.$listeners}},[t("div",{ref:"main",staticClass:"uni-picker-view-group",on:{wheel:this._handleWheel,click:this._handleTap}},[t("div",{ref:"mask",staticClass:"uni-picker-view-mask",class:this.maskClass,style:"background-size: 100% ".concat(this.maskSize,"px;").concat(this.maskStyle)}),t("div",{ref:"indicator",staticClass:"uni-picker-view-indicator",class:this.indicatorClass,style:this.indicatorStyle},[t("v-uni-resize-sensor",{attrs:{initial:!0},on:{resize:this._resize}})]),t("div",{ref:"content",staticClass:"uni-picker-view-content",class:this.scope,style:"padding: ".concat(this.maskSize,"px 0;")},[this.$slots.default])])])}},d=h,f=(n("edfa"),n("0c7c")),p=Object(f["a"])(d,u,l,!1,null,null,null);e["default"]=p.exports},"1b6f":function(t,e,n){"use strict";(function(t){var i=n("f2b3");e["a"]={mounted:function(){var t=this;this._toggleListeners("subscribe",this.id),this.$watch("id",(function(e,n){t._toggleListeners("unsubscribe",n,!0),t._toggleListeners("subscribe",e,!0)}))},beforeDestroy:function(){this._toggleListeners("unsubscribe",this.id),this._contextId&&this._toggleListeners("unsubscribe",this._contextId)},methods:{_toggleListeners:function(e,n,r){r&&!n||Object(i["f"])(this._handleSubscribe)&&t[e](this.$page.id+"-"+this.$options.name.replace(/VUni([A-Z])/,"$1").toLowerCase()+"-"+n,this._handleSubscribe)},_getContextInfo:function(){var t="context-".concat(this._uid);return this._contextId||(this._toggleListeners("subscribe",t),this._contextId=t),{name:this.$options.name.replace(/VUni([A-Z])/,"$1").toLowerCase(),id:t,page:this.$page.id}}}}}).call(this,n("501c"))},"1c64":function(t,e,n){"use strict";var i=n("97b9"),r=n.n(i);r.a},"1c73":function(t,e,n){"use strict";(function(t){n.d(e,"b",(function(){return s})),n.d(e,"a",(function(){return c}));var i={},r={};function o(t){for(var e=[],n=["width","minWidth","maxWidth","height","minHeight","maxHeight","orientation"],i=0,r=n;i=0&&e.push("(".concat(a(o),": ").concat(Number(t[o]),"px)")),"orientation"===o&&t[o]&&e.push("(".concat(a(o),": ").concat(t[o],")"))}return e=e.join(" and "),e}function a(t){return t.replace(/([A-Z])/g,"-$1").toLowerCase()}function s(e){var n=e.reqId,a=e.options,s=i[n]=window.matchMedia(o(a)),c=r[n]=function(e){t.publishHandler("onRequestMediaQueryObserver",{reqId:n,res:e.matches})};c(s),s.addListener(c)}function c(e){var n=e.reqId,o=r[n],a=i[n];a&&(a.removeListener(o),delete i[n],t.publishHandler("onRequestMediaQueryObserver",{reqId:n,reqEnd:!0}))}}).call(this,n("501c"))},"1e88":function(t,e,n){"use strict";function i(){return{top:0,bottom:0,left:0,right:0}}n.d(e,"a",(function(){return i}))},"1efd":function(t,e,n){"use strict";n.r(e);var i=n("e571"),r=n("a34f"),o=n("d4b6"),a={methods:{$getRealPath:function(t){return t?Object(r["a"])(t):t},$trigger:function(t,e,n){this.$emit(t,o["b"].call(this,t,e,n,this.$el,this.$el))}}},s=n("9b52"),c=[n("5408"),n("1922")],u={};n("d16b");var l=n("0094");for(var h in u=l.default||l,u)customElements.define("uni-".concat(h.toLowerCase()),u[h]);c.forEach((function(t,e){t.keys().forEach((function(e){var n=t(e),r=n.default||n;r.mixins=r.mixins?[].concat(a,r.mixins):[a],r.functional||r.mixins.push(s["a"]),r.name="VUni"+r.name,r.isReserved=!0,i["a"].component(r.name,r)}))}))},"1f56":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-video",t._g({},t.$listeners),[n("div",{ref:"container",staticClass:"uni-video-container"}),n("div",{staticClass:"uni-video-slot"},[t._t("default")],2)])},r=[],o=n("8af1"),a=n("0aa0");function s(t){return s="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s(t)}function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function u(t){for(var e=1;e-1:t.valueSync},on:{change:[function(e){var n=t.valueSync,i=e.target,r=!!i.checked;if(Array.isArray(n)){var o=null,a=t._i(n,o);i.checked?a<0&&(t.valueSync=n.concat([o])):a>-1&&(t.valueSync=n.slice(0,a).concat(n.slice(a+1)))}else t.valueSync=r},function(t){t.stopPropagation()}],focus:t._onFocus,blur:t._onBlur,input:function(e){return e.stopPropagation(),t._onInput(e)},compositionstart:function(e){return e.stopPropagation(),t._onComposition(e)},compositionend:function(e){return e.stopPropagation(),t._onComposition(e)},compositionupdate:function(e){return e.stopPropagation(),t._onComposition(e)},keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.stopPropagation(),t._onKeyup(e))}}}),t.disabled&&t.fixColor?n("input",{ref:"input",staticClass:"uni-input-input",attrs:{tabindex:"-1",readonly:t.disabled,type:t.inputType,maxlength:t.maxlength,step:t._step},domProps:{value:t.valueSync},on:{focus:function(t){return t.target.blur()}}}):t._e()])])},r=[],o=n("8af1"),a=n("f2b3"),s=["text","number","idcard","digit","password","tel"],c=["number","digit"],u=["off","one-time-code"],l=["none","text","decimal","numeric","tel","search","email","url"],h={name:"Input",mixins:[o["b"]],props:{name:{type:String,default:""},type:{type:String,default:"text"},password:{type:[Boolean,String],default:!1},placeholder:{type:String,default:""},placeholderStyle:{type:String,default:""},placeholderClass:{type:String,default:"input-placeholder"},disabled:{type:[Boolean,String],default:!1},maxlength:{type:[Number,String],default:140},confirmType:{type:String,default:"done"},textContentType:{type:String,default:""},step:{type:String,default:"0.000000000000000001"},inputmode:{type:String,default:void 0,validator:function(t){return!!~l.indexOf(t)}}},data:function(){return{wrapperHeight:0,cachedValue:""}},computed:{inputType:function(){var t="";switch(this.type){case"text":"search"===this.confirmType&&(t="search");break;case"idcard":t="text";break;case"digit":t="number";break;default:t=~s.indexOf(this.type)?this.type:"text";break}return this.password?"password":t},_step:function(){return~c.indexOf(this.type)?this.step:""},autocomplete:function(){var t=u.indexOf(this.textContentType),e=u.indexOf(Object(a["i"])(this.textContentType)),n=-1!==t?t:-1!==e?e:0;return u[n]},showPlaceholder:function(){var t="digit"===this.type?this.cachedValue.indexOf("."):-1;return!(this.composing||this.valueSync.length||"-"===this.cachedValue||-1!==t&&t===this.cachedValue.length-1)}},watch:{maxlength:function(t){var e=this.valueSync.slice(0,parseInt(t,10));e!==this.valueSync&&(this.valueSync=e)},valueSync:function(t){"number"!==this.type||"-"===this.cachedValue&&""===t||(this.cachedValue=t)}},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},mounted:function(){if("search"===this.confirmType){var t=document.createElement("form");t.action="",t.onsubmit=function(){return!1},t.className="uni-input-form",t.appendChild(this.$refs.input),this.$refs.wrapper.appendChild(t)}var e=this;while(e){var n=e.$options._scopeId;n&&this.$refs.placeholder.setAttribute(n,""),e=e.$parent}},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_onKeyup:function(t){var e=t.target;this.$trigger("confirm",t,{value:e.value}),this.confirmHold||e.blur()},_onInput:function(t,e){var n=this,i=!1;if(!this.composing||!this.ignoreCompositionEvent){if("number"===this.inputType){var r=parseInt(this.maxlength,10);if(r>0&&t.target.value.length>r&&(this.cachedValue.length===r?(this.valueSync=this.cachedValue,i=!0):(t.target.value=t.target.value.slice(0,r),this.valueSync=t.target.value)),this.__clearCachedValue&&t.target.removeEventListener("blur",this.__clearCachedValue),t.target.validity&&!t.target.validity.valid){if((!this.cachedValue||!t.target.value)&&"-"===t.data||"-"===this.cachedValue[0]&&"deleteContentBackward"===t.inputType){this.cachedValue="-",this.valueSync="";var o=this.__clearCachedValue=function(){n.cachedValue=t.target.value=""};return void t.target.addEventListener("blur",o)}if(this.cachedValue)if(-1!==this.cachedValue.indexOf(".")){if("."!==t.data&&"deleteContentBackward"===t.inputType){var a=this.cachedValue.indexOf(".");return this.cachedValue=t.target.value=this.valueSync=this.cachedValue.slice(0,a),this.$triggerInput(t,{value:this.valueSync},e)}}else if("."===t.data)return this.cachedValue+=".",this.__clearCachedValue=function(){n.cachedValue=n.valueSync=t.target.value=n.cachedValue.slice(0,-1)},t.target.addEventListener("blur",this.__clearCachedValue),!1;return void(this.cachedValue=this.valueSync=t.target.value="-"===this.cachedValue?"":this.cachedValue)}this.cachedValue=this.valueSync}i||(this.valueSync=this.$refs.input.value,this.$triggerInput(t,{value:this.valueSync},e))}},_onComposition:function(t){switch(t.type){case"compositionstart":this.composing=!0;break;case"compositionend":this.composing&&(this.composing=!1,this._onInput(t));break}!this.ignoreCompositionEvent&&this.$trigger(t.type,t,{data:t.data})},_resetFormData:function(){this.valueSync=""},_getFormData:function(){return this.name?{value:this.valueSync,key:this.name}:{}}}},d=h,f=(n("0f55"),n("0c7c")),p=Object(f["a"])(d,i,r,!1,null,null,null);e["default"]=p.exports},2522:function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));var i="onPageCreate"},"25ce":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-checkbox-group",t._g({},t.$listeners),[t._t("default")],2)},r=[],o=n("8af1"),a={name:"CheckboxGroup",mixins:[o["a"],o["e"]],props:{name:{type:String,default:""}},data:function(){return{checkboxList:[]}},listeners:{"@checkbox-change":"_changeHandler","@checkbox-group-update":"_checkboxGroupUpdateHandler"},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_changeHandler:function(t){var e=[];this.checkboxList.forEach((function(t){t.checkboxChecked&&e.push(t.value)})),this.$trigger("change",t,{value:e})},_checkboxGroupUpdateHandler:function(t){if("add"===t.type)this.checkboxList.push(t.vm);else{var e=this.checkboxList.indexOf(t.vm);this.checkboxList.splice(e,1)}},_getFormData:function(){var t={};if(""!==this.name){var e=[];this.checkboxList.forEach((function(t){t.checkboxChecked&&e.push(t.value)})),t.value=e,t.key=this.name}return t}}},s=a,c=(n("0998"),n("0c7c")),u=Object(c["a"])(s,i,r,!1,null,null,null);e["default"]=u.exports},"27ab":function(t,e,n){"use strict";n.r(e);var i=n("f2b3");function r(t){return c(t)||s(t)||a(t)||o()}function o(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function s(t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}function c(t){if(Array.isArray(t))return u(t)}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n=0)&&(this.valueSync.length=t.length,t.forEach((function(t,e){t!==n.valueSync[e]&&n.$set(n.valueSync,e,t)})))},valueSync:{deep:!0,handler:function(t,e){if(""===this.changeSource)this._valueChanged(t);else{this.changeSource="";var n=t.map((function(t){return t}));this.$emit("update:value",n),this.$trigger("change",{},{value:n})}}}},methods:{getItemIndex:function(t){return this.items.indexOf(t)},getItemValue:function(t){return this.valueSync[this.getItemIndex(t.$vnode)]||0},setItemValue:function(t,e){var n=this.getItemIndex(t.$vnode),i=this.valueSync[n];i!==e&&(this.changeSource="touch",this.$set(this.valueSync,n,e))},_valueChanged:function(t){this.items.forEach((function(e,n){e.componentInstance.setCurrent(t[n]||0)}))},_resize:function(t){var e=t.height;this.height=e}},render:function(t){var e=[];return this.$slots.default&&Object(i["d"])(this.$slots.default,t).forEach((function(t){t.componentOptions&&"v-uni-picker-view-column"===t.componentOptions.tag&&e.push(t)})),this.items=e,t("uni-picker-view",{on:this.$listeners},[t("v-uni-resize-sensor",{attrs:{initial:!0},on:{resize:this._resize}}),t("div",{ref:"wrapper",class:"uni-picker-view-wrapper"},e)])}},f=d,p=(n("6062"),n("0c7c")),v=Object(p["a"])(f,l,h,!1,null,null,null);e["default"]=v.exports},"27c2":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-editor",t._g({staticClass:"ql-container",attrs:{id:t.id}},t.$listeners))},r=[],o=n("1029"),a=o["a"],s=(n("e298"),n("0c7c")),c=Object(s["a"])(a,i,r,!1,null,null,null);e["default"]=c.exports},"27ef":function(t,e,n){"use strict";var i=n("6596"),r=n.n(i);r.a},"28e4":function(t,e,n){"use strict";function i(t){return new Promise((function(e,n){function i(){var i=new plus.nativeObj.Bitmap("bitmap_".concat(Date.now(),"_").concat(Math.random(),"}"));i.load(t,(function(){e(i.toBase64Data()),i.clear()}),(function(t){i.clear(),n(t)}))}plus.io.resolveLocalFileSystemURL(t,(function(t){t.file((function(t){var n=new plus.io.FileReader;n.onload=function(t){e(t.target.result)},n.onerror=i,n.readAsDataURL(t)}),i)}),i)}))}function r(t){return new Promise((function(e,n){0===t.indexOf("http://")||0===t.indexOf("https://")?plus.downloader.createDownload(t,{filename:"_doc/uniapp_temp/download/"},(function(t,i){200===i?e(t.filename):n(new Error("network fail"))})).start():e(t)}))}function o(t){return r(t).then((function(t){return window.webkit&&window.webkit.messageHandlers?i(t):plus.io.convertLocalFileSystemURL(t)}))}n.d(e,"a",(function(){return o}))},"2a0a":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"a",(function(){return s}));var i,r,o=n("f2b3");function a(){Object(o["j"])((function(){i||(i=plus.webview.currentWebview()),r||(r=(i.getStyle()||{}).pullToRefresh||{})}))}function s(t){var e=t.disable;r&&r.support&&i.setPullToRefresh(Object.assign({},r,{support:!e}))}},"2b4d":function(t,e,n){"use strict";function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var n=0;n0&&t>e&&n+e+c>=t,r=Math.abs(t-s)>c;return!i||h&&!r?(!i&&h&&(h=!1),!1):(s=t,h=!0,!0)}function p(){var n=getCurrentPages();if(n.length&&n[n.length-1].$page.id===e){var s=window.pageYOffset;o&&Object(r["a"])("onPageScroll",{scrollTop:s},e),u&&t.emit("onPageScroll",{scrollTop:s}),a&&d&&(c()||(i=setTimeout(c,300))),l=!1}function c(){if(f())return Object(r["a"])("onReachBottom",{},e),d=!1,setTimeout((function(){d=!0}),350),!0}}return function(){clearTimeout(i),l||requestAnimationFrame(p),l=!0}}}).call(this,n("501c"))},3569:function(t,e,n){},3770:function(t,e,n){},3878:function(t,e){var n,i;0===String(navigator.vendor).indexOf("Apple")&&document.documentElement.addEventListener("click",(function(t){var e=450,r=44;clearTimeout(i),n&&Math.abs(t.pageX-n.pageX)<=r&&Math.abs(t.pageY-n.pageY)<=r&&t.timeStamp-n.timeStamp<=e&&t.preventDefault(),n=t,i=setTimeout((function(){n=null}),e)}))},"39aa":function(t){t.exports=JSON.parse('{"uni.app.quit":"Press back button again to exit","uni.async.error":"The connection timed out, click the screen to try again.","uni.showActionSheet.cancel":"Cancel","uni.showToast.unpaired":"Please note showToast must be paired with hideToast","uni.showLoading.unpaired":"Please note showLoading must be paired with hideLoading","uni.showModal.cancel":"Cancel","uni.showModal.confirm":"OK","uni.chooseImage.cancel":"Cancel","uni.chooseImage.sourceType.album":"Album","uni.chooseImage.sourceType.camera":"Camera","uni.chooseVideo.cancel":"Cancel","uni.chooseVideo.sourceType.album":"Album","uni.chooseVideo.sourceType.camera":"Camera","uni.chooseFile.notUserActivation":"File chooser dialog can only be shown with a user activation","uni.previewImage.cancel":"Cancel","uni.previewImage.button.save":"Save Image","uni.previewImage.save.success":"Saved successfully","uni.previewImage.save.fail":"Save failed","uni.setClipboardData.success":"Content copied","uni.scanCode.title":"Scan code","uni.scanCode.album":"Album","uni.scanCode.fail":"Recognition failure","uni.scanCode.flash.on":"Tap to turn light on","uni.scanCode.flash.off":"Tap to turn light off","uni.startSoterAuthentication.authContent":"Fingerprint recognition","uni.startSoterAuthentication.waitingContent":"Unrecognizable","uni.picker.done":"Done","uni.picker.cancel":"Cancel","uni.video.danmu":"Danmu","uni.video.volume":"Volume","uni.button.feedback.title":"feedback","uni.button.feedback.send":"send","uni.chooseLocation.search":"Find Place","uni.chooseLocation.cancel":"Cancel"}')},"39ba":function(t,e,n){"use strict";n.r(e);var i,r,o=n("0aa0"),a=n("5077"),s={name:"CoverView",mixins:[o["a"],a["a"]],props:{},data:function(){return{coverType:"text",coverContent:""}},render:function(t){var e="",n=this.$slots.default||[],i=n.filter((function(t){return t.tag}));return i.length?e=i:(n.forEach((function(t){t.tag||(e+=t.text||"")})),this.coverContent=e),t("uni-cover-view",{on:{on:this.$listeners}},[t("div",{ref:"container",staticClass:"uni-cover-view"},[].concat(e))])}},c=s,u=(n("4ba9"),n("0c7c")),l=Object(u["a"])(c,i,r,!1,null,null,null);e["default"]=l.exports},"3ae8":function(t,e,n){},"3cd3":function(t,e,n){},"3e5d":function(t,e,n){"use strict";(function(t){n.d(e,"b",(function(){return r})),n.d(e,"a",(function(){return O}));var i,r,o,a=n("e571"),s=n("a20d"),c=n("2522"),u=n("9d20"),l=n("9856"),h=n("2376");function d(t){return d="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},d(t)}function f(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function p(t,e){return b(t)||_(t,e)||m(t,e)||v()}function v(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function m(t,e){if(t){if("string"===typeof t)return g(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?g(t,e):void 0}}function g(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n3?i-3:0),o=3;o0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;var n=i.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(n!==h)throw new Error(a[n]);if(e.header&&i.deflateSetHeader(this.strm,e.header),e.dictionary){var u;if(u="string"===typeof e.dictionary?o.string2buf(e.dictionary):"[object ArrayBuffer]"===c.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,n=i.deflateSetDictionary(this.strm,u),n!==h)throw new Error(a[n]);this._dict_set=!0}}function _(t,e){var n=new g(e);if(n.push(t,!0),n.err)throw n.msg||a[n.err];return n.result}function b(t,e){return e=e||{},e.raw=!0,_(t,e)}function y(t,e){return e=e||{},e.gzip=!0,_(t,e)}g.prototype.push=function(t,e){var n,a,s=this.strm,p=this.options.chunkSize;if(this.ended)return!1;a=e===~~e?e:!0===e?l:u,"string"===typeof t?s.input=o.string2buf(t):"[object ArrayBuffer]"===c.call(t)?s.input=new Uint8Array(t):s.input=t,s.next_in=0,s.avail_in=s.input.length;do{if(0===s.avail_out&&(s.output=new r.Buf8(p),s.next_out=0,s.avail_out=p),n=i.deflate(s,a),n!==d&&n!==h)return this.onEnd(n),this.ended=!0,!1;0!==s.avail_out&&(0!==s.avail_in||a!==l&&a!==f)||("string"===this.options.to?this.onData(o.buf2binstring(r.shrinkBuf(s.output,s.next_out))):this.onData(r.shrinkBuf(s.output,s.next_out)))}while((s.avail_in>0||0===s.avail_out)&&n!==d);return a===l?(n=i.deflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===h):a!==f||(this.onEnd(h),s.avail_out=0,!0)},g.prototype.onData=function(t){this.chunks.push(t)},g.prototype.onEnd=function(t){t===h&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=r.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},e.Deflate=g,e.deflate=_,e.deflateRaw=b,e.gzip=y},"42f9":function(t,e,n){},"435a":function(t,e,n){"use strict";n.d(e,"a",(function(){return l})),n.d(e,"b",(function(){return h})),n.d(e,"c",(function(){return d})),n.d(e,"d",(function(){return f}));var i,r="__UNIAPP_PICKER",o="_www/__uniapppicker.html",a=null,s=!1,c=null,u=null;function l(t){function e(t){c=t,u.forEach((function(e){return e(t)})),u=null}null===c?u?u.push(t):(u=[t],plus.io.resolveLocalFileSystemURL(o,(function(){e(!0)}),(function(){e(!1)}))):t(c)}function h(){a||(a=plus.webview.getWebviewById(r),a?s=!0:(a=plus.webview.create(o,r,{popGesture:"none",background:"transparent",backButtonAutoControl:"hide",render:"always",kernel:"WKWebview",bounce:"none",cachemode:"noCache"}),window.__pickerCallback=function(){delete window.__pickerCallback,s=!0}),a.addEventListener("hide",(function(){i&&i(),i=null})))}function d(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;e.id=plus.webview.currentWebview().id,a.show("fade-in"),i=function(){n(t||{event:"cancel"})},window.__pickerCallback=function(i){var r=i.event,o=void 0===r?"cancel":r,c=i.column,u=i.value,l=void 0===u?-1:u;if("created"===o&&a)return s=!0,void a.evalJS("showPicker(".concat(JSON.stringify(e),")"));"columnchange"===o&&a&&n({event:o,column:c,value:l}),"change"!==o&&"cancel"!==o||(window.__pickerCallback=function(){},t={event:o,value:l},a.hide("fade-out",100))},s&&a.evalJS("showPicker(".concat(JSON.stringify(e),")"))}function f(t){s&&a.evalJS("showPicker(".concat(JSON.stringify(t),")"))}},4617:function(t,e,n){"use strict";(function(t){function i(t,e){return c(t)||s(t,e)||o(t,e)||r()}function r(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(t,e){if(t){if("string"===typeof t)return a(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(t,e):void 0}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,i=new Array(e);n2&&void 0!==arguments[2]?arguments[2]:p;if(!e)return[t];var i=this._caches[t];return i||(i=_(t,n),this._caches[t]=i),b(i,e)}}]),t}(),m=/^(?:\d)+/,g=/^(?:\w)+/;function _(t,e){var n=i(e,2),r=n[0],o=n[1],a=[],s=0,c="";while(s-1?y:t.indexOf("-hant")>-1||$(t,["-tw","-hk","-mo","-cht"])?w:y;var n=[S,k,x];e&&Object.keys(e).length>0&&(n=Object.keys(e));var i=E(t,n);return i||void 0}}var A=function(){function t(e){var n=e.locale,i=e.fallbackLocale,r=e.messages,o=e.watcher,a=e.formater;u(this,t),this.locale=S,this.fallbackLocale=S,this.message={},this.messages={},this.watchers=[],i&&(this.fallbackLocale=i),this.formater=a||O,this.messages=r||{},this.setLocale(n||S),o&&this.watchLocale(o)}return h(t,[{key:"setLocale",value:function(t){var e=this,n=this.locale;this.locale=I(t,this.messages)||this.fallbackLocale,this.messages[this.locale]||(this.messages[this.locale]={}),this.message=this.messages[this.locale],n!==this.locale&&this.watchers.forEach((function(t){t(e.locale,n)}))}},{key:"getLocale",value:function(){return this.locale}},{key:"watchLocale",value:function(t){var e=this,n=this.watchers.push(t)-1;return function(){e.watchers.splice(n,1)}}},{key:"add",value:function(t,e){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],i=this.messages[t];i?n?Object.assign(i,e):Object.keys(e).forEach((function(t){T(i,t)||(i[t]=e[t])})):this.messages[t]=e}},{key:"f",value:function(t,e,n){return this.formater.interpolate(t,e,n).join("")}},{key:"t",value:function(t,e,n){var i=this.message;return"string"===typeof e?(e=I(e,this.messages),e&&(i=this.messages[e])):n=e,T(i,t)?this.formater.interpolate(i[t],n).join(""):(console.warn("Cannot translate the value of keypath ".concat(t,". Use the value of keypath as default.")),t)}}]),t}();function M(t,e){t.$watchLocale?t.$watchLocale((function(t){e.setLocale(t)})):t.$watch((function(){return t.$locale}),(function(t){e.setLocale(t)}))}function P(){return"undefined"!==typeof uni&&uni.getLocale?uni.getLocale():"undefined"!==typeof t&&t.getLocale?t.getLocale():S}function j(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;if("string"!==typeof t){var r=[e,t];t=r[0],e=r[1]}"string"!==typeof t&&(t=P()),"string"!==typeof n&&(n="undefined"!==typeof __uniConfig&&__uniConfig.fallbackLocale||S);var o=new A({locale:t,fallbackLocale:n,messages:e,watcher:i}),a=function(t,e){if("function"!==typeof getApp)a=function(t,e){return o.t(t,e)};else{var n=!1;a=function(t,e){var i=getApp().$vm;return i&&(i.$locale,n||(n=!0,M(i,o))),o.t(t,e)}}return a(t,e)};return{i18n:o,f:function(t,e,n){return o.f(t,e,n)},t:function(t,e){return a(t,e)},add:function(t,e){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return o.add(t,e,n)},watch:function(t){return o.watchLocale(t)},getLocale:function(){return o.getLocale()},setLocale:function(t){return o.setLocale(t)}}}function L(t,e){return t.indexOf(e[0])>-1}}).call(this,n("c8ba"))},4814:function(t,e,n){},"4ba9":function(t,e,n){"use strict";var i=n("89cf"),r=n.n(i);r.a},"4da7":function(t,e,n){"use strict";n.r(e);var i,r,o={ensp:" ",emsp:" ",nbsp:" "},a={name:"Text",props:{selectable:{type:[Boolean,String],default:!1},space:{type:String,default:""},decode:{type:[Boolean,String],default:!1}},methods:{_decodeHtml:function(t){return this.space&&o[this.space]&&(t=t.replace(/ /g,o[this.space])),this.decode&&(t=t.replace(/ /g,o.nbsp).replace(/ /g,o.ensp).replace(/ /g,o.emsp).replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&").replace(/"/g,'"').replace(/'/g,"'")),t}},render:function(t){var e=this,n=[];return this.$slots.default&&this.$slots.default.forEach((function(i){if(i.text){var r=i.text.replace(/\\n/g,"\n"),o=r.split("\n");o.forEach((function(i,r){n.push(e._decodeHtml(i)),r!==o.length-1&&n.push(t("br"))}))}else i.componentOptions&&"v-uni-text"!==i.componentOptions.tag&&console.warn("Do not nest other components in the text component, as there may be display differences on different platforms."),n.push(i)})),t("uni-text",{on:this.$listeners,attrs:{selectable:!!this.selectable}},[t("span",{},n)])}},s=a,c=(n("c8ed"),n("0c7c")),u=Object(c["a"])(s,i,r,!1,null,null,null);e["default"]=u.exports},"4dc6":function(t,e,n){"use strict";t.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},"4f1c":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-switch",t._g({attrs:{disabled:t.disabled},on:{click:t._onClick}},t.$listeners),[n("div",{staticClass:"uni-switch-wrapper"},[n("div",{directives:[{name:"show",rawName:"v-show",value:"switch"===t.type,expression:"type === 'switch'"}],staticClass:"uni-switch-input",class:[t.switchChecked?"uni-switch-input-checked":""],style:t.checkedColor}),n("div",{directives:[{name:"show",rawName:"v-show",value:"checkbox"===t.type,expression:"type === 'checkbox'"}],staticClass:"uni-checkbox-input",class:[t.switchChecked?"uni-checkbox-input-checked":""],style:{color:t.color}})])])},r=[],o=n("8af1"),a={name:"Switch",mixins:[o["a"],o["e"]],props:{name:{type:String,default:""},checked:{type:[Boolean,String],default:!1},type:{type:String,default:"switch"},id:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},color:{type:String,default:""}},data:function(){return{switchChecked:this.checked}},computed:{checkedColor:function(){return this.switchChecked&&this.color?{backgroundColor:this.color,borderColor:this.color}:{}}},watch:{checked:function(t){this.switchChecked=t}},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},listeners:{"label-click":"_onClick","@label-click":"_onClick"},methods:{_onClick:function(t){this.disabled||(this.switchChecked=!this.switchChecked,this.$trigger("change",t,{value:this.switchChecked}))},_resetFormData:function(){this.switchChecked=!1},_getFormData:function(){var t={};return""!==this.name&&(t.value=this.switchChecked,t.key=this.name),t}}},s=a,c=(n("a5ec"),n("0c7c")),u=Object(c["a"])(s,i,r,!1,null,null,null);e["default"]=u.exports},"501c":function(t,e,n){"use strict";n.r(e),n.d(e,"on",(function(){return v})),n.d(e,"off",(function(){return m})),n.d(e,"once",(function(){return g})),n.d(e,"emit",(function(){return _})),n.d(e,"subscribe",(function(){return b})),n.d(e,"unsubscribe",(function(){return y})),n.d(e,"subscribeHandler",(function(){return w})),n.d(e,"publishHandler",(function(){return f["a"]}));var i=n("e571");function r(t){var e=t.pageStyle,n=t.rootFontSize,i=document.querySelector("uni-page-body")||document.body;i.setAttribute("style",e),n&&document.documentElement.style.fontSize!==n&&(document.documentElement.style.fontSize=n)}var o=n("6bdf"),a=n("5dc1"),s=n("1c73"),c={setPageMeta:r,requestComponentInfo:o["a"],requestComponentObserver:a["b"],destroyComponentObserver:a["a"],requestMediaQueryObserver:s["b"],destroyMediaQueryObserver:s["a"]},u=n("33ed"),l=n("7107"),h=n("0516");function d(t){Object.keys(c).forEach((function(e){t(e,c[e])})),t("pageScrollTo",u["c"]),t("loadFontFace",l["a"]),Object(h["a"])(t)}var f=n("5bb5"),p=new i["a"],v=p.$on.bind(p),m=p.$off.bind(p),g=p.$once.bind(p),_=p.$emit.bind(p);function b(t,e){return v("service."+t,e)}function y(t,e){return m("service."+t,e)}function w(t,e,n){_("service."+t,e,n)}d(b)},5077:function(t,e,n){"use strict";var i=["borderRadius","borderColor","borderWidth","backgroundColor"],r=["paddingTop","paddingRight","paddingBottom","paddingLeft","color","textAlign","lineHeight","fontSize","fontWeight","textOverflow","whiteSpace"],o=[],a={start:"left",end:"right"},s=0;e["a"]={name:"Cover",data:function(){return{style:{},parentPosition:{}}},computed:{viewPosition:function(){var t={};for(var e in this.position){var n=this.position[e],i=parseFloat(n),r=parseFloat(this.parentPosition[e]);if("top"===e||"left"===e)n=Math.max(i,r)+"px";else if("width"===e||"height"===e){var o="width"===e?"left":"top",a=parseFloat(this.parentPosition[o]),s=parseFloat(this.position[o]),c=Math.max(a-s,0),u=Math.max(s+i-(a+r),0);n=Math.max(i-c-u,0)+"px"}t[e]=n}return t},tags:function(){var t=this._getTagPosition(),e=this.style,n=[{tag:"rect",position:t,rectStyles:{color:e.backgroundColor,radius:e.borderRadius,borderColor:e.borderColor,borderWidth:e.borderWidth}}];if("image"===this.coverType)n.push({tag:"img",position:t,src:this.coverContent});else{var i=parseFloat(e.lineHeight)-parseFloat(e.fontSize),r=parseFloat(t.width)-parseFloat(e.paddingLeft)-parseFloat(e.paddingRight);r=r<0?0:r;var o=parseFloat(t.height)-parseFloat(e.paddingTop)-i/2-parseFloat(e.paddingBottom);o=o<0?0:o,n.push({tag:"font",position:{top:"".concat(parseFloat(t.top)+parseFloat(e.paddingTop)+i/2,"px"),left:"".concat(parseFloat(t.left)+parseFloat(e.paddingLeft),"px"),width:"".concat(r,"px"),height:"".concat(o,"px")},textStyles:{align:a[e.textAlign]||e.textAlign,color:e.color,decoration:"none",lineSpacing:"".concat(i,"px"),margin:"0px",overflow:e.textOverflow,size:e.fontSize,verticalAlign:"top",weight:e.fontWeight,whiteSpace:e.whiteSpace},text:this.coverContent})}return n}},created:function(){var t=this.$parent;while(!t.isNative&&t!==this.$root)t=t.$parent;this._nativeParent=t},mounted:function(){var t=this;this._onParentReady((function(e){t.parentPosition=t._nativeParent.position||e,t._updateStyle(),t._onCanInsert(),t.$watch("hidden",(function(e){t.cover&&t.cover[e?"hide":"show"]()})),t.$watch("viewPosition",(function(e){t.cover&&t.cover.setStyle(e)}),{deep:!0}),t.$watch("tags",(function(){var e=t.cover;e&&(e.reset(),e.draw(t.tags))}),{deep:!0}),t.$on("uni-view-update",t._requestStyleUpdate)}))},beforeDestroy:function(){this._nativeParent.isNative&&(this.cover&&this.cover.close(),delete this.cover)},methods:{_onCanInsert:function(){var t=this,e=this.cover=new plus.nativeObj.View("cover-".concat(Date.now(),"-").concat(s++),this.viewPosition,this.tags);plus.webview.currentWebview().append(e),this.hidden&&e.hide(),e.addEventListener("click",(function(){t.$trigger("click",{},{})}))},_getTagPosition:function(){var t={};for(var e in this.position){var n=this.position[e];"top"!==e&&"left"!==e||(n=Math.min(parseFloat(n)-parseFloat(this.parentPosition[e]),0)+"px"),t[e]=n}return t},_updateStyle:function(){var t=this,e=getComputedStyle(this.$el);i.concat(r,o).forEach((function(n){t.$set(t.style,n,e[n])}))},_requestStyleUpdate:function(){var t=this;this._styleUpdateRequest&&cancelAnimationFrame(this._styleUpdateRequest),this._styleUpdateRequest=requestAnimationFrame((function(){delete t._styleUpdateRequest,t._updateStyle()}))}}}},5129:function(t,e){t.exports=["uni-app","uni-layout","uni-content","uni-main","uni-top-window","uni-left-window","uni-right-window","uni-tabbar","uni-page","uni-page-head","uni-page-wrapper","uni-page-body","uni-page-refresh","uni-actionsheet","uni-modal","uni-toast","uni-resize-sensor","uni-shadow-root","uni-ad","uni-audio","uni-button","uni-camera","uni-canvas","uni-checkbox","uni-checkbox-group","uni-cover-image","uni-cover-view","uni-editor","uni-form","uni-functional-page-navigator","uni-icon","uni-image","uni-input","uni-label","uni-live-player","uni-live-pusher","uni-map","uni-movable-area","uni-movable-view","uni-navigator","uni-official-account","uni-open-data","uni-picker","uni-picker-view","uni-picker-view-column","uni-progress","uni-radio","uni-radio-group","uni-rich-text","uni-scroll-view","uni-slider","uni-swiper","uni-swiper-item","uni-switch","uni-text","uni-textarea","uni-video","uni-view","uni-web-view"]},5363:function(t,e,n){"use strict";function i(t){this._drag=t,this._dragLog=Math.log(t),this._x=0,this._v=0,this._startTime=0}n.d(e,"a",(function(){return i})),i.prototype.set=function(t,e){this._x=t,this._v=e,this._startTime=(new Date).getTime()},i.prototype.setVelocityByEnd=function(t){this._v=(t-this._x)*this._dragLog/(Math.pow(this._drag,100)-1)},i.prototype.x=function(t){var e;return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),e=t===this._dt&&this._powDragDt?this._powDragDt:this._powDragDt=Math.pow(this._drag,t),this._dt=t,this._x+this._v*e/this._dragLog-this._v/this._dragLog},i.prototype.dx=function(t){var e;return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),e=t===this._dt&&this._powDragDt?this._powDragDt:this._powDragDt=Math.pow(this._drag,t),this._dt=t,this._v*e},i.prototype.done=function(){return Math.abs(this.dx())<3},i.prototype.reconfigure=function(t){var e=this.x(),n=this.dx();this._drag=t,this._dragLog=Math.log(t),this.set(e,n)},i.prototype.configuration=function(){var t=this;return[{label:"Friction",read:function(){return t._drag},write:function(e){t.reconfigure(e)},min:.001,max:.1,step:.001}]}},5408:function(t,e,n){var i={"./audio/index.vue":"6150","./button/index.vue":"d3bd","./canvas/index.vue":"bacd","./checkbox-group/index.vue":"25ce","./checkbox/index.vue":"7bb3","./editor/index.vue":"27c2","./form/index.vue":"b34d","./icon/index.vue":"9a8b","./image/index.vue":"1082","./input/index.vue":"250d","./label/index.vue":"70f4","./movable-area/index.vue":"c61c","./movable-view/index.vue":"8842","./navigator/index.vue":"17fd","./picker-view-column/index.vue":"1955","./picker-view/index.vue":"27ab","./progress/index.vue":"9b1f","./radio-group/index.vue":"d5ec","./radio/index.vue":"6491","./resize-sensor/index.vue":"3e8c","./rich-text/index.vue":"b705","./scroll-view/index.vue":"f1ef","./slider/index.vue":"9f96","./swiper-item/index.vue":"9213","./swiper/index.vue":"5513","./switch/index.vue":"4f1c","./text/index.vue":"4da7","./textarea/index.vue":"5768"};function r(t){var e=o(t);return n(e)}function o(t){if(!n.o(i,t)){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e}return i[t]}r.keys=function(){return Object.keys(i)},r.resolve=o,t.exports=r,r.id="5408"},5513:function(t,e,n){"use strict";n.r(e);var i=n("ba15"),r=n("f2b3");var o,a,s={name:"Swiper",mixins:[i["a"]],props:{indicatorDots:{type:[Boolean,String],default:!1},vertical:{type:[Boolean,String],default:!1},autoplay:{type:[Boolean,String],default:!1},circular:{type:[Boolean,String],default:!1},interval:{type:[Number,String],default:5e3},duration:{type:[Number,String],default:500},current:{type:[Number,String],default:0},indicatorColor:{type:String,default:""},indicatorActiveColor:{type:String,default:""},previousMargin:{type:String,default:""},nextMargin:{type:String,default:""},currentItemId:{type:String,default:""},skipHiddenItemLayout:{type:[Boolean,String],default:!1},displayMultipleItems:{type:[Number,String],default:1},disableTouch:{type:[Boolean,String],default:!1},navigation:{type:[Boolean,String],default:!1},navigationColor:{type:String,default:"#fff"},navigationActiveColor:{type:String,default:"rgba(53, 53, 53, 0.6)"}},data:function(){return{currentSync:Math.round(this.current)||0,currentItemIdSync:this.currentItemId||"",userTracking:!1,currentChangeSource:"",items:[],isNavigationAuto:!1,hideNavigation:!1,prevDisabled:!1,nextDisabled:!1}},computed:{intervalNumber:function(){var t=Number(this.interval);return isNaN(t)?5e3:t},durationNumber:function(){var t=Number(this.duration);return isNaN(t)?500:t},displayMultipleItemsNumber:function(){var t=Math.round(this.displayMultipleItems);return isNaN(t)?1:t},slidesStyle:function(){var t={};return(this.nextMargin||this.previousMargin)&&(t=this.vertical?{left:0,right:0,top:this._upx2px(this.previousMargin),bottom:this._upx2px(this.nextMargin)}:{top:0,bottom:0,left:this._upx2px(this.previousMargin),right:this._upx2px(this.nextMargin)}),t},slideFrameStyle:function(){var t=Math.abs(100/this.displayMultipleItemsNumber)+"%";return{width:this.vertical?"100%":t,height:this.vertical?t:"100%"}},swiperEnabled:function(){return this.items.length>this.displayMultipleItemsNumber},circularEnabled:function(){return this.circular&&this.swiperEnabled}},watch:{vertical:function(){this._resetLayout()},circular:function(){this._resetLayout()},intervalNumber:function(t){this._timer&&(this._cancelSchedule(),this._scheduleAutoplay())},current:function(t){this._currentCheck()},currentSync:function(t,e){this._currentChanged(t,e),this.$emit("update:current",t),this._setNavigationState()},currentItemId:function(t){this._currentCheck()},currentItemIdSync:function(t){this.$emit("update:currentItemId",t)},displayMultipleItemsNumber:function(){this._resetLayout()},navigation:{immediate:!0,handler:function(t){this.isNavigationAuto="auto"===t,this.hideNavigation=!0!==t||this.isNavigationAuto,this._navigationSwiperAddMouseEvent()}},items:function(){this._setNavigationState()},swiperEnabled:function(t){t||(this.prevDisabled=!0,this.nextDisabled=!0,this.isNavigationAuto&&(this.hideNavigation=!0))}},created:function(){this._invalid=!0,this._viewportPosition=0,this._viewportMoveRatio=1,this._animating=null,this._requestedAnimation=!1,this._userDirectionChecked=!1,this._contentTrackViewport=0,this._contentTrackSpeed=0,this._contentTrackT=0},mounted:function(){var t=this;this._currentCheck(),this.touchtrack(this.$refs.slidesWrapper,"_handleContentTrack",!0),this._resetLayout(),this.$watch((function(){return t.autoplay&&!t.userTracking}),this._inintAutoplay),this._inintAutoplay(this.autoplay&&!this.userTracking),this.$watch("items.length",this._resetLayout),this._navigationSwiperAddMouseEvent()},beforeDestroy:function(){this._cancelSchedule(),cancelAnimationFrame(this._animationFrame)},methods:{_inintAutoplay:function(t){t?this._scheduleAutoplay():this._cancelSchedule()},_currentCheck:function(){var t=-1;if(this.currentItemId)for(var e=0,n=this.items;er/2?1:0)}var o=this.items[t];o&&this._itemReady(o,(function(){var t=n.currentItemIdSync=o.componentInstance.itemId||"";n.$trigger("change",{},{current:n.currentSync,currentItemId:t,source:i})}))},_scheduleAutoplay:function(){var t=this;function e(){t._timer=null,t.currentChangeSource="autoplay",t.circularEnabled?t.currentSync=t._normalizeCurrentValue(t.currentSync+1):t.currentSync=t.currentSync+t.displayMultipleItemsNumbere-this.displayMultipleItemsNumber)return e-this.displayMultipleItemsNumber;return n},_upx2px:function(t){return/\d+[ur]px$/i.test(t)&&t.replace(/\d+[ur]px$/i,(function(t){return"".concat(uni.upx2px(parseFloat(t)),"px")})),t||""},_resetLayout:function(){if(this._isMounted){this._cancelSchedule(),this._endViewportAnimation();for(var t=this.items,e=0;e0&&this._viewportMoveRatio<1||(this._viewportMoveRatio=1)}var r=this._viewportPosition;this._viewportPosition=-2;var o=this.currentSync;o>=0?(this._invalid=!1,this.userTracking?(this._updateViewport(r+o-this._contentTrackViewport),this._contentTrackViewport=o):(this._updateViewport(o),this.autoplay&&this._scheduleAutoplay())):(this._invalid=!0,this._updateViewport(-this.displayMultipleItemsNumber-1))}},_checkCircularLayout:function(t){if(!this._invalid)for(var e=this.items,n=e.length,i=t+this.displayMultipleItemsNumber,r=0;r=this.items.length&&(t-=this.items.length),t=this._transitionStart%1>.5||this._transitionStart<0?t-1:t,this.$trigger("transition",{},{dx:this.vertical?0:t*r.offsetWidth,dy:this.vertical?t*r.offsetHeight:0})},_animateFrameFuncProto:function(){var t=this;if(this._animating){var e=this._animating,n=e.toPos,i=e.acc,r=e.endTime,o=e.source,a=r-Date.now();if(a<=0){this._updateViewport(n),this._animating=null,this._requestedAnimation=!1,this._transitionStart=null;var s=this.items[this.currentSync];s&&this._itemReady(s,(function(){var e=s.componentInstance.itemId||"";t.$trigger("animationfinish",{},{current:t.currentSync,currentItemId:e,source:o})}))}else{var c=i*a*a/2,u=n+c;this._updateViewport(u),this._animationFrame=requestAnimationFrame(this._animateFrameFuncProto.bind(this))}}else this._requestedAnimation=!1},_animateViewport:function(t,e,n){this._cancelViewportAnimation();var i=this.durationNumber,r=this.items.length,o=this._viewportPosition;if(this.circularEnabled)if(n<0){for(;ot;)o-=r}else if(n>0){for(;o>t;)o-=r;for(;o+rt;)o-=r;o+r-tr)&&(i<0?i=-o(-i):i>r&&(i=r+o(i-r)),e._contentTrackSpeed=0),e._updateViewport(i)}var s=this._contentTrackT-n||1;this.vertical?a(-t.dy/this.$refs.slideFrame.offsetHeight,-t.ddy/s):a(-t.dx/this.$refs.slideFrame.offsetWidth,-t.ddx/s)},_handleTrackEnd:function(t){this.userTracking=!1;var e=this._contentTrackSpeed/Math.abs(this._contentTrackSpeed),n=0;!t&&Math.abs(this._contentTrackSpeed)>.2&&(n=.5*e);var i=this._normalizeCurrentValue(this._viewportPosition+n);t?this._updateViewport(this._contentTrackViewport):(this.currentChangeSource="touch",this.currentSync=i,this._animateViewport(i,"touch",0!==n?n:0===i&&this.circularEnabled&&this._viewportPosition>=1?1:0))},_handleContentTrack:function(t){if(!this.disableTouch&&this.items.length&&!this._invalid){if("start"===t.detail.state)return this.userTracking=!0,this._userDirectionChecked=!1,this._handleTrackStart();if("end"===t.detail.state)return this._handleTrackEnd(!1);if("cancel"===t.detail.state)return this._handleTrackEnd(!0);if(this.userTracking){if(!this._userDirectionChecked){this._userDirectionChecked=!0;var e=Math.abs(t.detail.dx),n=Math.abs(t.detail.dy);if((e>=n&&this.vertical||e<=n&&!this.vertical)&&(this.userTracking=!1),!this.userTracking)return void(this.autoplay&&this._scheduleAutoplay())}return this._handleTrackMove(t.detail),!1}}},_onSwiperDotClick:function(t){this._animateViewport(this.currentSync=t,this.currentChangeSource="click",this.circularEnabled?1:0)},_navigationClick:function(t,e,n){if(t.stopPropagation(),!n){var i=this.items.length,r=this.currentSync;switch(e){case"prev":r--,r<0&&this.circularEnabled&&(r=i-1);break;case"next":r++,r>=i&&this.circularEnabled&&(r=0);break}this._onSwiperDotClick(r)}},_navigationMouseMove:function(t){var e=this;clearTimeout(this.hideNavigationTimer);var n=t.clientX,i=t.clientY,r=this.$refs.slidesWrapper.getBoundingClientRect(),o=r.left,a=r.right,s=r.top,c=r.bottom,u=r.width,l=r.height,h=!1;h=this.vertical?!(i-s=t}},render:function(t){var e=this,n=[],i=[];this.$slots.default&&Object(r["d"])(this.$slots.default,t).forEach((function(t){t.componentOptions&&"v-uni-swiper-item"===t.componentOptions.tag&&i.push(t)}));for(var o=function(i,r){var o=e.currentSync;n.push(t("div",{on:{click:function(){return e._onSwiperDotClick(i)}},class:{"uni-swiper-dot":!0,"uni-swiper-dot-active":i=o||i-1&&t.indexOf("MSIE")>-1,n=t.indexOf("Edge")>-1&&!e,i=t.indexOf("Trident")>-1&&t.indexOf("rv:11.0")>-1;if(e){var r=new RegExp("MSIE (\\d+\\.\\d+);");r.test(t);var o=parseFloat(RegExp.$1);return o>6?o:6}return n?-1:i?11:-1}function y(){if(!0!==__uniConfig.darkmode)return Object(_["h"])(__uniConfig.darkmode)?__uniConfig.darkmode:"light";try{return window.matchMedia("(prefers-color-scheme: light)").matches?"light":"dark"}catch(t){return"light"}}var w=navigator.userAgent,S=/android/i.test(w),k=/iphone|ipad|ipod/i.test(w),x=w.match(/Windows NT ([\d|\d.\d]*)/i),C=/Macintosh|Mac/i.test(w),T=/Linux|X11/i.test(w),O=C&&navigator.maxTouchPoints>0;function $(){var t,e,n,i=navigator.language,r="phone";if(k){t="iOS";var o=w.match(/OS\s([\w_]+)\slike/);o&&(e=o[1].replace(/_/g,"."));var a=w.match(/\(([a-zA-Z]+);/);a&&(n=a[1])}else if(S){t="Android";var s=w.match(/Android[\s/]([\w\.]+)[;\s]/);s&&(e=s[1]);for(var c=w.match(/\((.+?)\)/),u=c?c[1].split(";"):w.split(" "),l=[/\bAndroid\b/i,/\bLinux\b/i,/\bU\b/i,/^\s?[a-z][a-z]$/i,/^\s?[a-z][a-z]-[a-z][a-z]$/i,/\bwv\b/i,/\/[\d\.,]+$/,/^\s?[\d\.,]+$/,/\bBrowser\b/i,/\bMobile\b/i],h=0;h0){n=d.split("Build")[0].trim();break}for(var f=void 0,p=0;p=13)&&document.activeElement.blur()};t.addEventListener("focus",(function(){e=!0,clearTimeout(i),document.addEventListener("click",h,!1),s=l,a&&n.$trigger("keyboardheightchange",{},{height:a,duration:0}),f(n),d(n)})),r&&t.addEventListener("click",(function(){!n.disabled&&e&&0===a&&d(n)})),r||(parseInt(o)<12&&t.addEventListener("touchstart",(function(){n.disabled||e||d(n)})),parseFloat(o)>=14.6&&!c&&Object(u["j"])((function(){var t=plus.webview.currentWebview();c=t.getStyle()||{}})));var v=function(){document.removeEventListener("click",h,!1),s=null,a&&n.$trigger("keyboardheightchange",{},{height:0,duration:0}),p(n),r&&(i=setTimeout((function(){d(n,!0)}),300)),n.isApple&&document.documentElement.scrollTo(document.documentElement.scrollLeft,document.documentElement.scrollTop)};t.addEventListener("blur",(function(){n.isApple&&t.blur(),e=!1,v()}))}}}},"5ab3":function(t,e,n){"use strict";var i=n("907b"),r=n.n(i);r.a},"5abe":function(t,e){(function(){"use strict";if("object"===typeof window)if("IntersectionObserver"in window&&"IntersectionObserverEntry"in window&&"intersectionRatio"in window.IntersectionObserverEntry.prototype)"isIntersecting"in window.IntersectionObserverEntry.prototype||Object.defineProperty(window.IntersectionObserverEntry.prototype,"isIntersecting",{get:function(){return this.intersectionRatio>0}});else{var t=window.document,e=[];i.prototype.THROTTLE_TIMEOUT=100,i.prototype.POLL_INTERVAL=null,i.prototype.USE_MUTATION_OBSERVER=!0,i.prototype.observe=function(t){var e=this._observationTargets.some((function(e){return e.element==t}));if(!e){if(!t||1!=t.nodeType)throw new Error("target must be an Element");this._registerInstance(),this._observationTargets.push({element:t,entry:null}),this._monitorIntersections(),this._checkForIntersections()}},i.prototype.unobserve=function(t){this._observationTargets=this._observationTargets.filter((function(e){return e.element!=t})),this._observationTargets.length||(this._unmonitorIntersections(),this._unregisterInstance())},i.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorIntersections(),this._unregisterInstance()},i.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},i.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter((function(t,e,n){if("number"!=typeof t||isNaN(t)||t<0||t>1)throw new Error("threshold must be a number between 0 and 1 inclusively");return t!==n[e-1]}))},i.prototype._parseRootMargin=function(t){var e=t||"0px",n=e.split(/\s+/).map((function(t){var e=/^(-?\d*\.?\d+)(px|%)$/.exec(t);if(!e)throw new Error("rootMargin must be specified in pixels or percent");return{value:parseFloat(e[1]),unit:e[2]}}));return n[1]=n[1]||n[0],n[2]=n[2]||n[0],n[3]=n[3]||n[1],n},i.prototype._monitorIntersections=function(){this._monitoringIntersections||(this._monitoringIntersections=!0,this.POLL_INTERVAL?this._monitoringInterval=setInterval(this._checkForIntersections,this.POLL_INTERVAL):(a(window,"resize",this._checkForIntersections,!0),a(t,"scroll",this._checkForIntersections,!0),this.USE_MUTATION_OBSERVER&&"MutationObserver"in window&&(this._domObserver=new MutationObserver(this._checkForIntersections),this._domObserver.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))))},i.prototype._unmonitorIntersections=function(){this._monitoringIntersections&&(this._monitoringIntersections=!1,clearInterval(this._monitoringInterval),this._monitoringInterval=null,s(window,"resize",this._checkForIntersections,!0),s(t,"scroll",this._checkForIntersections,!0),this._domObserver&&(this._domObserver.disconnect(),this._domObserver=null))},i.prototype._checkForIntersections=function(){var t=this._rootIsInDom(),e=t?this._getRootRect():l();this._observationTargets.forEach((function(i){var o=i.element,a=u(o),s=this._rootContainsTarget(o),c=i.entry,l=t&&s&&this._computeTargetAndRootIntersection(o,e),h=i.entry=new n({time:r(),target:o,boundingClientRect:a,rootBounds:e,intersectionRect:l});c?t&&s?this._hasCrossedThreshold(c,h)&&this._queuedEntries.push(h):c&&c.isIntersecting&&this._queuedEntries.push(h):this._queuedEntries.push(h)}),this),this._queuedEntries.length&&this._callback(this.takeRecords(),this)},i.prototype._computeTargetAndRootIntersection=function(e,n){if("none"!=window.getComputedStyle(e).display){var i=u(e),r=i,o=d(e),a=!1;while(!a){var s=null,l=1==o.nodeType?window.getComputedStyle(o):{};if("none"==l.display)return;if(o==this.root||o==t?(a=!0,s=n):o!=t.body&&o!=t.documentElement&&"visible"!=l.overflow&&(s=u(o)),s&&(r=c(s,r),!r))break;o=d(o)}return r}},i.prototype._getRootRect=function(){var e;if(this.root)e=u(this.root);else{var n=t.documentElement,i=t.body;e={top:0,left:0,right:n.clientWidth||i.clientWidth,width:n.clientWidth||i.clientWidth,bottom:n.clientHeight||i.clientHeight,height:n.clientHeight||i.clientHeight}}return this._expandRectByRootMargin(e)},i.prototype._expandRectByRootMargin=function(t){var e=this._rootMarginValues.map((function(e,n){return"px"==e.unit?e.value:e.value*(n%2?t.width:t.height)/100})),n={top:t.top-e[0],right:t.right+e[1],bottom:t.bottom+e[2],left:t.left-e[3]};return n.width=n.right-n.left,n.height=n.bottom-n.top,n},i.prototype._hasCrossedThreshold=function(t,e){var n=t&&t.isIntersecting?t.intersectionRatio||0:-1,i=e.isIntersecting?e.intersectionRatio||0:-1;if(n!==i)for(var r=0;r=0&&s>=0&&{top:n,bottom:i,left:r,right:o,width:a,height:s}}function u(t){var e;try{e=t.getBoundingClientRect()}catch(n){}return e?(e.width&&e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):l()}function l(){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}function h(t,e){var n=e;while(n){if(n==t)return!0;n=d(n)}return!1}function d(t){var e=t.parentNode;return e&&11==e.nodeType&&e.host?e.host:e&&e.assignedSlot?e.assignedSlot.parentNode:e}})()},"5bb5":function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var i=n("a20d"),r=n("f2b3");function o(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Object(r["j"])((function(){var n=plus.webview.currentWebview().id;plus.webview.postMessageToUniNView({type:"subscribeHandler",args:{type:t,data:e,pageId:n}},i["a"])}))}},"5bb5a":function(t,e,n){},"5bf9":function(t,e,n){},"5c85":function(t,e,n){},"5cf8":function(t,e,n){"use strict";function i(t,e){for(var n=this.$children,r=n.length,o=arguments.length,a=new Array(o>2?o-2:0),s=2;s2?r-2:0),a=2;a2?n-2:0),o=2;o=1;M--)if(0!==z[M])break;if(P>M&&(P=M),0===M)return v[m++]=20971520,v[m++]=20971520,_.bits=1,0;for(A=1;A0&&(t===s||1!==M))return-1;for(V[1]=0,E=1;Eo||t===u&&D>a)return 1;for(;;){C=E-L,g[I]x?(T=H[Y+g[I]],O=B[F+g[I]]):(T=96,O=0),b=1<>L)+y]=C<<24|T<<16|O|0}while(0!==y);b=1<>=1;if(0!==b?(R&=b-1,R+=b):R=0,I++,0===--z[E]){if(E===M)break;E=e[n+g[I]]}if(E>P&&(R&S)!==w){0===L&&(L=P),k+=A,j=E-L,N=1<o||t===u&&D>a)return 1;w=R&S,v[w]=P<<24|j<<16|k-m|0}}return 0!==R&&(v[k+R]=E-L<<24|64<<16|0),_.bits=P,0}},"687b":function(t,e,n){},"6bdf":function(t,e,n){"use strict";(function(t){n.d(e,"a",(function(){return l}));var i=n("85b6"),r=n("f2b3"),o=n("1e88"),a=n("db8e");function s(t){var e={};if(t.id&&(e.id=""),t.dataset&&(e.dataset={}),t.rect&&(e.left=0,e.right=0,e.top=0,e.bottom=0),t.size&&(e.width=document.documentElement.clientWidth,e.height=document.documentElement.clientHeight),t.scrollOffset){var n=document.documentElement,i=document.body;e.scrollLeft=n.scrollLeft||i.scrollLeft||0,e.scrollTop=n.scrollTop||i.scrollTop||0,e.scrollHeight=n.scrollHeight||i.scrollHeight||0,e.scrollWidth=n.scrollWidth||i.scrollWidth||0}return e}function c(t,e){var n={},a=Object(o["a"])(),s=a.top;if(e.id&&(n.id=t.id),e.dataset&&(n.dataset=Object(i["a"])(t)),e.rect||e.size){var c=t.getBoundingClientRect();e.rect&&(n.left=c.left,n.right=c.right,n.top=c.top-s,n.bottom=c.bottom-s),e.size&&(n.width=c.width,n.height=c.height)}if(Array.isArray(e.properties)){var u=t.__vue__&&t.__vue__.$props;u&&e.properties.forEach((function(t){"string"===typeof t&&(t=Object(r["b"])(t),null!=u[t]&&(n[t]=u[t]))}))}if(e.scrollOffset&&("UNI-SCROLL-VIEW"===t.tagName&&t.__vue__&&t.__vue__.getScrollPosition?Object.assign(n,t.__vue__.getScrollPosition()):(n.scrollLeft=0,n.scrollTop=0,n.scrollHeight=0,n.scrollWidth=0)),Array.isArray(e.computedStyle)){var l=getComputedStyle(t);e.computedStyle.forEach((function(t){n[t]=l[t]}))}return e.context&&t.__vue__&&t.__vue__._getContextInfo&&(n.context=t.__vue__._getContextInfo()),n}function u(t,e,n,i,r){var o=Object(a["a"])(Object(a["b"])(e,t));if(!o||o&&8===o.nodeType)return i?null:[];if(i){var s=o.matches(n)?o:o.querySelector(n);return s?c(s,r):null}var u=[],l=o.querySelectorAll(n);return l&&l.length&&(u=[].map.call(l,(function(t){return c(t,r)}))),o.matches(n)&&u.unshift(c(o,r)),u}function l(e,n){var i,r=e.reqId,o=e.reqs;if(n._isVue)i=n;else{var a=getCurrentPages(),c=a.find((function(t){return t.$page.id===n}));if(!c)throw new Error("Not Found:Page[".concat(n,"]"));i=c.$vm}var l=[];o.forEach((function(t){var e=t.component,n=t.selector,r=t.single,o=t.fields;0===e?l.push(s(o)):l.push(u(i,e,n,r,o))})),t.publishHandler("onRequestComponentInfo",{reqId:r,res:l})}}).call(this,n("501c"))},"70f4":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-label",t._g({class:{"uni-label-pointer":t.pointer},on:{click:t._onClick}},t.$listeners),[t._t("default")],2)},r=[],o=n("897e"),a=o["a"],s=(n("6730"),n("0c7c")),c=Object(s["a"])(a,i,r,!1,null,null,null);e["default"]=c.exports},7107:function(t,e,n){"use strict";(function(t){function i(e){var n=e.options,i=e.callbackId,r=n.family,o=n.source,a=n.desc,s=void 0===a?{}:a,c=document.fonts;if(c){var u=new FontFace(r,o,s);u.load().then((function(){c.add(u),t.publishHandler("onLoadFontFaceCallback",{callbackId:i,data:{errMsg:"loadFontFace:ok"}})})).catch((function(e){t.publishHandler("onLoadFontFaceCallback",{callbackId:i,data:{errMsg:"loadFontFace:fail ".concat(e)}})}))}else{var l=document.createElement("style");l.innerText='@font-face{font-family:"'.concat(r,'";src:').concat(o,";font-style:").concat(s.style,";font-weight:").concat(s.weight,";font-stretch:").concat(s.stretch,";unicode-range:").concat(s.unicodeRange,";font-variant:").concat(s.variant,";font-feature-settings:").concat(s.featureSettings,";}"),document.head.appendChild(l),t.publishHandler("onLoadFontFaceCallback",{callbackId:i,data:{errMsg:"loadFontFace:ok"}})}}n.d(e,"a",(function(){return i}))}).call(this,n("501c"))},"717e":function(t,e,n){"use strict";var i=n("9e6e"),r=n("be7f"),o=n("7b27"),a=n("2ceb"),s=n("4dc6"),c=n("8936"),u=n("8013"),l=Object.prototype.toString;function h(t){if(!(this instanceof h))return new h(t);this.options=r.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0===(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new c,this.strm.avail_out=0;var n=i.inflateInit2(this.strm,e.windowBits);if(n!==a.Z_OK)throw new Error(s[n]);if(this.header=new u,i.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"===typeof e.dictionary?e.dictionary=o.string2buf(e.dictionary):"[object ArrayBuffer]"===l.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(n=i.inflateSetDictionary(this.strm,e.dictionary),n!==a.Z_OK)))throw new Error(s[n])}function d(t,e){var n=new h(e);if(n.push(t,!0),n.err)throw n.msg||s[n.err];return n.result}function f(t,e){return e=e||{},e.raw=!0,d(t,e)}h.prototype.push=function(t,e){var n,s,c,u,h,d=this.strm,f=this.options.chunkSize,p=this.options.dictionary,v=!1;if(this.ended)return!1;s=e===~~e?e:!0===e?a.Z_FINISH:a.Z_NO_FLUSH,"string"===typeof t?d.input=o.binstring2buf(t):"[object ArrayBuffer]"===l.call(t)?d.input=new Uint8Array(t):d.input=t,d.next_in=0,d.avail_in=d.input.length;do{if(0===d.avail_out&&(d.output=new r.Buf8(f),d.next_out=0,d.avail_out=f),n=i.inflate(d,a.Z_NO_FLUSH),n===a.Z_NEED_DICT&&p&&(n=i.inflateSetDictionary(this.strm,p)),n===a.Z_BUF_ERROR&&!0===v&&(n=a.Z_OK,v=!1),n!==a.Z_STREAM_END&&n!==a.Z_OK)return this.onEnd(n),this.ended=!0,!1;d.next_out&&(0!==d.avail_out&&n!==a.Z_STREAM_END&&(0!==d.avail_in||s!==a.Z_FINISH&&s!==a.Z_SYNC_FLUSH)||("string"===this.options.to?(c=o.utf8border(d.output,d.next_out),u=d.next_out-c,h=o.buf2string(d.output,c),d.next_out=u,d.avail_out=f-u,u&&r.arraySet(d.output,d.output,c,u,0),this.onData(h)):this.onData(r.shrinkBuf(d.output,d.next_out)))),0===d.avail_in&&0===d.avail_out&&(v=!0)}while((d.avail_in>0||0===d.avail_out)&&n!==a.Z_STREAM_END);return n===a.Z_STREAM_END&&(s=a.Z_FINISH),s===a.Z_FINISH?(n=i.inflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===a.Z_OK):s!==a.Z_SYNC_FLUSH||(this.onEnd(a.Z_OK),d.avail_out=0,!0)},h.prototype.onData=function(t){this.chunks.push(t)},h.prototype.onEnd=function(t){t===a.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=r.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},e.Inflate=h,e.inflate=d,e.inflateRaw=f,e.ungzip=d},7225:function(t,e,n){},"72b3":function(t,e,n){"use strict";function i(t,e,n){return t>e-n&&t0){var u=(-n-Math.sqrt(o))/(2*i),l=(-n+Math.sqrt(o))/(2*i),h=(e-u*t)/(l-u),d=t-h;return{x:function(t){var e,n;return t===this._t&&(e=this._powER1T,n=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),n||(n=this._powER2T=Math.pow(Math.E,l*t)),d*e+h*n},dx:function(t){var e,n;return t===this._t&&(e=this._powER1T,n=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),n||(n=this._powER2T=Math.pow(Math.E,l*t)),d*u*e+h*l*n}}}var f=Math.sqrt(4*i*r-n*n)/(2*i),p=-n/2*i,v=t,m=(e-p*t)/f;return{x:function(t){return Math.pow(Math.E,p*t)*(v*Math.cos(f*t)+m*Math.sin(f*t))},dx:function(t){var e=Math.pow(Math.E,p*t),n=Math.cos(f*t),i=Math.sin(f*t);return e*(m*f*n-v*f*i)+p*e*(m*i+v*n)}}},o.prototype.x=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._endPosition+this._solution.x(t):0},o.prototype.dx=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._solution.dx(t):0},o.prototype.setEnd=function(t,e,n){if(n||(n=(new Date).getTime()),t!==this._endPosition||!r(e,.4)){e=e||0;var i=this._endPosition;this._solution&&(r(e,.4)&&(e=this._solution.dx((n-this._startTime)/1e3)),i=this._solution.x((n-this._startTime)/1e3),r(e,.4)&&(e=0),r(i,.4)&&(i=0),i+=this._endPosition),this._solution&&r(i-t,.4)&&r(e,.4)||(this._endPosition=t,this._solution=this._solve(i-this._endPosition,e),this._startTime=n)}},o.prototype.snap=function(t){this._startTime=(new Date).getTime(),this._endPosition=t,this._solution={x:function(){return 0},dx:function(){return 0}}},o.prototype.done=function(t){return t||(t=(new Date).getTime()),i(this.x(),this._endPosition,.4)&&r(this.dx(),.4)},o.prototype.reconfigure=function(t,e,n){this._m=t,this._k=e,this._c=n,this.done()||(this._solution=this._solve(this.x()-this._endPosition,this.dx()),this._startTime=(new Date).getTime())},o.prototype.springConstant=function(){return this._k},o.prototype.damping=function(){return this._c},o.prototype.configuration=function(){function t(t,e){t.reconfigure(1,e,t.damping())}function e(t,e){t.reconfigure(1,t.springConstant(),e)}return[{label:"Spring Constant",read:this.springConstant.bind(this),write:t.bind(this,this),min:100,max:1e3},{label:"Damping",read:this.damping.bind(this),write:e.bind(this,this),min:1,max:500}]}},7466:function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-map",t._g({},t.$listeners),[n("div",{ref:"container",staticClass:"uni-map-container"}),t._l(t.mapControls,(function(e,i){return n("v-uni-cover-image",{key:i,style:e.position,attrs:{src:e.iconPath,"auto-size":""},on:{click:function(n){return t.controlclick(e)}}})})),n("div",{staticClass:"uni-map-slot"},[t._t("default")],2)],2)},r=[],o=n("a521"),a=o["a"],s=(n("a252"),n("0c7c")),c=Object(s["a"])(a,i,r,!1,null,null,null);e["default"]=c.exports},7522:function(t,e,n){},"76a8":function(t,e,n){"use strict";var i=n("3cd3"),r=n.n(i);r.a},"77a8":function(t,e,n){},7822:function(t,e,n){},"7b27":function(t,e,n){"use strict";var i=n("be7f"),r=!0,o=!0;try{String.fromCharCode.apply(null,[0])}catch(u){r=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(u){o=!1}for(var a=new i.Buf8(256),s=0;s<256;s++)a[s]=s>=252?6:s>=248?5:s>=240?4:s>=224?3:s>=192?2:1;function c(t,e){if(e<65534&&(t.subarray&&o||!t.subarray&&r))return String.fromCharCode.apply(null,i.shrinkBuf(t,e));for(var n="",a=0;a>>6,e[a++]=128|63&n):n<65536?(e[a++]=224|n>>>12,e[a++]=128|n>>>6&63,e[a++]=128|63&n):(e[a++]=240|n>>>18,e[a++]=128|n>>>12&63,e[a++]=128|n>>>6&63,e[a++]=128|63&n);return e},e.buf2binstring=function(t){return c(t,t.length)},e.binstring2buf=function(t){for(var e=new i.Buf8(t.length),n=0,r=e.length;n4)u[i++]=65533,n+=o-1;else{r&=2===o?31:3===o?15:7;while(o>1&&n1?u[i++]=65533:r<65536?u[i++]=r:(r-=65536,u[i++]=55296|r>>10&1023,u[i++]=56320|1023&r)}return c(u,i)},e.utf8border=function(t,e){var n;e=e||t.length,e>t.length&&(e=t.length),n=e-1;while(n>=0&&128===(192&t[n]))n--;return n<0||0===n?e:n+a[t[n]]>e?n:e}},"7bb3":function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-checkbox",t._g({attrs:{disabled:t.disabled},on:{click:t._onClick}},t.$listeners),[n("div",{staticClass:"uni-checkbox-wrapper"},[n("div",{staticClass:"uni-checkbox-input",class:{"uni-checkbox-input-checked":t.checkboxChecked,"uni-checkbox-input-disabled":t.disabled},style:{color:t.color}}),t._t("default")],2)])},r=[],o=n("8af1"),a={name:"Checkbox",mixins:[o["a"],o["e"]],props:{checked:{type:[Boolean,String],default:!1},id:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},color:{type:String,default:"#007aff"},value:{type:String,default:""}},data:function(){return{checkboxChecked:this.checked,checkboxValue:this.value}},watch:{checked:function(t){this.checkboxChecked=t},value:function(t){this.checkboxValue=t}},listeners:{"label-click":"_onClick","@label-click":"_onClick"},created:function(){this.$dispatch("CheckboxGroup","uni-checkbox-group-update",{type:"add",vm:this}),this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("CheckboxGroup","uni-checkbox-group-update",{type:"remove",vm:this}),this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_onClick:function(t){this.disabled||(this.checkboxChecked=!this.checkboxChecked,this.$dispatch("CheckboxGroup","uni-checkbox-change",t))},_resetFormData:function(){this.checkboxChecked=!1}}},s=a,c=(n("f53a"),n("0c7c")),u=Object(c["a"])(s,i,r,!1,null,null,null);e["default"]=u.exports},"7c2b":function(t,e,n){"use strict";var i=n("e804"),r=n.n(i);r.a},"7d0f":function(t,e,n){"use strict";var i=n("5129"),r=n.n(i),o=n("85b6"),a=n("f2b3");function s(t){t.config.errorHandler=function(e,n,i){var r=Object(a["n"])(e);t.util.warn("Error in ".concat(i,': "').concat("Error"===r?e.toString():e,'"'),n);var s="function"===typeof getApp&&getApp();s&&Object(o["b"])(s.$options,"onError")?s.__call_hook("onError",e):console.error(e)};var e=t.config.isReservedTag;t.config.isReservedTag=function(t){return-1!==r.a.indexOf(t)||e(t)},t.config.ignoredElements=r.a;var n=t.config.getTagNamespace,i=["switch","image","text","view"];t.config.getTagNamespace=function(t){return!~i.indexOf(t)&&n(t)}}var c=n("8c15"),u=n("a34f"),l=n("3e5d");function h(t){Object.defineProperty(t.prototype,"$page",{get:function(){return getCurrentPages()[0].$page}}),t.prototype.$handleVModelEvent=function(t,e){l["b"].sendUIEvent(this._$id,t,{type:"input",target:{value:e}})},t.prototype.$handleViewEvent=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.stop&&t.stopPropagation(),e.prevent&&t.preventDefault();var n=this.$handleEvent(t),i=this._$id,r=t.$origCurrentTarget||t.currentTarget,o=(r===this.$el&&"page"!==this.$options.mpType?"r-":"")+n.options.nid;if("undefined"===typeof o)return console.error("[".concat(i,"] nid not found"));delete n._processed,delete n.mp,delete n.preventDefault,delete n.stopPropagation,delete n.options,delete n.$origCurrentTarget,l["b"].sendUIEvent(i,o,n)}}n("3878"),e["a"]={install:function(t,e){t.prototype._$getRealPath=u["a"],s(t),c["a"].install(t,e),Object(l["a"])(t),h(t)}}},"7e6a":function(t,e,n){"use strict";var i=n("5bf9"),r=n.n(i);r.a},"7eb1":function(t,e,n){"use strict";var i=30,r=12;t.exports=function(t,e){var n,o,a,s,c,u,l,h,d,f,p,v,m,g,_,b,y,w,S,k,x,C,T,O,$;n=t.state,o=t.next_in,O=t.input,a=o+(t.avail_in-5),s=t.next_out,$=t.output,c=s-(e-t.avail_out),u=s+(t.avail_out-257),l=n.dmax,h=n.wsize,d=n.whave,f=n.wnext,p=n.window,v=n.hold,m=n.bits,g=n.lencode,_=n.distcode,b=(1<>>24,v>>>=S,m-=S,S=w>>>16&255,0===S)$[s++]=65535&w;else{if(!(16&S)){if(0===(64&S)){w=g[(65535&w)+(v&(1<>>=S,m-=S),m<15&&(v+=O[o++]<>>24,v>>>=S,m-=S,S=w>>>16&255,!(16&S)){if(0===(64&S)){w=_[(65535&w)+(v&(1<l){t.msg="invalid distance too far back",n.mode=i;break t}if(v>>>=S,m-=S,S=s-c,x>S){if(S=x-S,S>d&&n.sane){t.msg="invalid distance too far back",n.mode=i;break t}if(C=0,T=p,0===f){if(C+=h-S,S2)$[s++]=T[C++],$[s++]=T[C++],$[s++]=T[C++],k-=3;k&&($[s++]=T[C++],k>1&&($[s++]=T[C++]))}else{C=s-x;do{$[s++]=$[C++],$[s++]=$[C++],$[s++]=$[C++],k-=3}while(k>2);k&&($[s++]=$[C++],k>1&&($[s++]=$[C++]))}break}}break}}while(o>3,o-=k,m-=k<<3,v&=(1<0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1?arguments[1]:void 0;return Array.isArray(t[e])&&t[e].length}function o(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=JSON.parse(JSON.stringify(t));return e}function a(t){var e={},n=t.__vue__;function r(t,n){var r=t.$attrs;for(var o in r)if(o.startsWith("data-")){var a=Object(i["b"])(o.substr(5).toLowerCase()),s=r[o];e[a]=n?s:e[a]||s}}if(n){var a=n;while(a&&a.$el===t)r(a),a=a.$children[0];var s=n.$parent;while(s&&s.$el===t)r(s,!0),s=s.$parent}else e=Object.assign({},t.dataset,t.__uniDataset);return o(e)}},"86a1":function(t,e,n){},8842:function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("uni-movable-view",t._g({},t.$listeners),[n("v-uni-resize-sensor",{on:{resize:t.setParent}}),t._t("default")],2)},r=[],o=n("ba15");function a(t,e,n){return t>e-n&&tthis._t&&(t=this._t,this._lastDt=t);var e=this._x_v*t+.5*this._x_a*Math.pow(t,2)+this._x_s,n=this._y_v*t+.5*this._y_a*Math.pow(t,2)+this._y_s;return(this._x_a>0&&ethis._endPositionX)&&(e=this._endPositionX),(this._y_a>0&&nthis._endPositionY)&&(n=this._endPositionY),{x:e,y:n}},u.prototype.ds=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),t>this._t&&(t=this._t),{dx:this._x_v+this._x_a*t,dy:this._y_v+this._y_a*t}},u.prototype.delta=function(){return{x:-1.5*Math.pow(this._x_v,2)/this._x_a||0,y:-1.5*Math.pow(this._y_v,2)/this._y_a||0}},u.prototype.dt=function(){return-this._x_v/this._x_a},u.prototype.done=function(){var t=a(this.s().x,this._endPositionX)||a(this.s().y,this._endPositionY)||this._lastDt===this._t;return this._lastDt=null,t},u.prototype.setEnd=function(t,e){this._endPositionX=t,this._endPositionY=e},u.prototype.reconfigure=function(t,e){this._m=t,this._f=1e3*e},l.prototype._solve=function(t,e){var n=this._c,i=this._m,r=this._k,o=n*n-4*i*r;if(0===o){var a=-n/(2*i),s=t,c=e/(a*t);return{x:function(t){return(s+c*t)*Math.pow(Math.E,a*t)},dx:function(t){var e=Math.pow(Math.E,a*t);return a*(s+c*t)*e+c*e}}}if(o>0){var u=(-n-Math.sqrt(o))/(2*i),l=(-n+Math.sqrt(o))/(2*i),h=(e-u*t)/(l-u),d=t-h;return{x:function(t){var e,n;return t===this._t&&(e=this._powER1T,n=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),n||(n=this._powER2T=Math.pow(Math.E,l*t)),d*e+h*n},dx:function(t){var e,n;return t===this._t&&(e=this._powER1T,n=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),n||(n=this._powER2T=Math.pow(Math.E,l*t)),d*u*e+h*l*n}}}var f=Math.sqrt(4*i*r-n*n)/(2*i),p=-n/2*i,v=t,m=(e-p*t)/f;return{x:function(t){return Math.pow(Math.E,p*t)*(v*Math.cos(f*t)+m*Math.sin(f*t))},dx:function(t){var e=Math.pow(Math.E,p*t),n=Math.cos(f*t),i=Math.sin(f*t);return e*(m*f*n-v*f*i)+p*e*(m*i+v*n)}}},l.prototype.x=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._endPosition+this._solution.x(t):0},l.prototype.dx=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._solution.dx(t):0},l.prototype.setEnd=function(t,e,n){if(n||(n=(new Date).getTime()),t!==this._endPosition||!s(e,.1)){e=e||0;var i=this._endPosition;this._solution&&(s(e,.1)&&(e=this._solution.dx((n-this._startTime)/1e3)),i=this._solution.x((n-this._startTime)/1e3),s(e,.1)&&(e=0),s(i,.1)&&(i=0),i+=this._endPosition),this._solution&&s(i-t,.1)&&s(e,.1)||(this._endPosition=t,this._solution=this._solve(i-this._endPosition,e),this._startTime=n)}},l.prototype.snap=function(t){this._startTime=(new Date).getTime(),this._endPosition=t,this._solution={x:function(){return 0},dx:function(){return 0}}},l.prototype.done=function(t){return t||(t=(new Date).getTime()),a(this.x(),this._endPosition,.1)&&s(this.dx(),.1)},l.prototype.reconfigure=function(t,e,n){this._m=t,this._k=e,this._c=n,this.done()||(this._solution=this._solve(this.x()-this._endPosition,this.dx()),this._startTime=(new Date).getTime())},l.prototype.springConstant=function(){return this._k},l.prototype.damping=function(){return this._c},l.prototype.configuration=function(){function t(t,e){t.reconfigure(1,e,t.damping())}function e(t,e){t.reconfigure(1,t.springConstant(),e)}return[{label:"Spring Constant",read:this.springConstant.bind(this),write:t.bind(this,this),min:100,max:1e3},{label:"Damping",read:this.damping.bind(this),write:e.bind(this,this),min:1,max:500}]},h.prototype.setEnd=function(t,e,n,i){var r=(new Date).getTime();this._springX.setEnd(t,i,r),this._springY.setEnd(e,i,r),this._springScale.setEnd(n,i,r),this._startTime=r},h.prototype.x=function(){var t=((new Date).getTime()-this._startTime)/1e3;return{x:this._springX.x(t),y:this._springY.x(t),scale:this._springScale.x(t)}},h.prototype.done=function(){var t=(new Date).getTime();return this._springX.done(t)&&this._springY.done(t)&&this._springScale.done(t)},h.prototype.reconfigure=function(t,e,n){this._springX.reconfigure(t,e,n),this._springY.reconfigure(t,e,n),this._springScale.reconfigure(t,e,n)};var d=n("2a0a"),f=!1;function p(t){f||(f=!0,requestAnimationFrame((function(){t(),f=!1})))}function v(t,e){if(t===e)return 0;var n=t.offsetLeft;return t.offsetParent?n+=v(t.offsetParent,e):0}function m(t,e){if(t===e)return 0;var n=t.offsetTop;return t.offsetParent?n+=m(t.offsetParent,e):0}function g(t,e){return+((1e3*t-1e3*e)/1e3).toFixed(1)}function _(t,e,n){var i=function(t){t&&t.id&&cancelAnimationFrame(t.id),t&&(t.cancelled=!0)},r={id:0,cancelled:!1};function o(e,n,i,r){if(!e||!e.cancelled){i(n);var a=t.done();a||e.cancelled||(e.id=requestAnimationFrame(o.bind(null,e,n,i,r))),a&&r&&r(n)}}return o(r,t,e,n),{cancel:i.bind(null,r),model:t}}var b={name:"MovableView",mixins:[o["a"]],props:{direction:{type:String,default:"none"},inertia:{type:[Boolean,String],default:!1},outOfBounds:{type:[Boolean,String],default:!1},x:{type:[Number,String],default:0},y:{type:[Number,String],default:0},damping:{type:[Number,String],default:20},friction:{type:[Number,String],default:2},disabled:{type:[Boolean,String],default:!1},scale:{type:[Boolean,String],default:!1},scaleMin:{type:[Number,String],default:.5},scaleMax:{type:[Number,String],default:10},scaleValue:{type:[Number,String],default:1},animation:{type:[Boolean,String],default:!0}},data:function(){return{xSync:this._getPx(this.x),ySync:this._getPx(this.y),scaleValueSync:Number(this.scaleValue)||1,width:0,height:0,minX:0,minY:0,maxX:0,maxY:0}},computed:{dampingNumber:function(){var t=Number(this.damping);return isNaN(t)?20:t},frictionNumber:function(){var t=Number(this.friction);return isNaN(t)||t<=0?2:t},scaleMinNumber:function(){var t=Number(this.scaleMin);return isNaN(t)?.5:t},scaleMaxNumber:function(){var t=Number(this.scaleMax);return isNaN(t)?10:t},xMove:function(){return"all"===this.direction||"horizontal"===this.direction},yMove:function(){return"all"===this.direction||"vertical"===this.direction}},watch:{x:function(t){this.xSync=this._getPx(t)},xSync:function(t){this._setX(t)},y:function(t){this.ySync=this._getPx(t)},ySync:function(t){this._setY(t)},disabled:function(){this.__handleTouchStart()},scaleValue:function(t){this.scaleValueSync=Number(t)||0},scaleValueSync:function(t){this._setScaleValue(t)},scaleMinNumber:function(){this._setScaleMinOrMax()},scaleMaxNumber:function(){this._setScaleMinOrMax()}},created:function(){this._offset={x:0,y:0},this._scaleOffset={x:0,y:0},this._translateX=0,this._translateY=0,this._scale=1,this._oldScale=1,this._STD=new h(1,9*Math.pow(this.dampingNumber,2)/40,this.dampingNumber),this._friction=new u(1,this.frictionNumber),this._declineX=new c,this._declineY=new c,this.__touchInfo={historyX:[0,0],historyY:[0,0],historyT:[0,0]}},mounted:function(){this.touchtrack(this.$el,"_onTrack"),this.setParent(),this._friction.reconfigure(1,this.frictionNumber),this._STD.reconfigure(1,9*Math.pow(this.dampingNumber,2)/40,this.dampingNumber),this.$el.style.transformOrigin="center",Object(d["b"])()},methods:{_getPx:function(t){return/\d+[ur]px$/i.test(t)?uni.upx2px(parseFloat(t)):Number(t)||0},_setX:function(t){if(this.xMove){if(t+this._scaleOffset.x===this._translateX)return this._translateX;this._SFA&&this._SFA.cancel(),this._animationTo(t+this._scaleOffset.x,this.ySync+this._scaleOffset.y,this._scale)}return t},_setY:function(t){if(this.yMove){if(t+this._scaleOffset.y===this._translateY)return this._translateY;this._SFA&&this._SFA.cancel(),this._animationTo(this.xSync+this._scaleOffset.x,t+this._scaleOffset.y,this._scale)}return t},_setScaleMinOrMax:function(){if(!this.scale)return!1;this._updateScale(this._scale,!0),this._updateOldScale(this._scale)},_setScaleValue:function(t){return!!this.scale&&(t=this._adjustScale(t),this._updateScale(t,!0),this._updateOldScale(t),t)},__handleTouchStart:function(){this._isScaling||this.disabled||(Object(d["a"])({disable:!0}),this._FA&&this._FA.cancel(),this._SFA&&this._SFA.cancel(),this.__touchInfo.historyX=[0,0],this.__touchInfo.historyY=[0,0],this.__touchInfo.historyT=[0,0],this.xMove&&(this.__baseX=this._translateX),this.yMove&&(this.__baseY=this._translateY),this.$el.style.willChange="transform",this._checkCanMove=null,this._firstMoveDirection=null,this._isTouching=!0)},__handleTouchMove:function(t){var e=this;if(!this._isScaling&&!this.disabled&&this._isTouching){var n=this._translateX,i=this._translateY;if(null===this._firstMoveDirection&&(this._firstMoveDirection=Math.abs(t.detail.dx/t.detail.dy)>1?"htouchmove":"vtouchmove"),this.xMove&&(n=t.detail.dx+this.__baseX,this.__touchInfo.historyX.shift(),this.__touchInfo.historyX.push(n),this.yMove||null!==this._checkCanMove||(this._checkCanMove=Math.abs(t.detail.dx/t.detail.dy)<1)),this.yMove&&(i=t.detail.dy+this.__baseY,this.__touchInfo.historyY.shift(),this.__touchInfo.historyY.push(i),this.xMove||null!==this._checkCanMove||(this._checkCanMove=Math.abs(t.detail.dy/t.detail.dx)<1)),this.__touchInfo.historyT.shift(),this.__touchInfo.historyT.push(t.detail.timeStamp),!this._checkCanMove){t.preventDefault();var r="touch";nthis.maxX&&(this.outOfBounds?(r="touch-out-of-bounds",n=this.maxX+this._declineX.x(n-this.maxX)):n=this.maxX),ithis.maxY&&(this.outOfBounds?(r="touch-out-of-bounds",i=this.maxY+this._declineY.x(i-this.maxY)):i=this.maxY),p((function(){e._setTransform(n,i,e._scale,r)}))}}},__handleTouchEnd:function(){var t=this;if(!this._isScaling&&!this.disabled&&this._isTouching&&(Object(d["a"])({disable:!1}),this.$el.style.willChange="auto",this._isTouching=!1,!this._checkCanMove&&!this._revise("out-of-bounds")&&this.inertia)){var e=1e3*(this.__touchInfo.historyX[1]-this.__touchInfo.historyX[0])/(this.__touchInfo.historyT[1]-this.__touchInfo.historyT[0]),n=1e3*(this.__touchInfo.historyY[1]-this.__touchInfo.historyY[0])/(this.__touchInfo.historyT[1]-this.__touchInfo.historyT[0]);this._friction.setV(e,n),this._friction.setS(this._translateX,this._translateY);var i=this._friction.delta().x,r=this._friction.delta().y,o=i+this._translateX,a=r+this._translateY;othis.maxX&&(o=this.maxX,a=this._translateY+(this.maxX-this._translateX)*r/i),athis.maxY&&(a=this.maxY,o=this._translateX+(this.maxY-this._translateY)*i/r),this._friction.setEnd(o,a),this._FA=_(this._friction,(function(){var e=t._friction.s(),n=e.x,i=e.y;t._setTransform(n,i,t._scale,"friction")}),(function(){t._FA.cancel()}))}},_onTrack:function(t){switch(t.detail.state){case"start":this.__handleTouchStart();break;case"move":this.__handleTouchMove(t);break;case"end":this.__handleTouchEnd()}},_getLimitXY:function(t,e){var n=!1;return t>this.maxX?(t=this.maxX,n=!0):tthis.maxY?(e=this.maxY,n=!0):e3&&void 0!==arguments[3]?arguments[3]:"",r=arguments.length>4?arguments[4]:void 0,o=arguments.length>5?arguments[5]:void 0;null!==t&&"NaN"!==t.toString()&&"number"===typeof t||(t=this._translateX||0),null!==e&&"NaN"!==e.toString()&&"number"===typeof e||(e=this._translateY||0),t=Number(t.toFixed(1)),e=Number(e.toFixed(1)),n=Number(n.toFixed(1)),this._translateX===t&&this._translateY===e||r||this.$trigger("change",{},{x:g(t,this._scaleOffset.x),y:g(e,this._scaleOffset.y),source:i}),this.scale||(n=this._scale),n=this._adjustScale(n),n=+n.toFixed(3),o&&n!==this._scale&&this.$trigger("scale",{},{x:t,y:e,scale:n});var a="translateX("+t+"px) translateY("+e+"px) translateZ(0px) scale("+n+")";this.$el.style.transform=a,this.$el.style.webkitTransform=a,this._translateX=t,this._translateY=e,this._scale=n}}},y=b,w=(n("7c2b"),n("0c7c")),S=Object(w["a"])(y,i,r,!1,null,null,null);e["default"]=S.exports},8875:function(t,e,n){var i,r,o;(function(n,a){r=[],i=a,o="function"===typeof i?i.apply(e,r):i,void 0===o||(t.exports=o)})("undefined"!==typeof self&&self,(function(){function t(){if(document.currentScript)return document.currentScript;try{throw new Error}catch(h){var t,e,n,i=/.*at [^(]*\((.*):(.+):(.+)\)$/gi,r=/@([^@]*):(\d+):(\d+)\s*$/gi,o=i.exec(h.stack)||r.exec(h.stack),a=o&&o[1]||!1,s=o&&o[2]||!1,c=document.location.href.replace(document.location.hash,""),u=document.getElementsByTagName("script");a===c&&(t=document.documentElement.outerHTML,e=new RegExp("(?:[^\\n]+?\\n){0,"+(s-2)+"}[^<]*