设置个人中心页-顶部颜色
1、修改页面配置文件
文件路径:pages/user/index.json
{
"navigationBarTitleText": "个人中心",
"navigationBarBackgroundColor":"#ffdd00",
"navigationBarTextStyle": "black"
}
定义 navigationBarBackgroundColor
项的颜色值
2. 修改页面样式文件
文件路径:pages/user/index.wxss
.user-header {
display: flex;
padding-top: 1px;
width: 100%;
height: 310rpx;
align-content: center;
background-color: #fd0;
background-repeat: no-repeat;
background-position: center right;
background-size: auto 100%;
}
定义 background-color
项的颜色值