12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "智能巡店"
- }
- },
- {
- "path" : "pages/shopTour/shopTour",
- "style" : {
- "navigationBarTitleText": "远程巡店",
- "app-plus": {
- "bounce": "none", //关闭窗口回弹效果
- "titleNView": {
- "buttons": [ //原生标题栏按钮配置,
- {
- "text": "+考评项" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
- "fontSize": 16,
- "color": "#007AFF",
- "width":"100px"
- }
- ]
- }
- }
- }
- }
- ,{
- "path" : "pages/work/work",
- "style": {
- "navigationBarTitleText": "工作台"
- }
- }
- ,{
- "path" : "pages/userCenter/userCenter",
- "style" : {
- "navigationBarTitleText": "个人中心"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#0b6ce0",
- "borderStyle": "#eee",
- "backgroundColor": "#ffffff",
- "fontSize": "14px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png",
- "text": "首页"
- }, {
- "pagePath": "pages/work/work",
- "iconPath": "static/tabbar/work.png",
- "selectedIconPath": "static/tabbar/work-active.png",
- "text": "工作台"
- }, {
- "pagePath": "pages/userCenter/userCenter",
- "iconPath": "static/tabbar/user.png",
- "selectedIconPath": "static/tabbar/user-active.png",
- "text": "我的"
- }]
- }
- }
|