解决页面缺失
parent
6c9d839fc7
commit
40eada19f8
|
@ -460,9 +460,6 @@ const tools = {
|
||||||
},
|
},
|
||||||
// 禁止小程序使用分享
|
// 禁止小程序使用分享
|
||||||
disableShareEv(){
|
disableShareEv(){
|
||||||
// #ifdef APP-PLUS
|
|
||||||
uni.hideShareMenu();
|
|
||||||
// #endif
|
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
wx.hideShareMenu({
|
wx.hideShareMenu({
|
||||||
menus: ['shareAppMessage', 'shareTimeline']
|
menus: ['shareAppMessage', 'shareTimeline']
|
||||||
|
|
|
@ -55,7 +55,8 @@
|
||||||
"appid" : "wx2654bc27c419ada6",
|
"appid" : "wx2654bc27c419ada6",
|
||||||
"UniversalLinks" : ""
|
"UniversalLinks" : ""
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"ad" : {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"splashscreen" : {
|
"splashscreen" : {
|
||||||
|
@ -68,7 +69,7 @@
|
||||||
/* 快应用特有相关 */
|
/* 快应用特有相关 */
|
||||||
"mp-weixin" : {
|
"mp-weixin" : {
|
||||||
/* 小程序特有相关 */
|
/* 小程序特有相关 */
|
||||||
"appid" : "wx2654bc27c419ada6",
|
"appid" : "wx705dfb975654e53a",
|
||||||
"setting" : {
|
"setting" : {
|
||||||
"urlCheck" : true,
|
"urlCheck" : true,
|
||||||
"es6" : true
|
"es6" : true
|
||||||
|
|
22
pages.json
22
pages.json
|
@ -67,19 +67,15 @@
|
||||||
{//A包
|
{//A包
|
||||||
"root": "pagesA",
|
"root": "pagesA",
|
||||||
"pages": [
|
"pages": [
|
||||||
{
|
{
|
||||||
"path" : "",
|
"path" : "test/test",
|
||||||
"style" : {}
|
"style" :
|
||||||
}
|
{
|
||||||
]
|
"navigationBarTitleText": "",
|
||||||
},
|
"enablePullDownRefresh": false
|
||||||
{//B包
|
}
|
||||||
"root": "pagesB",
|
|
||||||
"pages": [
|
}
|
||||||
{
|
|
||||||
"path" : "",
|
|
||||||
"style" :{}
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<view style="display: flex;align-items: center;justify-content: center;height: 100vh;">
|
<view @tap="gohome" style="display: flex;align-items: center;justify-content: center;height: 100vh;">
|
||||||
登录页
|
登录页
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -14,7 +14,11 @@
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
gohome(){
|
||||||
|
uni.reLaunch({
|
||||||
|
url:'/pages/tabbar/pagehome/pagehome'
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue