|
@@ -29,6 +29,7 @@ export default {
|
|
examId: { type: String, default: "" },
|
|
examId: { type: String, default: "" },
|
|
courseId: { type: String, default: "" },
|
|
courseId: { type: String, default: "" },
|
|
printPlanId: { type: [String, Array], default: "" },
|
|
printPlanId: { type: [String, Array], default: "" },
|
|
|
|
+ openCollegeId: { type: String, default: "" },
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -71,6 +72,13 @@ export default {
|
|
this.$emit("change", {});
|
|
this.$emit("change", {});
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ openCollegeId(val, oldval) {
|
|
|
|
+ if (val !== oldval) {
|
|
|
|
+ this.search();
|
|
|
|
+ this.$emit("input", "");
|
|
|
|
+ this.$emit("change", {});
|
|
|
|
+ }
|
|
|
|
+ },
|
|
},
|
|
},
|
|
async created() {
|
|
async created() {
|
|
this.search();
|
|
this.search();
|
|
@@ -85,6 +93,7 @@ export default {
|
|
examId: this.examId,
|
|
examId: this.examId,
|
|
printPlanId: this.printPlanId,
|
|
printPlanId: this.printPlanId,
|
|
courseId: this.courseId,
|
|
courseId: this.courseId,
|
|
|
|
+ openCollegeId: this.openCollegeId,
|
|
};
|
|
};
|
|
const res = await conditionListPaperNumber(objFilterNull(data));
|
|
const res = await conditionListPaperNumber(objFilterNull(data));
|
|
this.optionList = res;
|
|
this.optionList = res;
|