Commit 9c9acc58 authored by 吴春's avatar 吴春

提交代码

parent 432b1688
......@@ -49,13 +49,13 @@
</template>
<template v-slot:body-cell-optioned="props">
<q-td :props="props">
<q-btn flat color="primary" size="xs" style="font-weight:400;" class="q-mr-md" label="学员考试"
<q-btn flat color="primary" v-if="props.row.ExamStatus==0||props.row.ExamStatus==2" size="xs" style="font-weight:400;" class="q-mr-md" label="学员考试"
@click="gotoExamTest(props.row)" />
<q-btn flat color="primary" size="xs" style="font-weight:400;" class="q-mr-md" label="阅卷"
<q-btn flat color="primary" v-if="props.row.ExamStatus==1" size="xs" style="font-weight:400;" class="q-mr-md" label="阅卷"
@click="gotoExamTestReview(props.row)" />
<q-btn flat color="primary" size="xs" style="font-weight:400;" class="q-mr-md" label="详情"
<q-btn flat color="primary" v-if="props.row.ExamStatus==3" size="xs" style="font-weight:400;" class="q-mr-md" label="详情"
@click="gotoExamTestInfo(props.row)" />
</q-td>
</template>
......
......@@ -258,7 +258,7 @@
</div>
</div>
<div style="width:20%;text-align:right;">
<q-btn color="accent" size="sm" class="q-mr-md" @click="submitTeacherScoring()" label="提交阅卷" />
<!-- <q-btn color="accent" size="sm" class="q-mr-md" @click="submitTeacherScoring()" label="提交阅卷" /> -->
<q-btn color="accent" size="sm" class="q-mr-md" @click="goBack()" label="返回" />
</div>
</div>
......@@ -451,6 +451,7 @@
this.DataObj.PaperName = tempData.Paper.PaperName;
this.DataObj.GuestId = tempData.Paper.GuestId;
this.DataObj.PublishId = tempData.Paper.PublishId;
this.DataObj.StuComment = tempData.StuComment;
if (tempData.Paper.GroupList && tempData.Paper.GroupList.length > 0) {
this.DataObj.GroupList = tempData.Paper.GroupList;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment