|
@@ -679,9 +679,19 @@ export default {
|
|
|
path: "/questions/extract_paper_rule/1"
|
|
|
});
|
|
|
} else {
|
|
|
- this.$router.push({
|
|
|
- path: "/questions/extract_paper_rule/0"
|
|
|
- });
|
|
|
+ if (this.extractConfig.examId) {
|
|
|
+ sessionStorage.setItem(
|
|
|
+ "extract_config_add_examId",
|
|
|
+ this.extractConfig.examId
|
|
|
+ );
|
|
|
+ this.$router.push({
|
|
|
+ path: "/questions/extract_paper_rule/2"
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/questions/extract_paper_rule/0"
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
//修改调卷规则
|