uni-app设置像页面html或者body的全局背景色
page{background: #000000;}
uni-app编译之后是body {background:#000000;}
可以放在根目录的 app.vue
如果想每个单独页面设置对应不同的背景色,可以对应页面的style
比如/pages/news/index/index.vue
那就在index.vue下面的style里面加入 page{background: #ff9900;}