Min hai 1 ano
pai
achega
b1ec09f4fe

+ 8 - 3
fhKeeper/formulahousekeeper/timesheet-workshop/src/routes.js

@@ -16,6 +16,11 @@ import proDetail from './views/project/detail.vue'
 import depDetail from './views/project/detailDep.vue'
 import projectInside from  './views/project/projectInside.vue'
 
+//排产计划
+import todayPlan from './views/plan/today.vue'
+import tomorrowPlan from './views/plan/tomorrow.vue'
+import orderInsertPlan from './views/plan/orderInsert.vue'
+
 // 团队管理
 import team from './views/team/index.vue'
 
@@ -104,9 +109,9 @@ export const allRouters = [
         iconCls: 'iconfont firerock-iconxiangmu',
         leaf: false,
         children: [
-            { path: '/plan/today', component: prodList, name: '今日计划' },
-            { path: '/plan/tomorrow', component: prodList, name: '明日计划'},
-            { path: '/plan/orderInsert', component: prodList, name: '插单计划' },
+            { path: '/plan/today', component: todayPlan, name: '今日计划' },
+            { path: '/plan/tomorrow', component: tomorrowPlan, name: '明日计划'},
+            { path: '/plan/orderInsert', component: orderInsertPlan, name: '插单计划' },
         ],
     },