.wxss文件page{background-color: #ED3E3F;}设置背景颜色不起作用?
发布于 6 年前 作者 sulei 12353 次浏览 来自 官方Issues

.wxss文件page{background-color: #ED3E3F;}设置背景颜色不起作用

2 回复

设置配置文件

backgroundColor
在pages.json里配置一下

{
      "path": "pages/index/index",
      "style": {
        "navigationBarTitleText": "",
        "navigationBarTextStyle": "white",
        "navigationBarBackgroundColor": "#1978FF",
        "backgroundColor": "#F3F6F7",
        "backgroundColorTop": "#1978FF",
        "backgroundColorBottom": "#F3F6F7",
        "enablePullDownRefresh": true,
        "navigationStyle": "custom"
      }
    },
回到顶部