From 117a610fabed1ed4b2b78d0ab672b1e95bfb2f05 Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: Wed, 20 Jul 2022 10:08:14 +0800
Subject: [PATCH] 添加修改页面,设置修改时默认显示日期范围
---
src/router/route.ts | 90 ++++++++++++++++++++++++++++++++++++++------
1 files changed, 77 insertions(+), 13 deletions(-)
diff --git a/src/router/route.ts b/src/router/route.ts
index 66e8615..bc7dd8a 100644
--- a/src/router/route.ts
+++ b/src/router/route.ts
@@ -6,7 +6,7 @@
path: '/',
name: '/',
component: () => import('/@/layout/index.vue'),
- redirect: '/loginPage',
+ redirect: '/home',
meta: {
isKeepAlive: true,
},
@@ -83,8 +83,8 @@
],
},
{
- path: '/loginPage',
- name: 'loginPage',
+ path: '/login',
+ name: 'login',
component: () => import('/@/views/loginPage/loginPage.vue'),
meta: {
title: '登录',
@@ -125,17 +125,9 @@
{
path: '/reportTypeSetting',
name: 'reportTypeSetting',
- component: () => import('/@/views/specialWorkSystem/approveProcessManagement/reportTypeSetting/index.vue'),
+ component: () => import('/@/views/specialWorkSystem/approveProcessManagement/approveLinkSettings/reportTypeSetting/index.vue'),
meta: {
- title: '新建上报类型',
- },
- },
- {
- path: '/addApproveProcess',
- name: 'addApproveProcess',
- component: () => import('/@/views/specialWorkSystem/approveProcessManagement/addApproveProcess/index.vue'),
- meta: {
- title: '新建审批环节',
+ title: '上报类型设置',
},
},
{
@@ -225,5 +217,77 @@
meta: {
title: '安全措施管理',
},
+ },
+ {
+ path: '/approveTypeSetting',
+ name: 'approveTypeSetting',
+ component: () => import('/@/views/specialWorkSystem/approveProcessManagement/approveLinkSettings/approveTypeSetting/index.vue'),
+ meta: {
+ title: '审批类型设置',
+ },
+ },
+ {
+ path: '/approveLinkSetting',
+ name: 'approveLinkSetting',
+ component: () => import('/@/views/specialWorkSystem/approveProcessManagement/approveLinkSettings/approveLinkSetting/index.vue'),
+ meta: {
+ title: '审批环节设置',
+ },
+ },
+ {
+ path: '/generalShiftManagement',
+ name: 'generalShiftManagement',
+ component: () => import('/@/views/generalShiftManagement/index.vue'),
+ meta: {
+ title: '通用排班管理'
+ },
+ },
+ {
+ path: '/workingHours',
+ name: 'workingHours',
+ component: () => import('/@/views/basicRightsManagement/personnelShiftManagement/workingHours/index.vue'),
+ meta: {
+ title: '工作时段管理'
+ },
+ },
+ {
+ path: '/holidayManagement',
+ name: 'holidayManagement',
+ component: () => import('/@/views/basicRightsManagement/personnelShiftManagement/holidayManagement/index.vue'),
+ meta: {
+ title: '休息日管理'
+ },
+ },
+ {
+ path: '/teamManagement',
+ name: 'teamManagement',
+ component: () => import('/@/views/basicRightsManagement/personnelShiftManagement/teamManagement/index.vue'),
+ meta: {
+ title: '班组管理'
+ },
+ },
+ {
+ path: '/personnelManagement',
+ name: 'personnelManagement',
+ component: () => import('/@/views/basicRightsManagement/personnelShiftManagement/personnelManagement/index.vue'),
+ meta: {
+ title: '人员排班管理'
+ },
+ },
+ {
+ path: '/shiftManagement',
+ name: 'shiftManagement',
+ component: () => import('/@/views/basicRightsManagement/personnelShiftManagement/shiftManagement/index.vue'),
+ meta: {
+ title: '排班方案管理'
+ },
+ },
+ {
+ path: '/inspectionTask',
+ name: 'inspectionTask',
+ component: () => import('/@/views/IntelligentXjSys/inspectionTaskManagement/inspectionTask/index.vue'),
+ meta: {
+ title: '巡检任务'
+ },
}
];
--
Gitblit v1.9.2