|
@@ -609,9 +609,10 @@ export default {
|
|
|
if (this.curStep.type === "markPaper") this.getList();
|
|
|
}
|
|
|
},
|
|
|
- historyMarkChange(mark) {
|
|
|
+ async historyMarkChange(mark) {
|
|
|
this.markChange(mark);
|
|
|
- this.$refs.MarkerHistory.updatePapers();
|
|
|
+ const data = await this.$refs.MarkerHistory.updatePapers();
|
|
|
+ this.carouselPapers = data || [];
|
|
|
},
|
|
|
toReview(data) {
|
|
|
this.setShortcut(["action"]);
|
|
@@ -772,6 +773,8 @@ export default {
|
|
|
this.curCarouselPaperIndex < this.carouselPapers.length - 1
|
|
|
) {
|
|
|
this.curCarouselPaperIndex++;
|
|
|
+ } else {
|
|
|
+ return;
|
|
|
}
|
|
|
this.selectCarouselPaper(this.curCarouselPaperIndex);
|
|
|
},
|