|
@@ -99,16 +99,18 @@ onMounted(() => {
|
|
|
</tbody>
|
|
|
</n-table>
|
|
|
<div class="record-detail-action">
|
|
|
- <n-grid :xGap="20" :cols="2">
|
|
|
- <n-gi>
|
|
|
- <n-button type="success" block :loading="loading" @click="toOpenPaper"
|
|
|
- >展开试卷</n-button
|
|
|
- >
|
|
|
- </n-gi>
|
|
|
- <n-gi>
|
|
|
- <n-button type="success" block @click="goBack">返回</n-button>
|
|
|
- </n-gi>
|
|
|
- </n-grid>
|
|
|
+ <div class="tw-flex">
|
|
|
+ <n-button
|
|
|
+ type="success"
|
|
|
+ class="tw-flex-1"
|
|
|
+ :loading="loading"
|
|
|
+ @click="toOpenPaper"
|
|
|
+ >
|
|
|
+ 展开试卷
|
|
|
+ </n-button>
|
|
|
+ <div class="tw-mx-4"></div>
|
|
|
+ <n-button type="success" class="tw-flex-1" @click="goBack">返回</n-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<ExamPaperPreview
|