代码调整
This commit is contained in:
parent
45243e1968
commit
a91f0063d0
@ -105,7 +105,7 @@ export default {
|
||||
watch: {
|
||||
'$store.state.trainingNew.stepOrder': function(val) {
|
||||
const stepList = JSON.parse(this.$store.state.trainingNew.trainingDetail.stepJson);
|
||||
if (val < stepList.length) {
|
||||
if (val >= 1 && val < stepList.length) {
|
||||
const msg = {content:stepList[val].description, memberId:stepList[val].memberId};
|
||||
this.$store.dispatch('socket/setTrainingStepTip', msg);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user