|
@@ -328,7 +328,9 @@ export default {
|
|
|
this.blueStruct = blueStruct;
|
|
|
this.$http
|
|
|
.get(
|
|
|
- QUESTION_API + "/courseProperty/enable/" + this.blueStruct.courseNo
|
|
|
+ QUESTION_API +
|
|
|
+ "/courseProperty/enable?courseCode=" +
|
|
|
+ encodeURIComponent(this.blueStruct.courseNo)
|
|
|
)
|
|
|
.then((response) => {
|
|
|
this.coursePropertyList = response.data;
|
|
@@ -362,7 +364,9 @@ export default {
|
|
|
getCoursePropertyList() {
|
|
|
this.$http
|
|
|
.get(
|
|
|
- QUESTION_API + "/courseProperty/enable/" + this.blueStruct.courseNo
|
|
|
+ QUESTION_API +
|
|
|
+ "/courseProperty/enable?courseCode=" +
|
|
|
+ encodeURIComponent(this.blueStruct.courseNo)
|
|
|
)
|
|
|
.then((response) => {
|
|
|
this.coursePropertyList = response.data;
|