|
@@ -27,7 +27,7 @@ export default {
|
|
|
clearable: { type: Boolean, default: true },
|
|
|
semesterId: { type: String, default: "" },
|
|
|
examId: { type: String, default: "" },
|
|
|
- courseCode: { type: String, default: "" },
|
|
|
+ courseId: { type: String, default: "" },
|
|
|
printPlanId: { type: [String, Array], default: "" },
|
|
|
},
|
|
|
data() {
|
|
@@ -64,7 +64,7 @@ export default {
|
|
|
this.$emit("change", {});
|
|
|
}
|
|
|
},
|
|
|
- courseCode(val, oldval) {
|
|
|
+ courseId(val, oldval) {
|
|
|
if (val !== oldval) {
|
|
|
this.search();
|
|
|
this.$emit("input", "");
|
|
@@ -81,7 +81,7 @@ export default {
|
|
|
semesterId: this.semesterId,
|
|
|
examId: this.examId,
|
|
|
printPlanId: this.printPlanId,
|
|
|
- courseCode: this.courseCode,
|
|
|
+ courseId: this.courseId,
|
|
|
};
|
|
|
const res = await conditionListPaperNumber(objFilterNull(data));
|
|
|
this.optionList = res;
|