|
@@ -851,7 +851,7 @@ export default {
|
|
|
isUpload: true,
|
|
|
isUploadAnswer: true,
|
|
|
message: "",
|
|
|
- answerMessage:"",
|
|
|
+ answerMessage: "",
|
|
|
checkResult: false,
|
|
|
checkResultAnswer: false,
|
|
|
fileNameList: [],
|
|
@@ -938,7 +938,11 @@ export default {
|
|
|
headers: { "Content-Type": "multipart/form-data" },
|
|
|
};
|
|
|
this.$http
|
|
|
- .post(QUESTION_API + "/paper/answer/import/" + this.paperId, param, config)
|
|
|
+ .post(
|
|
|
+ QUESTION_API + "/paper/answer/import/" + this.paperId,
|
|
|
+ param,
|
|
|
+ config
|
|
|
+ )
|
|
|
.then(() => {
|
|
|
this.dialogAnswerFile = false;
|
|
|
this.uploadAnswerLoading = false;
|
|
@@ -952,7 +956,6 @@ export default {
|
|
|
this.uploadAnswerLoading = false;
|
|
|
});
|
|
|
},
|
|
|
- },
|
|
|
//隐藏大题下的所有小题
|
|
|
hideContent(index) {
|
|
|
console.log("up");
|