|
@@ -62,7 +62,11 @@ import OperationLog from '@/pages/System/OperationLog'
|
|
import Complaints from '@/pages/Complaints/index'
|
|
import Complaints from '@/pages/Complaints/index'
|
|
|
|
|
|
import Vehicle from '@/pages/Vehicle/index' //车辆管理
|
|
import Vehicle from '@/pages/Vehicle/index' //车辆管理
|
|
-import Architecture from '@/pages/Architecture/index' //车辆管理
|
|
|
|
|
|
+import Architecture from '@/pages/Architecture/index' //房屋架构
|
|
|
|
+
|
|
|
|
+import FireInspection from '@/pages/FireInspection/index' //消防巡查
|
|
|
|
+import FireDrill from '@/pages/FireDrill/index' //消防演练
|
|
|
|
+import Cleaning from '@/pages/Cleaning/index' //保洁安排
|
|
|
|
|
|
|
|
|
|
Vue.use( Router )
|
|
Vue.use( Router )
|
|
@@ -298,6 +302,27 @@ export default new Router({
|
|
ContainerView: Architecture
|
|
ContainerView: Architecture
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ // 消防巡查
|
|
|
|
+ {
|
|
|
|
+ path: '/FireInspection',
|
|
|
|
+ components: {
|
|
|
|
+ ContainerView: FireInspection
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 消防演练
|
|
|
|
+ {
|
|
|
|
+ path: '/FireDrill',
|
|
|
|
+ components: {
|
|
|
|
+ ContainerView: FireDrill
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 保洁安排
|
|
|
|
+ {
|
|
|
|
+ path: '/Cleaning',
|
|
|
|
+ components: {
|
|
|
|
+ ContainerView: Cleaning
|
|
|
|
+ }
|
|
|
|
+ },
|
|
]
|
|
]
|
|
}
|
|
}
|
|
]
|
|
]
|