微信小程序网悦新闻开发--小程序配置(二)

目录

微信小程序网悦新闻开发--功能介绍(一)

微信小程序网悦新闻开发--小程序配置(二)

微信小程序网悦新闻开发--首页模块开发(三)

微信小程序网悦新闻开发--视频模块开发(四)

微信小程序网悦新闻开发--我的模块开发(五)

微信小程序网悦新闻开发--自定义组件开发(六)

微信小程序网悦新闻开发--云函数以及云数据开发(七)

 

小程序配置

全局配置

小程序根目录下的 app.json 文件用来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时时间、设置多 tab 等。

以下是网悦新闻小程序 app.json的具体配置:

{
  "pages": [
    "pages/news/list/index",
    "pages/news/details/index",
    "pages/video/list/index",
    "pages/video/details/index",
    "pages/circle/list/index",
    "pages/mine/index/index",
    "pages/logs/logs"
  ],
  "tabBar": {
    "color": "#666666",
    "selectedColor": "#da372b",
    "borderStyle": "black",
    "backgroundColor": "#ffffff",
    "list": [
      {
        "pagePath": "pages/news/list/index",
        "text": "首页",
        "iconPath": "static/tabBarIco/newsIco.png",
        "selectedIconPath": "static/tabBarIco/newsIco_sel.png"
      },
      {
        "pagePath": "pages/video/list/index",
        "text": "视频",
        "iconPath": "static/tabBarIco/videoIco.png",
        "selectedIconPath": "static/tabBarIco/videoIco_sel.png"
      },
      {
        "pagePath": "pages/circle/list/index",
        "text": "圈子",
        "iconPath": "static/tabBarIco/circleIco.png",
        "selectedIconPath": "static/tabBarIco/circleIco_sel.png"
      },
      {
        "pagePath": "pages/mine/index/index",
        "text": "我的",
        "iconPath": "static/tabBarIco/mineIco.png",
        "selectedIconPath": "static/tabBarIco/mineIco_sel.png"
      }
    ]
  },
  "window": {
    "backgroundTextStyle": "light",
    "navigationBarBackgroundColor": "#da372b",
    "navigationBarTitleText": "网悦阅读精选",
    "navigationBarTextStyle": "white"
  }
}

页面配置

每一个小程序页面也可以使用同名 .json 文件来对本页面的窗口表现进行配置,页面中配置项会覆盖 app.json 的 window 中相同的配置项。

1、新闻列表的页面配置主要引用了自定义的组件。

{
  "usingComponents": {
    "myLoading": "/components/myLoading/index",
    "myMessageBox": "/components/myMessageBox/index",
    "myTabBar": "/components/myTabBar/index"
  }
}

2、新闻详情页面配置主要对顶部导航栏的内容和样式进行了调整。

{
  "usingComponents": {},
  "backgroundTextStyle": "light",
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "",
  "navigationBarTextStyle": "black"
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

搬砖狗-小强

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值