提交 47c73abe authored 作者: matian's avatar matian

updates

上级 98424fe5
......@@ -26,7 +26,7 @@ export function delExamPaper(data) {
* 查看考试详情
*/
export function getExamPaperDetail(params) {
return httpRequest.get('/api/exam/v1/exam/view/', { params })
return httpRequest.get('/api/exam/v1/exam/view', { params })
}
/**
* 添加考生
......
......@@ -7,19 +7,18 @@
<el-dropdown-menu slot="dropdown">
<el-dropdown-item @click.native="editExamInfo">考试信息编辑</el-dropdown-item>
<el-dropdown-item @click.native="editExam">考试试卷编辑</el-dropdown-item>
<el-dropdown-item @click.native="createPop(row)">信息采集编辑</el-dropdown-item>
<el-dropdown-item @click.native="createPop(row)">考试配置编辑</el-dropdown-item>
<el-dropdown-item @click.native="createPop(row)">转移考生</el-dropdown-item>
<el-dropdown-item @click.native="editInfo">信息采集编辑</el-dropdown-item>
<el-dropdown-item @click.native="editExamSetting">考试配置编辑</el-dropdown-item>
<el-dropdown-item @click.native="transferStudent">转移考生</el-dropdown-item>
<el-dropdown-item @click.native="exportDetail">导出明细</el-dropdown-item>
<el-dropdown-item @click.native="delStudent">删除考生</el-dropdown-item>
<el-dropdown-item @click.native="handleAddStudent">添加考生</el-dropdown-item>
<el-dropdown-item @click.native="createPop(row)">发送成绩信息</el-dropdown-item>
<el-dropdown-item @click.native="sendMessage">发送成绩信息</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
<template v-slot:table-x="{ row }">
<el-button type="text" @click="handleDetail(row)">查看详情</el-button>
<el-button type="text" @click="handleDelete(row)">删除</el-button>
</template>
</app-list>
</app-card>
......@@ -88,7 +87,8 @@ export default {
{ label: '学校', prop: 'school' },
{ label: '参考时间', prop: 'exam_begin_time' },
{ label: '考中异常', prop: 'exam_error' },
{ label: '成绩', prop: 'sheet.score' }
{ label: '成绩', prop: 'sheet.score' },
{ label: '操作', slots: 'table-x', align: 'right', width: 150 }
]
}
},
......@@ -117,9 +117,14 @@ export default {
this.$router.push({ path: 'checkPaper', query: { papers: JSON.stringify(this.row.papers), isEdit: '2' } })
},
// 删除考生
delStudent(row) {},
delStudent() {},
// 导出明细
exportDetail() {}
exportDetail() {},
// 转移考生
transferStudent() {},
// 发送成绩信息
sendMessage() {},
editInfo() {}
}
}
</script>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论