diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json
index 582561b..a49094c 100644
--- a/.hbuilderx/launch.json
+++ b/.hbuilderx/launch.json
@@ -1,16 +1,20 @@
-{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
- // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
- "version": "0.0",
- "configurations": [{
- "app-plus" :
- {
- "launchtype" : "local"
- },
- "default" :
- {
- "launchtype" : "local"
- },
- "type" : "uniCloud"
- }
+{
+ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
+ // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
+ "version" : "0.0",
+ "configurations" : [
+ {
+ "app-plus" : {
+ "launchtype" : "local"
+ },
+ "default" : {
+ "launchtype" : "local"
+ },
+ "type" : "uniCloud"
+ },
+ {
+ "playground" : "custom",
+ "type" : "uni-app:app-ios"
+ }
]
}
diff --git a/components/commBookItemThree/index.vue b/components/commBookItemThree/index.vue
index 7ce5fa0..979cfff 100644
--- a/components/commBookItemThree/index.vue
+++ b/components/commBookItemThree/index.vue
@@ -88,8 +88,9 @@
})
},
toNovelReading() {
+ const bookId = this.bookId;
uni.navigateTo({
- url: `/pages/novelReading/novelReading`
+ url: `/pages/novelReading/novelReading?sid=${bookId}`
})
}
}
diff --git a/manifest.json b/manifest.json
index 85a9c97..31f4835 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,5 +1,5 @@
{
- "name" : "app_ancientSayings",
+ "name" : "古言小说",
"appid" : "__UNI__474F351",
"description" : "",
"versionName" : "1.0.0",
@@ -15,6 +15,7 @@
"offset" : "none|auto" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none"
}
},
+ "bounce" : "none", // 将回弹属性关掉
"usingComponents" : true,
"nvueStyleCompiler" : "uni-app",
"compilerVersion" : 3,
@@ -49,39 +50,44 @@
]
},
/* ios打包配置 */
- "ios" : {},
+ "ios" : {
+ "dSYMs" : false
+ },
/* SDK配置 */
- "sdkConfigs" : {},
+ "sdkConfigs" : {
+ "ad" : {}
+ },
"icons" : {
"android" : {
- "hdpi" : "static/app_logo.png",
- "xhdpi" : "static/app_logo.png",
- "xxhdpi" : "static/app_logo.png",
- "xxxhdpi" : "static/app_logo.png"
+ "hdpi" : "unpackage/res/icons/72x72.png",
+ "xhdpi" : "unpackage/res/icons/96x96.png",
+ "xxhdpi" : "unpackage/res/icons/144x144.png",
+ "xxxhdpi" : "unpackage/res/icons/192x192.png"
},
"ios" : {
- "appstore" : "static/app_logo.png",
+ // "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"
+ "app@2x" : "unpackage/res/icons/120x120.png",
+ "app@3x" : "unpackage/res/icons/180x180.png",
+ "spotlight@2x" : "unpackage/res/icons/80x80.png",
+ "spotlight@3x" : "unpackage/res/icons/120x120.png",
+ "settings@2x" : "unpackage/res/icons/58x58.png",
+ "settings@3x" : "unpackage/res/icons/87x87.png",
+ "notification@2x" : "unpackage/res/icons/40x40.png",
+ "notification@3x" : "unpackage/res/icons/60x60.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"
- }
+ "app" : "unpackage/res/icons/76x76.png",
+ "app@2x" : "unpackage/res/icons/152x152.png",
+ "proapp@2x" : "unpackage/res/icons/167x167.png",
+ "spotlight" : "unpackage/res/icons/40x40.png",
+ "spotlight@2x" : "unpackage/res/icons/80x80.png",
+ "settings" : "unpackage/res/icons/29x29.png",
+ "settings@2x" : "unpackage/res/icons/58x58.png",
+ "notification@2x" : "unpackage/res/icons/40x40.png",
+ "notification" : "unpackage/res/icons/20x20.png"
+ },
+ "appstore" : "unpackage/res/icons/1024x1024.png"
}
}
}
diff --git a/pages.json b/pages.json
index 3e3b8b0..d365889 100644
--- a/pages.json
+++ b/pages.json
@@ -1,23 +1,53 @@
{
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ {
+ // 初始化页面
+ "path": "pages/initialization/initialization",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
+ }
+ },
+ {
+ // 协议和政策
+ "path": "pages/agreement/agreement",
+ "style": {
+ "navigationBarTitleText": "",
+ // "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" ,// 将回弹属性关掉
+ "safearea": {
+ //安全区域配置,仅ioS平台生效
+ "background": "#FFFFFF", //安全区域外的背景颜色,默认值为"#FFFFFF"
+ "bottom": {
+ // 底部安全区域配置
+ "offset": "auto" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none"
+ }
+ }
+ }
+ }
+ },
{
"path": "pages/bookCity/bookCity/index",
"style": {
"navigationBarTitleText": "书城",
- "navigationStyle": "custom"
- // "app-plus": {
- // "titleView": false, //不启用系统导航
- // "statusbar": {
- // "immersed": false
- // }
- // }
+ "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/bookshelf/bookshelf/index",
"style": {
"navigationBarTitleText": "书架",
- "navigationStyle": "custom"
+ "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
@@ -25,7 +55,10 @@
"style": {
// 登录页面
"navigationBarTitleText": "",
- "navigationStyle": "custom"
+ "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
@@ -33,56 +66,83 @@
"style": {
// 登录验证码页面
"navigationBarTitleText": "",
- "navigationStyle": "custom"
+ "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/classification/classification/index",
"style": {
"navigationBarTitleText": "分类",
- "navigationStyle": "custom"
+ "navigationStyle": "custom",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/myInfo/myInfo/index",
"style": {
- "navigationBarTitleText": "我的"
+ "navigationBarTitleText": "我的",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/myInfo/aboutMy/index",
"style": {
- "navigationBarTitleText": "关于我们"
+ "navigationBarTitleText": "关于我们",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/myInfo/mySetUp/index",
"style": {
- "navigationBarTitleText": "设置"
+ "navigationBarTitleText": "设置",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/myInfo/problemList/index",
"style": {
- "navigationBarTitleText": "常见问题"
+ "navigationBarTitleText": "常见问题",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/myInfo/problemDetail/index",
"style": {
- "navigationBarTitleText": "常见问题"
+ "navigationBarTitleText": "常见问题",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/voucherCenter/index",
"style": {
- "navigationBarTitleText": "充值中心"
+ "navigationBarTitleText": "充值中心",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/readingRecords/index",
"style": {
- "navigationBarTitleText": "阅读记录"
+ "navigationBarTitleText": "阅读记录",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
@@ -90,14 +150,20 @@
"style": {
"navigationBarTitleText": "签到领取书币",
"navigationStyle": "custom",
- "navigationBarTextStyle": "white"
+ "navigationBarTextStyle": "white",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/booksListAll/index",
"style": {
//完本和新书的 书籍列表
- "navigationBarTitleText": ""
+ "navigationBarTitleText": "",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
// "app-plus": {
// "safearea": { //安全区域配置,仅ioS平台生效
// "background": "#FFFFFF", //安全区域外的背景颜色,默认值为"#FFFFFF"
@@ -119,45 +185,58 @@
{
"path": "pages/booksTheCharts/index",
"style": {
- "navigationBarTitleText": "排行榜",
- "navigationBarBackgroundColor": "transparent",
+ // booksTheCharts
+ "navigationBarTitleText": "",
+ // "navigationBarBackgroundColor": "transparent",
"navigationStyle": "custom",
- "app-plus": {
- "titleNView": {
- "backgroundColor": "transparent",
- "background": "transparent"
- }
- }
+ // "app-plus": {
+ // "titleNView": {
+ // "backgroundColor": "transparent",
+ // "background": "transparent"
+ // }
+ // }
// "enablePullDownRefresh": false,
// "disableScroll": true,
- // "app-plus": {
- // "bounce": "none" // 将回弹属性关掉
- // }
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/voucherCenterDetail/index",
"style": {
- "navigationBarTitleText": "充值记录"
+ "navigationBarTitleText": "充值记录",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/bookCoinDetail/bookCoinDetail",
"style": {
- "navigationBarTitleText": "书币明细"
+ "navigationBarTitleText": "书币明细",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/giveCoinDetail/giveCoinDetail",
"style": {
- "navigationBarTitleText": "赠币明细"
+ "navigationBarTitleText": "赠币明细",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/booksSearchList/booksSearchList",
"style": {
- "navigationBarTitleText": "搜索"
+ "navigationBarTitleText": "搜索",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
@@ -177,14 +256,20 @@
"path": "pages/booksReadingDetail/booksReadingDetail",
"style": {
// 书籍详细页面
- "navigationBarTitleText": ""
+ "navigationBarTitleText": "",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
},
{
"path": "pages/bookRecommendList/bookRecommendList",
"style": {
// 书籍章节列表
- "navigationBarTitleText": ""
+ "navigationBarTitleText": "",
+ "app-plus": {
+ "bounce": "none" // 将回弹属性关掉
+ }
}
}
],
diff --git a/pages/agreement/agreement.vue b/pages/agreement/agreement.vue
new file mode 100644
index 0000000..2ad535e
--- /dev/null
+++ b/pages/agreement/agreement.vue
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/bookCity/bookCity/index.vue b/pages/bookCity/bookCity/index.vue
index bf2f2ac..5050660 100644
--- a/pages/bookCity/bookCity/index.vue
+++ b/pages/bookCity/bookCity/index.vue
@@ -5,7 +5,11 @@
-
+
@@ -20,6 +24,9 @@
import {
isGetSystemInfo
} from '@/utils/systemInfo.js'
+ import {
+ baseUrlImage
+ } from '@/utils/utils'
export default {
components: {
CommNavBar,
@@ -38,22 +45,86 @@
// },
],
navBarActive: '1',
- barHeight: 0,
+ // 全网火爆
+ explosiveDataList: [],
+ // 榜单
+ rankingDataList: [],
+ rankingDataObj: {},
+ headerListActive: '1',
+ // 人气作品
+ popularityDataList: [],
+ // 原创优选
+ originalDataList: [],
+ // 书友推荐
+ recommendDataList: [],
+ // 跟多书籍
+ moreBooksList: [],
+ swiperList: [],
}
},
- onLoad() {
-
-
- },
+ onLoad() {},
onShow() {
- this.$nextTick(() => {
- this.$refs.bookCityHome.isGetIndex()
- })
+ // this.$nextTick(() => {
+ // this.$refs.bookCityHome.isGetIndex()
+ // })
+ this.isGetHomeIndex();
},
methods: {
handelCommNavBar(event) {
this.navBarActive = event.currentTarget.dataset.id
- }
+ },
+ isGetHomeIndex() {
+ 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, "========")
+ })
+ },
+ handelRankingList(event) {
+ const id = event.currentTarget.dataset.id;
+ this.headerListActive = id;
+ this.rankingDataList = this.rankingDataObj[id];
+ },
}
}
@@ -81,9 +152,8 @@
bottom: 0;
left: 0;
right: 0;
- .scroll_y_item {
-
- }
+
+ .scroll_y_item {}
}
}
}
diff --git a/pages/bookCity/components/home/index.vue b/pages/bookCity/components/home/index.vue
index 3603d06..2a05cb5 100644
--- a/pages/bookCity/components/home/index.vue
+++ b/pages/bookCity/components/home/index.vue
@@ -76,6 +76,9 @@
import {
baseUrlImage
} from '@/utils/utils'
+ import {
+ myGetStorage,
+ } from '@/utils/storage/index.js';
export default {
components: {
@@ -86,10 +89,57 @@
RecommendList,
CommFooter,
},
+ props: {
+ explosiveDataList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ },
+ rankingDataList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ },
+ headerListActive: {
+ type: String,
+ default: ''
+ },
+ popularityDataList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ },
+ originalDataList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ },
+ recommendDataList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ },
+ moreBooksList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ },
+ swiperList: {
+ type: Array,
+ default: () => {
+ return [];
+ }
+ }
+ },
data() {
return {
baseUrl: config.baseUrl,
- swiperList: [],
list: [{
name: the_charts,
title: '榜单',
@@ -110,88 +160,31 @@
{
name: recharge,
title: '充值',
- toPath: '/pages/voucherCenter/index'
+ toPath: '/pages/voucherCenter/index',
+ type: 'recharge'
},
],
- // 全网火爆
- explosiveDataList: [],
- // 榜单
- rankingDataList: [],
- rankingDataObj: {},
- headerListActive: '1',
- // 人气作品
- popularityDataList: [],
- // 原创优选
- originalDataList: [],
- // 书友推荐
- recommendDataList: [],
- // 跟多书籍
- moreBooksList: []
}
- },
- mounted() {
-
},
methods: {
toGridItemPath(row) {
- if (row.toPath) {
+ const token = myGetStorage('token');
+ if (row.type == 'recharge' && !token) {
+ uni.navigateTo({
+ url: `/pages/login/login?to=3`
+ })
+ } else if (row.toPath) {
uni.navigateTo({
url: `${row.toPath}?titleType=${row.type}`
})
}
},
handelRankingList(event) {
- const id = event.currentTarget.dataset.id;
- this.headerListActive = id;
- this.rankingDataList = this.rankingDataObj[id];
+ this.$emit('handelRankingList', event)
+ // 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/booksReadingDetail/bookOtherInfo.vue b/pages/booksReadingDetail/bookOtherInfo.vue
index 2db7839..2788676 100644
--- a/pages/booksReadingDetail/bookOtherInfo.vue
+++ b/pages/booksReadingDetail/bookOtherInfo.vue
@@ -33,8 +33,7 @@
{{bookInfo.size}}
-
- 字
+ 万字
diff --git a/pages/booksReadingDetail/booksReadingDetail.vue b/pages/booksReadingDetail/booksReadingDetail.vue
index 77f68ce..07259bc 100644
--- a/pages/booksReadingDetail/booksReadingDetail.vue
+++ b/pages/booksReadingDetail/booksReadingDetail.vue
@@ -133,7 +133,7 @@
toNovelReading() {
const bookInfo = this.bookInfo;
uni.navigateTo({
- url: `/pages/novelReading/novelReading?sid=${bookInfo.id}&n=${bookInfo.title}`
+ url: `/pages/novelReading/novelReading?sid=${bookInfo.id}`
})
}
}
diff --git a/pages/initialization/initialization.vue b/pages/initialization/initialization.vue
new file mode 100644
index 0000000..ff67033
--- /dev/null
+++ b/pages/initialization/initialization.vue
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+ 古言小说
+
+
+
+
+
+ 感谢您信任并使用古言小说!本服务需联网,申请通知权限用于为您提供书籍更新、优惠活动等信息服务。点击“同意”,即表示您同意上述内容及
+ 《古言用户服务协议》
+ 及
+ 《古言隐私政策》
+
+
+
+
+ 若您不同意,很遗憾我们将无法为您提供服务。
+ 《古言用户服务协议》
+ 《古言隐私政策》
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/loginMobile/loginMobile.vue b/pages/loginMobile/loginMobile.vue
index f226c5e..2dbb673 100644
--- a/pages/loginMobile/loginMobile.vue
+++ b/pages/loginMobile/loginMobile.vue
@@ -51,7 +51,8 @@
let toPathUrl = ''
const toPathObj = {
'1': `/pages/novelReading/novelReading?sid=${bookSid}&id=${bookId}&c=${chapterorder}`,
- '2':`/pages/myInfo/myInfo/index`
+ '2': `/pages/myInfo/myInfo/index`,
+ '3': `/pages/bookCity/bookCity/index`
}
if (toPathObj[toPath]) {
toPathUrl = `${toPathObj[toPath]}`
diff --git a/pages/novelReading/novelReading.vue b/pages/novelReading/novelReading.vue
index 2aabaad..b949fd2 100644
--- a/pages/novelReading/novelReading.vue
+++ b/pages/novelReading/novelReading.vue
@@ -11,7 +11,7 @@
:slide="20" :enablePreload="false" @loadmore="loadmoreContent" @clickTo="handelShowStepUp"
:clickOption="{width:200,height: 400,left:'auto',top:'auto'}" :topGap="0" :bottomGap="20"
@change="currentChange">
-
+
+ @click="balanceConfirm">去充值
@@ -175,7 +175,6 @@
data() {
return {
token: '',
- navbarTitle: '小说阅读页面',
novelMainTypeColor: '',
setUpColorAll: {},
navigationBarTitleTextColor: '',
@@ -185,8 +184,6 @@
previousChapterBbuttonTextColor: '',
nextChapterBbuttonBg: '',
nextChapterBbuttonTextColor: '',
- bodyReadingHeight: 0,
- scrollReadingHeight: 0,
// 内容背景
bodyReadingBg: '',
// 底部安全区
@@ -219,7 +216,6 @@
defaultCharactersLineHeight: 20,
readDirectoryActive: '',
readChapterid: '',
- readChapterFlag: false,
readChapterInfoObj: {},
readChapterLastid: '',
readChapterNextid: '',
@@ -227,7 +223,6 @@
},
onLoad(options) {
this.booksDirectorySid = options.sid;
- this.navbarTitle = options.n;
this.readChapterid = options.id;
this.isGetUserRead();
},
@@ -257,7 +252,7 @@
const booksDirectorySid = this.booksDirectorySid;
const booksDirectoryPage = this.booksDirectoryPage;
const readChapterid = this.readChapterid ? this.readChapterid : '';
- const newReadChapterInfoObj = await this.isGetBookInfo(readChapterid, '');
+ const newReadChapterInfoObj = await this.isGetBookInfo(readChapterid);
this.novelReadingContentText = [newReadChapterInfoObj];
this.readDirectoryActive = newReadChapterInfoObj.chapterorder;
this.readChapterLastid = newReadChapterInfoObj.lastid;
@@ -268,7 +263,7 @@
currentChapter: newReadChapterInfoObj.chapterorder
})
},
- isGetBookInfo(chapterId, statusType, ) {
+ isGetBookInfo(chapterId) {
return new Promise((resolve) => {
const booksDirectorySid = this.booksDirectorySid;
const novelReadingContentText = this.novelReadingContentText;
@@ -293,7 +288,7 @@
isEnd: resData.nextid == '' ? true : false,
chapter: resData.chapterorder,
title: resData.chaptername,
- isTtitle: resData.title
+ isTitle: resData.title
// richTextNodes: `${res.data.chaptername}
${res.data.novel_content}`
};
this.readChapterInfoObj = readChapterInfoObj;
@@ -342,7 +337,6 @@
}
callback('success', obj);
}
-
}
},
currentChange(pageInfo) {
@@ -384,7 +378,6 @@
content: ''
}
this.$refs.yingbingReadPage.init({
- // ...obj,
contents: [obj],
start: 0,
currentChapter: newReadDirectoryActive - 1,
@@ -419,9 +412,7 @@
custom,
content: ''
}
- console.log(obj, "---------------")
this.$refs.yingbingReadPage.init({
- // ...obj,
contents: [obj],
start: 0,
currentChapter: newReadDirectoryActive + 1
@@ -450,20 +441,9 @@
url: `/pages/login/login?sid=${readChapterInfoObj.sid}&i=${readChapterInfoObj.id}&c=${readDirectoryActive}&to=1`
})
},
- directoryPopupClose() {
- // this.directoryPopupShow = false;
- // const readChapterInfoObj = this.readChapterInfoObj;
- // uni.navigateTo({
- // url: `/pages/bookRecommendList/bookRecommendList?sid=${readChapterInfoObj.sid}&t=${readChapterInfoObj.title}&c=${readChapterInfoObj.chapterorder}`
- // })
- },
- purchaseFullClose() {
- const readChapterFlag = this.readChapterFlag;
- if (readChapterFlag) {
- return;
- }
- this.purchaseFullShow = false;
- },
+ // directoryPopupClose() {
+ // this.directoryPopupShow = false;
+ // },
handelSteUpPopup() {
this.stepUpPopupShow = true;
},
@@ -623,7 +603,6 @@
// this.myData = myData;
this.novelMainTypeColor = novelMainTypeColor;
this.newCharactersSize = JSON.parse(novelMainObj).charactersSize || 28;
- this.bodyReadingHeight = screenHeight - statusBarHeight - devicePixelRatio * 22;
this.setUpColorAll = setUpReadingColorAll;
this.barPopupIcon = {
'F3EFE9': {
diff --git a/static/initialization_title.png b/static/initialization_title.png
new file mode 100644
index 0000000..31a012d
Binary files /dev/null and b/static/initialization_title.png differ
diff --git a/unpackage/cache/apk/__UNI__474F351_cm.apk b/unpackage/cache/apk/__UNI__474F351_cm.apk
new file mode 100644
index 0000000..c544317
Binary files /dev/null and b/unpackage/cache/apk/__UNI__474F351_cm.apk differ
diff --git a/unpackage/cache/apk/apkurl b/unpackage/cache/apk/apkurl
new file mode 100644
index 0000000..2b55dd5
--- /dev/null
+++ b/unpackage/cache/apk/apkurl
@@ -0,0 +1 @@
+https://ide.dcloud.net.cn/build/download/9bc70e70-5916-11ee-a73d-914bbe6c0cba
\ No newline at end of file
diff --git a/unpackage/cache/apk/cmManifestCache.json b/unpackage/cache/apk/cmManifestCache.json
new file mode 100644
index 0000000..8e4a4cc
--- /dev/null
+++ b/unpackage/cache/apk/cmManifestCache.json
@@ -0,0 +1 @@
+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
\ No newline at end of file
diff --git a/unpackage/cache/appleConfig.ini b/unpackage/cache/appleConfig.ini
index caf1637..876fed9 100644
--- a/unpackage/cache/appleConfig.ini
+++ b/unpackage/cache/appleConfig.ini
@@ -1,5 +1,8 @@
[appleAppid]
-appleAppid=com.qinjiu.guyanxiaoshuo
+appleAppid=com.gygsh.app
+
+[appstore]
+appstore=284c163ec079c1a9ec45c1860f781935
[iosStyle]
iosStyle=
@@ -15,3 +18,13 @@ spaceid_qq=
[universalLinks_weibo]
universalLinks_weibo=
spaceid_weibo=
+
+[iphone]
+app%402x=140750dc2e5311f8aecd7590b31cd53d
+app%403x=07385fee3133f3cd433c0880fa487d68
+notification%402x=98053d8f4350a963571fe71434113802
+notification%403x=3ee657c11595b5f96907c0d1769b36a6
+settings%402x=564223d08e33f85271fd49e8d3235c13
+settings%403x=58e5177d2fb43042763a8f1f7ca3a72a
+spotlight%402x=761dd39d74e8ce220be2c35c0e368062
+spotlight%403x=140750dc2e5311f8aecd7590b31cd53d
diff --git a/unpackage/cache/certdata b/unpackage/cache/certdata
new file mode 100644
index 0000000..be504f0
--- /dev/null
+++ b/unpackage/cache/certdata
@@ -0,0 +1,3 @@
+andrCertfile=D:/项目证书/古言小说证书1111/guyanxiaoshuo.keystore
+andrCertAlias=gyxs
+andrCertPass=ep/Tdjka4Y7WYqDB6/S7dw==
diff --git a/unpackage/cache/certdataios b/unpackage/cache/certdataios
index 0762c4e..27219c6 100644
--- a/unpackage/cache/certdataios
+++ b/unpackage/cache/certdataios
@@ -1,3 +1,3 @@
-iosProfile=C:/Users/Administrator/Desktop/小说证书/古言小说证书/guyanxiaoshuo.mobileprovision
-ioscertFile=C:/Users/Administrator/Desktop/小说证书/古言小说证书/guyanxiaoshuo.p12
+iosProfile=D:/项目证书/古言小说证书22222/gygsh/gygshtest.mobileprovision
+ioscertFile=D:/项目证书/古言小说证书22222/gygsh/d67b96d0807b462295ffaf5c31e41393.p12
ioscertPassword=ep/Tdjka4Y7WYqDB6/S7dw==
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/apple-mobileprovision.mobileprovision b/unpackage/cache/wgt/__UNI__474F351/.manifest/apple-mobileprovision.mobileprovision
new file mode 100644
index 0000000..f179755
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/apple-mobileprovision.mobileprovision differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/apple-private.p12 b/unpackage/cache/wgt/__UNI__474F351/.manifest/apple-private.p12
new file mode 100644
index 0000000..c0acc04
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/apple-private.p12 differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/appstore.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/appstore.png
new file mode 100644
index 0000000..bf49378
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/appstore.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-app.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-app.png
new file mode 100644
index 0000000..d46aa92
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-app.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-app@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-app@2x.png
new file mode 100644
index 0000000..6cf0f41
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-app@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-notification.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-notification.png
new file mode 100644
index 0000000..08ee478
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-notification.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-notification@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-notification@2x.png
new file mode 100644
index 0000000..e815751
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-notification@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-proapp@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-proapp@2x.png
new file mode 100644
index 0000000..28f21e3
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-proapp@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-settings.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-settings.png
new file mode 100644
index 0000000..3959375
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-settings.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-settings@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-settings@2x.png
new file mode 100644
index 0000000..53dbabb
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-settings@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-spotlight.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-spotlight.png
new file mode 100644
index 0000000..e815751
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-spotlight.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-spotlight@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-spotlight@2x.png
new file mode 100644
index 0000000..d5359ea
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-ipad-spotlight@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-app@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-app@2x.png
new file mode 100644
index 0000000..153a3ae
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-app@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-app@3x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-app@3x.png
new file mode 100644
index 0000000..ae6d6f1
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-app@3x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-notification@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-notification@2x.png
new file mode 100644
index 0000000..e815751
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-notification@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-notification@3x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-notification@3x.png
new file mode 100644
index 0000000..ff00d4a
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-notification@3x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-settings@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-settings@2x.png
new file mode 100644
index 0000000..53dbabb
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-settings@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-settings@3x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-settings@3x.png
new file mode 100644
index 0000000..9124475
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-settings@3x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-spotlight@2x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-spotlight@2x.png
new file mode 100644
index 0000000..d5359ea
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-spotlight@2x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-spotlight@3x.png b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-spotlight@3x.png
new file mode 100644
index 0000000..153a3ae
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/.manifest/icon-iphone-spotlight@3x.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/__uniappchooselocation.js b/unpackage/cache/wgt/__UNI__474F351/__uniappchooselocation.js
new file mode 100644
index 0000000..bd11f4b
--- /dev/null
+++ b/unpackage/cache/wgt/__UNI__474F351/__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,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";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/cache/wgt/__UNI__474F351/__uniapperror.png b/unpackage/cache/wgt/__UNI__474F351/__uniapperror.png
new file mode 100644
index 0000000..4743b25
Binary files /dev/null and b/unpackage/cache/wgt/__UNI__474F351/__uniapperror.png differ
diff --git a/unpackage/cache/wgt/__UNI__474F351/__uniappes6.js b/unpackage/cache/wgt/__UNI__474F351/__uniappes6.js
new file mode 100644
index 0000000..d4018e8
--- /dev/null
+++ b/unpackage/cache/wgt/__UNI__474F351/__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
+
+
+
+
+
+
+
+
+
+
+