This commit is contained in:
X1627315083
2023-11-23 15:42:36 +08:00
parent c5820ca082
commit af1c4670b6
6 changed files with 26 additions and 14 deletions

View File

@@ -120,7 +120,9 @@ export default defineComponent({
return
}
}
driverObj__.moveNext()
if(this.driver__.driver){
driverObj__.moveNext()
}
this.collectionStep = this.collectionStep + 1
},
@@ -176,7 +178,9 @@ export default defineComponent({
this.showCollectionModal =false
this.collectionStep = 1
this.$emit('finishCollection')
driverObj__.moveNext()
if(this.driver__.driver){
driverObj__.moveNext()
}
}
}
})