| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * 页面路由
- */
- const router = {
- /**
- * 主页
- */
- INDEX_URL: '/pages/index/index',
-
- /**
- * 登录页
- */
- LOGIN_URL: '/pages/login/login',
-
- /**
- * 用户中心
- */
- USER_INFO_URL: '/pages/user-info/user-info',
-
- /**
- * 打卡任务编辑页
- */
- PUNCHIN_EDIT_URL: '/pages/punchin-edit/punchin-edit',
-
- /**
- * 打卡任务详情页
- */
- PUNCHIN_DETAIL_URL: '/pages/punchin-detail/punchin-detail',
-
- /**
- * 结算页
- */
- SETTLE_LIST_URL: '/pages/settle-list/settle-list'
- };
- export default router;
|