|
@@ -90,13 +90,14 @@ export default {
|
|
|
endTimer:'',
|
|
|
startTimer: '',
|
|
|
musicGroupId: "",
|
|
|
+ userId:''
|
|
|
},
|
|
|
timerStr:''
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
this.checkTimes()
|
|
|
-
|
|
|
+ this.userId = this.$route.query.teacher;
|
|
|
if (this.taskInfo) {
|
|
|
this.taskForm.date = this.taskInfo.planStart;
|
|
|
this.taskForm.startTimer = dayjs(this.taskInfo.planStart).format('HH:mm:ss')
|
|
@@ -151,6 +152,7 @@ export default {
|
|
|
planEnd,
|
|
|
itemId: this.itemId,
|
|
|
id: this.taskInfo.id,
|
|
|
+ userId:this.userId
|
|
|
});
|
|
|
this.$message.success("提交成功");
|
|
|
this.$emit("refreshList", this.taskForm.date);
|
|
@@ -166,6 +168,7 @@ export default {
|
|
|
planStart,
|
|
|
planEnd,
|
|
|
itemId: this.itemId,
|
|
|
+ userId:this.userId
|
|
|
});
|
|
|
this.$message.success("提交成功");
|
|
|
this.$emit("refreshList", this.taskForm.date);
|