|
@@ -365,10 +365,12 @@ export default {
|
|
|
updateStepLevel(curStep, curLevel, count = 1) {
|
|
|
if (curStep.type === "done") return;
|
|
|
|
|
|
- const opos = this.steps.otherStep.findIndex(
|
|
|
- item => item.type === curStep.type
|
|
|
- );
|
|
|
- this.steps.otherStep[opos].count -= count;
|
|
|
+ if (curStep.type !== "markPaper") {
|
|
|
+ const opos = this.steps.otherStep.findIndex(
|
|
|
+ item => item.type === curStep.type
|
|
|
+ );
|
|
|
+ this.steps.otherStep[opos].count -= count;
|
|
|
+ }
|
|
|
|
|
|
if (curStep.type === "shift") {
|
|
|
const spos = this.steps.otherStep.findIndex(
|