diff --git a/src/components/student/TableStudent.vue b/src/components/student/TableStudent.vue index a9fb4050..9a66537e 100644 --- a/src/components/student/TableStudent.vue +++ b/src/components/student/TableStudent.vue @@ -188,6 +188,14 @@ >
导出作业
+ +
+
刷新
+
@@ -945,6 +953,18 @@ function startLoading() { tableData.value.loading = true; } +/** + * 更新列表分数详情 + * @param id {string} + * @param record {Object|undefined} + */ +function handleUpdateScore(){ + const pid = props.id + tableData.value.loading = true + updateScore({pid}).then(()=>{ + getStuList() + }) +} defineExpose({ getStuList, startLoading });