|
@@ -414,7 +414,7 @@ export default {
|
|
|
this.$http
|
|
|
.get(QUESTION_API + "/property/" + blueStruct.coursePropertyId)
|
|
|
.then(response => {
|
|
|
- this.properties = response.body;
|
|
|
+ this.properties = response.data;
|
|
|
this.init();
|
|
|
});
|
|
|
} else {
|
|
@@ -478,7 +478,7 @@ export default {
|
|
|
"&courseNo=" +
|
|
|
this.blueStruct.courseNo;
|
|
|
this.$http.get(url).then(response => {
|
|
|
- this.quesNameList = response.body;
|
|
|
+ this.quesNameList = response.data;
|
|
|
});
|
|
|
},
|
|
|
//查询来源大题名称
|
|
@@ -491,7 +491,7 @@ export default {
|
|
|
"&courseNo=" +
|
|
|
this.blueStruct.courseNo;
|
|
|
this.$http.get(url).then(response => {
|
|
|
- this.quesNameList = response.body;
|
|
|
+ this.quesNameList = response.data;
|
|
|
});
|
|
|
}
|
|
|
this.paperDetailStruct.quesNames = [];
|