|
@@ -524,7 +524,8 @@ export default {
|
|
|
// 结束参数
|
|
|
endParams: {
|
|
|
id: 0,
|
|
|
- studyState: 3
|
|
|
+ studyState: 3,
|
|
|
+ dateOfCompletion: null
|
|
|
},
|
|
|
};
|
|
|
},
|
|
@@ -570,6 +571,7 @@ export default {
|
|
|
/** 新增反馈处理 */
|
|
|
handleAddFeedback() {
|
|
|
this.feedbackParams.planId = this.endParams.id;
|
|
|
+ this.endParams.dateOfCompletion = new Date();
|
|
|
// 新增培训计划反馈
|
|
|
addFeedback(this.feedbackParams).then(response => {
|
|
|
this.feedback.open = false;
|