|
@@ -367,6 +367,10 @@ export default {
|
|
},
|
|
},
|
|
updateStepLevel(curStep, curLevel, count = 1) {
|
|
updateStepLevel(curStep, curLevel, count = 1) {
|
|
if (curStep.type === "done") return;
|
|
if (curStep.type === "done") return;
|
|
|
|
+ if (curStep.type === "markPaper") {
|
|
|
|
+ this.getStepLevels();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
|
|
if (curStep.type !== "markPaper") {
|
|
if (curStep.type !== "markPaper") {
|
|
const opos = this.steps.otherStep.findIndex(
|
|
const opos = this.steps.otherStep.findIndex(
|
|
@@ -422,6 +426,7 @@ export default {
|
|
this.steps.otherStep[spos].count++;
|
|
this.steps.otherStep[spos].count++;
|
|
} else {
|
|
} else {
|
|
this.steps.otherStep[spos].count--;
|
|
this.steps.otherStep[spos].count--;
|
|
|
|
+ if (this.curStep.type === "markPaper") this.getList();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
toReview(data) {
|
|
toReview(data) {
|