[作业批改] - 学生答题提交
This commit is contained in:
parent
6ca1fb0883
commit
90d37e725b
|
@ -71,6 +71,16 @@ export function updateClassworkeval(data) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 修改classworkeval
|
||||||
|
export function updateClassworkevalList(data) {
|
||||||
|
return request({
|
||||||
|
url: '/education/classworkeval/updateList',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 修改classworkdata
|
// 修改classworkdata
|
||||||
export function updateClassworkdata(data) {
|
export function updateClassworkdata(data) {
|
||||||
return request({
|
return request({
|
||||||
|
|
|
@ -427,7 +427,7 @@ import useUserStore from '@/store/modules/user'
|
||||||
import { ref, reactive } from 'vue'
|
import { ref, reactive } from 'vue'
|
||||||
// import { Plus } from '@element-plus/icons-vue'
|
// import { Plus } from '@element-plus/icons-vue'
|
||||||
import { ElMessageBox, ElMessage } from 'element-plus'
|
import { ElMessageBox, ElMessage } from 'element-plus'
|
||||||
import { updateClassworkeval, updateClassworkdata, getClassworkdata } from '@/api/classTask'
|
import { updateClassworkeval, updateClassworkdata, getClassworkdata, updateClassworkevalList } from '@/api/classTask'
|
||||||
import { getTimeDate } from '@/utils/date'
|
import { getTimeDate } from '@/utils/date'
|
||||||
import ReFilePreview from '@/components/refile-preview/index.vue'
|
import ReFilePreview from '@/components/refile-preview/index.vue'
|
||||||
import { quizStrToList } from '@/utils/comm';
|
import { quizStrToList } from '@/utils/comm';
|
||||||
|
@ -898,6 +898,21 @@ const onSubmit = () => {
|
||||||
// }
|
// }
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
// let queryList = [];
|
||||||
|
// classWorkFormScore.teacherRating && classWorkFormScore.teacherRating.map((item, index) => {
|
||||||
|
// const queryParams = {
|
||||||
|
// id: item.id,
|
||||||
|
// teacherRating: item.score, // 教师评分
|
||||||
|
// rating: classWorkFormScore.rating, // 评价
|
||||||
|
// teacherremark: classWorkFormScore.teacherremark, //评分说明
|
||||||
|
// timestamp: getTimeDate() // 时间
|
||||||
|
// }
|
||||||
|
// //console.log(queryParams);
|
||||||
|
// queryList.push(queryParams);
|
||||||
|
// })
|
||||||
|
// //console.log(queryList);
|
||||||
|
// updateClassworkevalList(queryList).then((res) => {
|
||||||
|
// })
|
||||||
ElMessage({
|
ElMessage({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
message: '提交成功!'
|
message: '提交成功!'
|
||||||
|
|
Loading…
Reference in New Issue