feat:增加批量标注完成等

This commit is contained in:
lixg
2023-01-07 14:41:16 +08:00
parent 068415d23e
commit 8346807ce0
13 changed files with 177 additions and 84 deletions

View File

@@ -132,7 +132,7 @@
<!-- 批量标注完成 -->
<ASOver
v-model:ASOvervisible="ASOvervisible"
:ids="selectedRowKeys"
v-model:ids="selectedRowKeys"
:taskId="
datasource && datasource.routerTaskId ? datasource.routerTaskId : null
"
@@ -142,6 +142,7 @@
:currentStageId="
datasource && datasource.chapterId ? datasource.chapterId : null
"
v-model:getStudent="getStudent"
/>
<!-- 录入成绩抽屉 -->
<entry-scores v-model:Evisible="Evisible" />
@@ -395,7 +396,8 @@ export default {
return (
<div class="racona">
<span>
{text.record.finishStatus == 0
{text.record.finishStatus == 0 ||
text.record.finishStatus == null
? "未开始"
: text.record.finishStatus == 1
? "已完成"
@@ -554,7 +556,7 @@ export default {
if (res.data.code == 200) {
let newData = [];
for (let i = 0; i < res.data.data.records.length; i++) {
res.data.data.records[i].key = res.data.data.records[i].id;
res.data.data.records[i].key = res.data.data.records[i].studentId;
newData.push(res.data.data.records[i]);
}
state.tabledata = newData;
@@ -648,6 +650,7 @@ export default {
changePaginationStu,
exportTaskStu,
exportHomeWork,
getStudent,
};
},
};