|
|
|
@ -31,7 +31,11 @@ |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="workNumber" label="学生学号" align="center"> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column v-if="!type" prop="experimentalClassName" label="学生班级" align="center"> |
|
|
|
|
<el-table-column prop="experimentalClassName" label="学生班级" align="center"> |
|
|
|
|
<template v-if="editing"> |
|
|
|
|
<el-input v-model="form.experimentalClassName"></el-input> |
|
|
|
|
</template> |
|
|
|
|
<template v-else>{{form.experimentalClassName}}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="instructor" label="指导老师" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
@ -335,6 +339,7 @@ |
|
|
|
|
summarize: this.form.summarize, |
|
|
|
|
instructor: this.form.instructor, |
|
|
|
|
reportId: Number(this.reportId), |
|
|
|
|
experimentalClassName: this.form.experimentalClassName |
|
|
|
|
} |
|
|
|
|
this.$post(`${this.api.modifyReport}`,data) |
|
|
|
|
.then(res => { |
|
|
|
|