实训提示消失问题调整

This commit is contained in:
joylink_fanyuhong 2024-09-14 11:30:31 +08:00
parent 954ee991fa
commit 32430607dd

View File

@ -22,7 +22,8 @@ export default {
x: 0, x: 0,
y: 0 y: 0
}, },
tip: '' tip: '',
timetamp: 0
}; };
}, },
computed: { computed: {
@ -47,7 +48,8 @@ export default {
awaitOperateFlag = !document.getElementById(OperationEvent.StationControl.requestStationControl.awaitAlarm.domId); awaitOperateFlag = !document.getElementById(OperationEvent.StationControl.requestStationControl.awaitAlarm.domId);
} }
if (val && this.trainingDetail && this.trainingDetail.type === 'SINGLE' && val.memberId == this.myMemberId && !awaitOperateFlag) { if (val && this.trainingDetail && this.trainingDetail.type === 'SINGLE' && val.memberId == this.myMemberId && !awaitOperateFlag) {
this.tipInit(); this.timetamp = new Date().getTime();
this.tipInit(this.timetamp);
} else { } else {
this.tip = ''; this.tip = '';
this.popShow = false; this.popShow = false;
@ -56,7 +58,8 @@ export default {
}, },
'$store.state.trainingNew.voiceStepIndex': function(val) { '$store.state.trainingNew.voiceStepIndex': function(val) {
if (val > -1 && this.trainingDetail && this.trainingDetail.type === 'SINGLE') { if (val > -1 && this.trainingDetail && this.trainingDetail.type === 'SINGLE') {
this.tipInit(); this.timetamp = new Date().getTime();
this.tipInit(this.timetamp);
} else { } else {
this.tip = ''; this.tip = '';
this.popShow = false; this.popShow = false;
@ -76,9 +79,11 @@ export default {
this.position = { x: 0, y: 0 }; this.position = { x: 0, y: 0 };
}, },
'$store.state.training.tipEvent': function (val) { '$store.state.training.tipEvent': function (val) {
const timetamp = new Date().getTime();
this.timetamp = timetamp;
setTimeout(() => { setTimeout(() => {
if (this.tip) { if (this.tip) {
this.tipInit(); this.tipInit(timetamp);
} }
}, 10); }, 10);
}, },
@ -87,13 +92,18 @@ export default {
const stepInfo = this.$store.state.trainingNew.stepInfo; const stepInfo = this.$store.state.trainingNew.stepInfo;
const domId = OperationEvent.StationControl.requestStationControl.awaitAlarm.operation; const domId = OperationEvent.StationControl.requestStationControl.awaitAlarm.operation;
if (val && val.sourceMemberId == this.$store.state.training.myMemberId && stepInfo && stepInfo.tipPosition && stepInfo.tipPosition.domId === domId) { if (val && val.sourceMemberId == this.$store.state.training.myMemberId && stepInfo && stepInfo.tipPosition && stepInfo.tipPosition.domId === domId) {
setTimeout(() => { this.tipInit(); }, 10); const timetamp = new Date().getTime();
this.timetamp = timetamp;
setTimeout(() => { this.tipInit(timetamp); }, 10);
} }
} }
} }
}, },
methods: { methods: {
async tipInit() { async tipInit(timetamp) {
if (this.timetamp !== timetamp) {
return;
}
if (this.teachMode === ScriptMode.TEACH) { if (this.teachMode === ScriptMode.TEACH) {
this.tipShow = true; this.tipShow = true;
const offset = this.$store.state.config.canvasOffset; const offset = this.$store.state.config.canvasOffset;