全局配置:
配置所有页面路径:app.json,{pages:[配置所有页面]},将首页放置在第一个位置上
设置tabbar导航:
"tabBar": { "color": "#7A7E83",//字体颜色 "selectedColor": "#3cc51f",//选中时候字体的颜色 "borderStyle": "black",//tarbar边框的颜色,黑和白 "backgroundColor": "#fff",//背景颜色 "list": [//2-5,只能设置2-5个导航 { "pagePath": "page/newPage/index",//导航页面路径,根据路径匹配tarbar导航是否显示 "iconPath": "image/icon_component.png",//图标图片的路径 "selectedIconPath": "image/icon_component_HL.png",//选中的时候图片的路径 "text": "首页"//按钮文本 }, { "pagePath": "page/component/index", "iconPath": "image/icon_component.png", "selectedIconPath": "image/icon_component_HL.png", "text": "组件" } ] }
Window:窗口样式的配置
注册程序:app.js
设置相对应的生命周期函数(初始化完成时onLaunch,显示onShow,隐藏onHide
错误的时候,onerror
)
设置全局数据:globalData属性进行设置,getApp(),可以获取app.js的配置对象