ios 真机调试 显示启动页后 停留在空白页面 连APP.vue和main.js文件都没有进去
APP.vue 文件
export default {
onLaunch: function() {
console.log('App Launch1111111');
setTimeout(() => {
uni.setTabBarBadge({
index: 1,
text: '31'
});
uni.showTabBarRedDot({
index: 3
});
}, 1000);
},
onShow: function() {
// uni.redirectTo({
// url: 'pages/login/index'
// });
// uni.hideTabBar({
// animation:falseA
// })
console.log('------------------------11111111111111111111111')
console.log('App Show');
},
onHide: function() {
console.log('App Hide');
}
};
main.js文件
import Vue from 'vue'
import App from './App'
import httpInterceptor from './util/request.js'
import httpApi from './util/http.api.js'
import uView from 'uview-ui';
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
// 注册
// UI
Vue.use(uView)
// 请求拦截配置
Vue.use(httpInterceptor,app)
// api集中管理
Vue.use(httpApi,app)
app.$mount()
pages.json文件
{
"easycom": {
// 下载安装的方式需要前面的"@/",npm安装的方式无需"@/"
// 下载安装方式
"^u-(.)": "@/uview-ui/components/u-$1/u-$1.vue"
// npm安装方式
// "^u-(.)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/index/index",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"app-plus":{
"titleNView":false
}
}
},
{
"path" : "pages/launch/launch",
"style" :
{
"enablePullDownRefresh": false,
"app-plus":{
"titleNView":false
}
}
},
{
"path": "pages/tabbar/tabbar-1/tabbar-1",
"style": {
"navigationBarTitleText": "uni-app",
"navigationStyle": "custom" ,// 隐藏系统导航栏
"navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
}
},
index.vue文件
export default {
data() {
return {
show:false,
loctionShow:false,
popup_button_style1:{
"background-color":'#F2F4F8',
"width":'260rpx'
},
popup_button_style2:{
"background-color":'#1C64E2',
"width":'260rpx'
}
}
},
watch:{
show(newVal){
if(!newVal){
this.loctionShow=true
}
}
},
onLoad(){
console.log('aaa')
console.log('开始初始化页面-------------')
try {
// 从本地缓存中同步获取指定 key 对应的内容,用于判断是否是第一次打开应用
const value = uni.getStorageSync('launchFlag');
if (value) {
try{
// 从本地缓存中同步获取指定 key 对应的内容,用于判断是否已登录
const token = uni.getStorageSync('token');
if(token){
// 如何已经有,直接去home首页
uni.switchTab({
url: '/pages/tabbar/tabbar-1/tabbar-1'
});
}else{
// 直接去登录页面
uni.redirectTo({
url: '/pages/signIn/signIn'
});
}
}catch(e){
}
}else{
this.show=true
}
} catch (e) {
// error
}
},
methods: {
linkLaunch(){
// 没有值,跳到引导页,并存储,下次打开就不会进去引导页
uni.setStorage({
key: 'launchFlag',
data: true
});
uni.redirectTo({
url: '/pages/launch/launch'
});
}
}
}