Files
laws-sinotruk-mobile/src/router/workCenter/index.js
T

134 lines
4.9 KiB
JavaScript

export default [
{
path: '/workCenter/enterpriseStandardInitChange',
name: 'EnterpriseStandardInitChange',
component: (resolve) => require(['@/views/workCenter/enterpriseStandardInitChange/EnterpriseStandardInitChange.vue'], resolve),
meta: {
// title: '企标计划立项/变更流程',
hasNavBar: true, // 这个属性控制页面是否显示上面的导航栏
hasBack: true // 这个属性控制页面上面的导航栏 是否有返回按钮
}
},
{
path: '/workCenter/annualRevisionPlanActivelyReport',
name: 'AnnualRevisionPlanActivelyReport',
component: (resolve) => require(['@/views/workCenter/annualRevisionPlanActivelyReport/AnnualRevisionPlanActivelyReport.vue'], resolve),
meta: {
// title: '年度制修订计划(各部门主动上报)',
hasNavBar: true, // 这个属性控制页面是否显示上面的导航栏
hasBack: true // 这个属性控制页面上面的导航栏 是否有返回按钮
}
},
{
path: '/workCenter/enterpriseStandardRecheck',
name: 'EnterpriseStandardRecheck',
component: (resolve) => require(['@/views/workCenter/enterpriseStandardRecheck/EnterpriseStandardRecheck.vue'], resolve),
meta: {
// title: '企标复审流程',
hasNavBar: true, // 这个属性控制页面是否显示上面的导航栏
hasBack: true // 这个属性控制页面上面的导航栏 是否有返回按钮
}
},
{
path: '/workCenter/enterpriseStandardAnnul',
name: 'EnterpriseStandardAnnul',
component: (resolve) => require(['@/views/workCenter/enterpriseStandardAnnul/EnterpriseStandardAnnul.vue'], resolve),
meta: {
// title: '企标废止流程',
hasNavBar: true, // 这个属性控制页面是否显示上面的导航栏
hasBack: true // 这个属性控制页面上面的导航栏 是否有返回按钮
}
},
{
path: '/workCenter/enterpriseStandardSealSave',
name: 'EnterpriseStandardSealSave',
component: (resolve) => require(['@/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSave.vue'], resolve),
meta: {
// title: '企标封存流程',
hasNavBar: true, // 这个属性控制页面是否显示上面的导航栏
hasBack: true // 这个属性控制页面上面的导航栏 是否有返回按钮
}
},
{
path: '/workCenter/enterpriseStandardStartUse',
name: 'EnterpriseStandardStartUse',
component: (resolve) => require(['@/views/workCenter/enterpriseStandardStartUse/EnterpriseStandardStartUse.vue'], resolve),
meta: {
// title: '已封存企标启用流程',
hasNavBar: true, // 这个属性控制页面是否显示上面的导航栏
hasBack: true // 这个属性控制页面上面的导航栏 是否有返回按钮
}
},
// 标准法规入库/变更流程
{
path: '/workCenter/standardEntryOrChangeProcess',
name: 'StandardEntryOrChangeProcess',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess')
},
// 征求意见流程
{
path: '/workCenter/standardConsultationProcess',
name: 'StandardConsultationProcess',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/standardConsultation/StandardConsultationProcess')
},
// 法规采购流程
{
path: '/workCenter/standardProcurementProcess',
name: 'StandardProcurementProcess',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/standardProcurementProcess/StandardProcurementProcess')
},
// 企标稽查计划
{
path: '/workCenter/EnterpriseStandardInspectionPlan',
name: 'EnterpriseStandardInspectionPlan',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow')
},
// 企标稽查流程
{
path: '/workCenter/EnterpriseStandardInspectionProcess',
name: 'EnterpriseStandardInspectionProcess',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/enterpriseStandardInspectionProcess/EenterpriseStandardInspectionProcess')
},
// 延期申请流程
{
path: '/workCenter/InspectionExtensionRequestProcess',
name: 'InspectionExtensionRequestProcess',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/inspectionExtensionRequestProcess/InspectionExtensionRequestProcess')
},
// 稽查整改流程
{
path: '/workCenter/EnterpriseStandardInspectionRectification',
name: 'EnterpriseStandardInspectionRectification',
meta: {
hasNavBar: true,
hasBack: true
},
component: () => import('@/views/workCenter/enterpriseStandardInspectionRectification/EnterpriseStandardInspectionRectification')
}
]