You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
852 B
41 lines
852 B
import Home from 'views/FirstPage/FirstPage.vue';
|
|
import Vue from 'vue';
|
|
import VueRouter from 'vue-router';
|
|
|
|
Vue.use(VueRouter);
|
|
|
|
const routes = [
|
|
// 首页
|
|
{
|
|
path: '/',
|
|
name: 'Home',
|
|
component: Home,
|
|
meta: { title: '考勤' },
|
|
},
|
|
{
|
|
path: '/salary',
|
|
name: 'salary',
|
|
component: () => import('views/Salary/Salary.vue'),
|
|
meta: { title: '工资表' },
|
|
},
|
|
{
|
|
path: '/salary-summary',
|
|
name: 'salary-summary',
|
|
component: () => import('views/SalarySummary/SalarySummary.vue'),
|
|
meta: { title: '工资汇总' },
|
|
},
|
|
{
|
|
path: '/staff-info',
|
|
name: 'staff-info',
|
|
component: () => import('views/StaffInfo/StaffInfo.vue'),
|
|
meta: { title: '员工信息完善' },
|
|
},
|
|
];
|
|
|
|
const router = new VueRouter({
|
|
mode: 'history',
|
|
base: process.env.BASE_URL,
|
|
routes,
|
|
});
|
|
|
|
export default router;
|
|
|