diff --git a/src/jmapNew/theme/beijing_01/operationConfig.js b/src/jmapNew/theme/beijing_01/operationConfig.js index 9118fa170..ec9594297 100644 --- a/src/jmapNew/theme/beijing_01/operationConfig.js +++ b/src/jmapNew/theme/beijing_01/operationConfig.js @@ -533,7 +533,7 @@ export default { productTypes: ['01'], stepVOList: [ { deviceType: '04', orderNum: 1, operateCode: '3050', tip: '鼠标左键点击【总人解】' }, - { deviceType: '04', orderNum: 2, operateCode: '3050', tip: '鼠标左键点击选择该信号机', codeType:'SIGNAL'} + { deviceType: '04', orderNum: 2, operateCode: '305', tip: '鼠标左键点击选择该信号机', codeType:'SIGNAL'} ] }, { diff --git a/src/store/getters.js b/src/store/getters.js index 4c10dae1a..f295a5c66 100644 --- a/src/store/getters.js +++ b/src/store/getters.js @@ -2,7 +2,6 @@ const getters = { routers: state => state.permission.routes, addRouters: state => state.permission.addRouters, sidebar: state => state.app.sidebar, - lessonbar: state => state.app.lessonBar, device: state => state.app.device, token: state => state.user.token, avatar: state => state.user.avatar, diff --git a/src/views/designPlatform/demonList.vue b/src/views/designPlatform/demonList.vue index cd6b094de..804c59720 100644 --- a/src/views/designPlatform/demonList.vue +++ b/src/views/designPlatform/demonList.vue @@ -74,8 +74,9 @@ export default { if (this.project === 'designxty' || this.project === 'designgzb' || this.project === 'designhyd') { this.refresh(); } - if (this.$route.query.mapId) { - this.defaultShowKeys = [this.$route.query.mapId]; + if (this.$route.query.mapId || this.$route.params.mapId) { + const mapId = this.$route.query.mapId || this.$route.params.mapId; + this.defaultShowKeys = [mapId]; } }, methods: { diff --git a/src/views/designPlatform/index.vue b/src/views/designPlatform/index.vue index deaf8a338..8daa17611 100644 --- a/src/views/designPlatform/index.vue +++ b/src/views/designPlatform/index.vue @@ -1,6 +1,6 @@