12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const TabBars=[
- {
- "pagePath": "/pages/index/index",
- "iconPath": "/static/tabBar/index.png",
- "selectedIconPath": "/static/tabBar/indexEd.png",
- "text": "首页",
- "permissions":["patient"]
- },
- {
- "pagePath": "/views/record/index",
- "iconPath": "/static/tabBar/record.png",
- "selectedIconPath": "/static/tabBar/recordEd.png",
- "text": "记录",
- "permissions":["patient"]
- },
- // {
- // "pagePath": "/views/record/index",
- // "iconPath": "/static/tabBar/therapy.png",
- // "selectedIconPath": "/static/tabBar/therapyEd.png",
- // "text": "治疗",
- // "permissions":["patient"]
- // },
- {
- "pagePath": "/pages/index/index",
- "iconPath": "/static/tabBar/diagnose.png",
- "selectedIconPath": "/static/tabBar/diagnoseEd.png",
- "text": "诊断",
- "permissions":["doctor"]
- },
- {
- "pagePath": "/views/record/index",
- "iconPath": "/static/tabBar/therapy.png",
- "selectedIconPath": "/static/tabBar/therapyEd.png",
- "text": "治疗",
- "permissions":["doctor"]
- },
- {
- "pagePath": "/pages/myCenter/index",
- "iconPath": "/static/tabBar/mine.png",
- "selectedIconPath": "/static/tabBar/mineEd.png",
- "text": "我的",
- "permissions":["patient","doctor"]
- }
- ];
- export default TabBars;
|