微信小程序改变 weChat的文字

1.首先需要知道 您要改变那个页面的weChat文字

2.需要在当前的页面文件中找到 .json 文件

3.在文件中配置

 {
   "navigationBarTextStyle": "black",
   "navigationBarTitleText": "钢琴专区"
 }
 navigationBarBackgroundColor   HexColor    000000 导航栏背景颜色,如”#000000”   
 navigationBarTextStyle         String  white   导航栏标题颜色,仅支持 black/white
 navigationBarTitleText         String      导航栏标题文字内容
 backgroundColor                HexColor    #ffffff 窗口的背景色
 backgroundTextStyle            String  dark    下拉背景字体、loading 图的样式,仅支持 dark/light
 enablePullDownRefresh          Boolean false   是否开启下拉刷新

你可能感兴趣的:(微信小程序改变 weChat的文字)