diff --git a/src/jmapNew/theme/haerbin_01/menus/menuButton.vue b/src/jmapNew/theme/haerbin_01/menus/menuButton.vue index eef67ab7c..c5e6800ab 100644 --- a/src/jmapNew/theme/haerbin_01/menus/menuButton.vue +++ b/src/jmapNew/theme/haerbin_01/menus/menuButton.vue @@ -513,7 +513,9 @@ export default { { name: '强解区段', cmdType: CMD.Switch.CMD_SWITCH_FAULT_UNLOCK, operate: OperationEvent.Section.fault.menuButton, show: false, securityCommand: true } ] : [ { name: '封锁道岔', cmdType: CMD.Switch.CMD_SWITCH_BLOCK, operate: OperationEvent.Switch.block.menuButton, show: false }, + { name: '解封道岔', cmdType: CMD.Switch.CMD_SWITCH_UNBLOCK, operate: OperationEvent.Switch.unblock.menuButton, show: false, securityCommand: true }, { name: '单锁道岔', cmdType: CMD.Switch.CMD_SWITCH_SINGLE_LOCK, operate: OperationEvent.Switch.lock.menuButton, show: false }, + { name: '取消锁定', cmdType: CMD.Switch.CMD_SWITCH_SINGLE_UNLOCK, operate: OperationEvent.Switch.unlock.menuButton, show: false, securityCommand: true }, { name: '转换定位', cmdType: CMD.Switch.CMD_SWITCH_NORMAL_POSITION, operate: OperationEvent.Switch.locate.menuButton, show: false, disabledName: 'normalPosition' }, { name: '转换反位', cmdType: CMD.Switch.CMD_SWITCH_REVERSE_POSITION, operate: OperationEvent.Switch.reverse.menuButton, show: false, disabledName: 'reversePosition' } // { name: '封锁区段', cmdType: CMD.Switch.CMD_SWITCH_SECTION_BLOCK, operate: OperationEvent.Section.lock.menu, show: false } diff --git a/src/views/drts/scene/create.vue b/src/views/drts/scene/create.vue index 497d491af..07de5e2a0 100644 --- a/src/views/drts/scene/create.vue +++ b/src/views/drts/scene/create.vue @@ -50,7 +50,7 @@ export default { { prop: 'description', label: '场景描述', type: 'textarea' }, { prop: 'disposalProcesses', label: '处置流程', type: 'textarea' }, { prop: 'operationScore', label: '运营部分总分', type: 'number', min: 0, max: 100, step:1, precision:1 }, - { prop:'scriptId', label:'关联剧本', type:'select', options:this.scriptList}, + { prop:'scriptId', label:'关联剧本', type:'select', options:this.scriptList, optionValue:'value', optionLabel:'label' }, { prop:'main', label:'是否主场景', type:'switch' } ] }; diff --git a/src/views/drts/scene/index.vue b/src/views/drts/scene/index.vue index 338edb67b..d780193dc 100644 --- a/src/views/drts/scene/index.vue +++ b/src/views/drts/scene/index.vue @@ -94,9 +94,9 @@ export default { } }; }, - mounted() { + created() { getScriptPageListOnlineNew().then(response=>{ - this.scriptList = response.data.list.map(elem => { return { value: elem.id, label: elem.name }; }); + this.scriptList = response.data.list.map(elem => { return { value: parseInt(elem.id), label: elem.name }; }); // this.queryForm.queryObject.scriptId.config.data = this.scriptList; }); }, diff --git a/src/views/drts/scene/operateStatistic.vue b/src/views/drts/scene/operateStatistic.vue index d89dff555..dda1ba57d 100644 --- a/src/views/drts/scene/operateStatistic.vue +++ b/src/views/drts/scene/operateStatistic.vue @@ -3,7 +3,7 @@