feat:修改批量标记完成传参

This commit is contained in:
lixg
2023-01-06 17:16:48 +08:00
parent 1ad2c386d1
commit 068415d23e
3 changed files with 35 additions and 11 deletions

View File

@@ -133,11 +133,15 @@
<ASOver
v-model:ASOvervisible="ASOvervisible"
:ids="selectedRowKeys"
:taskId="datasource.routerTaskId"
:taskId="
datasource && datasource.routerTaskId ? datasource.routerTaskId : null
"
:type="2"
:pid="datasource.routerId"
:taskType="datasource.type"
:currentStageId="datasource.chapterId"
:pid="datasource && datasource.routerId ? datasource.routerId : null"
:taskType="datasource && datasource.type ? datasource.type : null"
:currentStageId="
datasource && datasource.chapterId ? datasource.chapterId : null
"
/>
<!-- 录入成绩抽屉 -->
<entry-scores v-model:Evisible="Evisible" />