diff --git a/src/views/iscs/iscsSystem/index.vue b/src/views/iscs/iscsSystem/index.vue
index 0febe2f54..39753f217 100644
--- a/src/views/iscs/iscsSystem/index.vue
+++ b/src/views/iscs/iscsSystem/index.vue
@@ -11,13 +11,11 @@
diff --git a/src/views/iscs/iscsSystem/config/pis/mainScreen.vue b/src/views/iscs/iscsSystem/config/pis/mainScreen.vue
index a1a15a367..1e59b88fb 100644
--- a/src/views/iscs/iscsSystem/config/pis/mainScreen.vue
+++ b/src/views/iscs/iscsSystem/config/pis/mainScreen.vue
@@ -1,6 +1,45 @@
- 紧急发布一览
+
乘客信息
+
+
+
+
+
+
diff --git a/src/views/iscs/iscsSystem/nav.vue b/src/views/iscs/iscsSystem/nav.vue
index e3abcdbcc..3eb8f44b4 100644
--- a/src/views/iscs/iscsSystem/nav.vue
+++ b/src/views/iscs/iscsSystem/nav.vue
@@ -199,6 +199,18 @@ export default {
]
};
},
+ mounted() {
+ this.navList.forEach((nav, navIndex)=>{
+ if (nav.children && nav.children.length > 0) {
+ nav.children.forEach((child, childIndex)=>{
+ if (child.type && child.type === this.$route.params.mode) {
+ this.selectIndex = navIndex;
+ this.selectChildIndex = childIndex;
+ }
+ });
+ }
+ });
+ },
methods: {
selectTab(item, index) { // 选择大分类
if (this.selectIndex != index) {