修改Initialisation->Initialization

This commit is contained in:
joylink_zhangsai 2023-07-10 14:17:37 +08:00
parent f17a54b860
commit 91ded59d7f

View File

@ -68,7 +68,7 @@ export default {
{ label: 'Exam', name: 'exam', click: this.goExam, isDisabled: () => { return false; }, isShow: () => { return this.$store.state.training.domConfig.hasExam && this.$store.state.training.simulationUserType === SimulationUserType.TEACHER; } },
// { label: 'Driving on schedule', name: 'drivingPlan', click: this.drivingPlan, isDisabled: () => { return this.$store.state.trainingNew.trainingSwitch; },
// isShow: () => this.$store.state.training.simulationUserType === SimulationUserType.TEACHER && this.$store.state.map.picture !== 'diagramEdit' },
{ label: 'Initialisation', name: 'initialize', click: this.initializeSim, isDisabled: () => { return this.$store.state.trainingNew.trainingSwitch; },
{ label: 'Initialization', name: 'initialize', click: this.initializeSim, isDisabled: () => { return this.$store.state.trainingNew.trainingSwitch; },
isShow: () => this.$store.state.training.simulationUserType === SimulationUserType.TEACHER && this.$store.state.map.picture !== 'diagramEdit' },
{ label: 'Exit', name: 'quit', click: this.exitSim, isDisabled: () => { return false; }, isShow: () => { return !this.$route.query.newOpen; } },
{ label: 'Close', name: 'close', click: () => { window.close(); }, isDisabled: () => { return false; }, isShow: () => { return this.$route.query.newOpen; } }