|
|
@@ -369,9 +369,9 @@ export default {
|
|
|
},
|
|
|
// 反馈参数
|
|
|
feedbackParams: {
|
|
|
- answer1: null,
|
|
|
- answer2: null,
|
|
|
- answer3: null
|
|
|
+ answer1: "",
|
|
|
+ answer2: "",
|
|
|
+ answer3: ""
|
|
|
},
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
@@ -441,7 +441,9 @@ export default {
|
|
|
// 清空导师反馈内容
|
|
|
this.mentorFeedback = null;
|
|
|
// 清空答案
|
|
|
- this.feedbackParams = {};
|
|
|
+ this.feedbackParams.answer1 = "";
|
|
|
+ this.feedbackParams.answer2 = "";
|
|
|
+ this.feedbackParams.answer3 = "";
|
|
|
let feedback1 = {};
|
|
|
feedback1.planId = row.id;
|
|
|
feedback1.questionId = 1;
|
|
|
@@ -653,8 +655,12 @@ export default {
|
|
|
},
|
|
|
/** 附件上传成功处理 */
|
|
|
handleFileDocSuccessFeedback(response, file, fileList) {
|
|
|
+ this.getFileListFeedback()
|
|
|
this.docMentorFeedback.isUploading = false;
|
|
|
this.$alert(response.msg, this.$t('导入结果'), { dangerouslyUseHTMLString: true });
|
|
|
+ this.docFeedback.id = row.id;
|
|
|
+ this.docFeedback.queryParams.pId = row.id
|
|
|
+ this.docFeedback.pId = row.id
|
|
|
this.getFileListFeedback()
|
|
|
},
|
|
|
handleFileDocSuccessMentor(response, file, fileList) {
|