H5+Vue

2020-04-26  本文已影响0人  Daeeman

启动配置

// vue.config.js
  host: "192.168.31.148", //本地服务器访问的路径

// manifest.json
"launch_path" : "http://192.168.31.148:8080/"

历史记录

// App.vue
   mounted(){
       var that = this; 
       document.addEventListener('plusready', function(){
           window.plus.nativeUI.toast('积分+5')
           window.plus.key.addEventListener("backbutton",()=>{

                if(that.$router.history.current.name==="Home"){
                    window.plus.nativeUI.confirm("确认要关闭app?",(e)=>{
                        if(e.index==0){
                         window.plus.runtime.quit();
                            // 如果用户单击的是确定,退出app
                        }
                    })
                }else{
                        that.$router.back();
                }            
             })

       })      
   }

改变status背景

created(){
    this.uname = Cookie.getCookie("uname");  
    window.plus.navigator.setStatusBarBackground("#f30");
},
beforeDestroy(){
    window.plus.navigator.setStatusBarBackground("#999");
},
上一篇下一篇

猜你喜欢

热点阅读