pages配置项给每个页面设置navigationBarTitleText不生效?
请问大佬,我这个backgroundColor生效了,为啥navigationBarTitleText没有生效?
```js
pages: {
home: {
navigationBarTitleText: ‘学校介绍’,
backgroundColor: ‘yellow’,
},
list: {
navigationBarTitleText: ‘国际学校排名’,
backgroundColor: ‘pink’,
}
},
```
dist\mp下的config.js也构建了对应的
```js
“pages”: {
"home": {
"rem": true,
"share": true,
"windowScroll": false,
"backgroundColor": "yellow",
"navigationBarTitleText": "学校介绍"
},
"list": {
"rem": true,
"share": true,
"windowScroll": false,
"backgroundColor": "pink",
"navigationBarTitleText": "国际学校排名"
}
}
```

