1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // 人才图谱
- const map = [{
- "pagePath": "pages/index/index",
- "iconPath": "/static/images/tab_home.png",
- "selectedIconPath": "/static/images/tab_home_s.png",
- "text": "图谱"
- },
- {
- "pagePath": "pages/policy/search",
- "iconPath": "/static/images/tab_policy.png",
- "selectedIconPath": "/static/images/tab_policy_s.png",
- "text": "政策"
- },
- {
- "pagePath": "pages/user/user",
- "iconPath": "/static/images/tab_user.png",
- "selectedIconPath": "/static/images/tab_user_s.png",
- "text": "我的"
- }
- ]
- // 人才政策计算器
- const policy = [{
- "pagePath": "pages/policy/index",
- "iconPath": "/static/images/tab_cal.png",
- "selectedIconPath": "/static/images/tab_cal_s.png",
- "text": "计算器"
- },
- {
- "pagePath": "pages/policy/search",
- "iconPath": "/static/images/tab_policy.png",
- "selectedIconPath": "/static/images/tab_policy_s.png",
- "text": "政策"
- }
- ]
- export default {
- map,
- policy
- }
|