12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "企业数字应用平台"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/mine/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "subPackages": [{
- "root": "subPackages",
- "pages": [{
- "path": "orderforGoods/index",
- "style": {
- "navigationBarTitleText": "订单"
- }
- },{
- "path": "orderforGoods/details",
- "style": {
- "navigationBarTitleText": "生产订单"
- }
- }]
- }],
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {},
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#43adfd",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/ic_tab_home.png",
- "selectedIconPath": "static/ic_tab_home_selected.png",
- "text": "首页"
- }, {
- "pagePath": "pages/mine/index",
- "iconPath": "static/ic_tab_mine.png",
- "selectedIconPath": "static/ic_tab_mine_selected.png",
- "text": "我的"
- }]
- }
- }
|