Uni-app use summary

1, remove the top navigation

Add in the page.json

   " GlobalStyle " : {
         " navigationBarTextStyle " : " Black " ,
         " navigationBarTitleText " : " Nanjing Public Water Company Limited data platform " ,
         " navigationBarBackgroundColor " : " # F8F8F8 " ,
         " backgroundColor " : " # F8F8F8 " ,
         "navigationStyle": " Custom ", 
        " App-PLUS ": { 
            "titleView":false
        }
        
    },

 Or add a single page

     {
            "path" : "pages/Login/Login",
            "style" : {
                "navigationStyle":"custom",
                "app-plus":{
                    "titleView":false
                }
            }
        },

 

Guess you like

Origin www.cnblogs.com/youmingkuang/p/11331356.html