diff --git a/src/i18n/langs/en/scriptRecord.js b/src/i18n/langs/en/scriptRecord.js index 3fdc4ac8f..d9612d42e 100644 --- a/src/i18n/langs/en/scriptRecord.js +++ b/src/i18n/langs/en/scriptRecord.js @@ -78,5 +78,7 @@ export default { modifyConversition: 'Modify Conversition', modifyConversitionButton: 'modify', drivingByPlan: 'Driving By Plan', - scriptBack: 'Back' + scriptBack: 'Back', + speakTo: 'to', + executeCommandTips: 'execute command: ' }; diff --git a/src/i18n/langs/zh/scriptRecord.js b/src/i18n/langs/zh/scriptRecord.js index 779167574..0201ade15 100644 --- a/src/i18n/langs/zh/scriptRecord.js +++ b/src/i18n/langs/zh/scriptRecord.js @@ -79,5 +79,7 @@ export default { modifyConversitionButton: '修改', drivingByPlan: '按计划行车', - scriptBack: '返回' + scriptBack: '返回', + speakTo: '对', + executeCommandTips: '执行指令: ' }; diff --git a/src/scripts/ConstConfig.js b/src/scripts/ConstConfig.js index c110025ea..16d1ae6f5 100644 --- a/src/scripts/ConstConfig.js +++ b/src/scripts/ConstConfig.js @@ -74,13 +74,13 @@ export default { { label: 'SHD四联段线', value: '19' } ], roleType: [ - {label: '管理员', value: 'Admin'}, - {label: '教员', value: 'Instructor'}, - {label: '行调', value: 'Dispatcher'}, - {label: '行值', value: 'Attendant'}, - {label: '观众', value: 'Audience'}, - {label: '司机', value: 'Driver'}, - {label: '通号', value: 'Repair'} + {label: '管理员', value: 'Admin', enLabel: 'Admin '}, + {label: '教员', value: 'Instructor', enLabel: 'Instructor '}, + {label: '行调', value: 'Dispatcher', enLabel: 'Dispatcher '}, + {label: '行值', value: 'Attendant', enLabel: 'Attendant '}, + {label: '观众', value: 'Audience', enLabel: 'Audience '}, + {label: '司机', value: 'Driver', enLabel: 'Driver '}, + {label: '通号', value: 'Repair', enLabel: 'Repair '} ], SimulationType: [ diff --git a/src/views/scriptManage/scriptRecord/addAction.vue b/src/views/scriptManage/scriptRecord/addAction.vue index b6b8e5fb9..fd88ee0e5 100644 --- a/src/views/scriptManage/scriptRecord/addAction.vue +++ b/src/views/scriptManage/scriptRecord/addAction.vue @@ -67,6 +67,7 @@