[update]其他流程跳转没有移动端节点页面

This commit is contained in:
danshihao
2023-12-21 11:15:47 +08:00
parent 5cb009b6d7
commit 250f7fc2f5
2 changed files with 4 additions and 12 deletions
-12
View File
@@ -150,18 +150,6 @@ export default [
},
component: () => import('@/views/workCenter/permissionApplicationProcess/PermissionApplicationProcess')
},
// 标准宣贯流程(没有节点移动端需要显示,直接跳转noMobile)
{
path: '/workCenter/StandardPromotionProcess',
name: 'StandardPromotionProcess',
redirect: '/noMobile'
},
// 会后管理流程(没有节点移动端需要显示,直接跳转noMobile)
{
path: '/workCenter/PostMeetingManageProcess',
name: 'PostMeetingManageProcess',
redirect: '/noMobile'
},
// 项目合规评估流程
{
path: '/workCenter/ProjectComplianceEvaluationProcess',
+4
View File
@@ -122,6 +122,10 @@ export default {
case '20':
path = '/workCenter/PermissionApplicationProcess'
break
// 其他没有移动端节点的流程跳转到不支持移动端的页面
default:
this.$router.push({ path: '/noMobile' })
return
}
this.$router.push({
path: path,