| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "vue3": true,
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://doc.dcloud.net.cn/uni-app-x/collocation/pagesjson.html
- {
- "path": "pages/index/console",
- "style": {
- "navigationBarTitleText": "控制台"
- }
- },
- {
- "path": "pages/index/my",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/index/order",
- "style": {
- "navigationBarTitleText": "订单"
- }
- },
- {
- "path": "pages/index/account",
- "style": {
- "navigationBarTitleText": "账户"
- }
- },
- {
- "path": "pages/console/setOrderTime",
- "style": {
- "navigationBarTitleText": "接单时间"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- {
- "path": "pages/console/serviceProject",
- "style": {
- "navigationBarTitleText": "服务项目"
- }
- },
- {
- "path": "pages/myEdit/myEdit",
- "style": {
- "navigationBarTitleText": "个人信息"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "小丁到家--上门按摩",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "selectedColor": "#000000",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/console",
- "iconPath": "static/iconInfo/noactive/homepage.png",
- "selectedIconPath": "static/iconInfo/active/homepage.png",
- "text": "控制台"
- }, {
- "pagePath": "pages/index/order",
- "iconPath": "static/iconInfo/noactive/order.png",
- "selectedIconPath": "static/iconInfo/active/order.png",
- "text": "订单"
- }, {
- "pagePath": "pages/index/account",
- "iconPath": "static/iconInfo/noactive/account.png",
- "selectedIconPath": "static/iconInfo/active/account.png",
- "text": "账户"
- },
- {
- "pagePath": "pages/index/my",
- "iconPath": "static/iconInfo/noactive/myhome.png",
- "selectedIconPath": "static/iconInfo/active/myhome.png",
- "text": "我的"
- }
- ]
- },
- "uniIdRouter": {}
- }
|