|
@@ -6,6 +6,7 @@
|
|
|
:clearable="false"
|
|
|
select-default
|
|
|
placeholder="请选择"
|
|
|
+ prefix
|
|
|
@change="semesterChange"
|
|
|
/>
|
|
|
<SelectExam
|
|
@@ -14,6 +15,7 @@
|
|
|
:clearable="false"
|
|
|
select-default
|
|
|
placeholder="请选择"
|
|
|
+ prefix
|
|
|
@default-selected="toPage(1)"
|
|
|
@change="examChange"
|
|
|
/>
|
|
@@ -22,6 +24,7 @@
|
|
|
:semester-id="searchModel.semesterId"
|
|
|
:exam-id="searchModel.examId"
|
|
|
placeholder="请选择"
|
|
|
+ prefix
|
|
|
@change="courseChange"
|
|
|
/>
|
|
|
<a-button type="primary" @click="toPage(1)">查询</a-button>
|
|
@@ -47,18 +50,14 @@
|
|
|
:columns="columns"
|
|
|
:data="dataList"
|
|
|
:pagination="pagination"
|
|
|
- :scroll="{ x: 1200 }"
|
|
|
+ :scroll="{ x: 600 }"
|
|
|
:bordered="false"
|
|
|
>
|
|
|
<template #courseCode="{ record }">
|
|
|
{{ courseNameCodeFilter(record) }}
|
|
|
</template>
|
|
|
<template #action="{ record }">
|
|
|
- <a-button
|
|
|
- type="text"
|
|
|
- class="btn-primary"
|
|
|
- disabled
|
|
|
- @click="toDownload(record)"
|
|
|
+ <a-button type="text" class="btn-primary" @click="toDownload(record)"
|
|
|
>下载</a-button
|
|
|
>
|
|
|
</template>
|
|
@@ -116,16 +115,17 @@
|
|
|
},
|
|
|
{
|
|
|
title: '试卷编号',
|
|
|
- slotName: 'paperNumber',
|
|
|
+ dataIndex: 'paperNumber',
|
|
|
},
|
|
|
{
|
|
|
title: '参考人数',
|
|
|
- slotName: 'studentCount',
|
|
|
+ dataIndex: 'studentCount',
|
|
|
+ width: 100,
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|
|
|
slotName: 'action',
|
|
|
- width: 220,
|
|
|
+ width: 80,
|
|
|
fixed: 'right',
|
|
|
cellClass: 'action-column',
|
|
|
},
|
|
@@ -254,7 +254,7 @@
|
|
|
|
|
|
await updateTrackTaskReady();
|
|
|
detailBuildStop.value = true;
|
|
|
- taskProgressRef.value?.open();
|
|
|
+ // taskProgressRef.value?.open();
|
|
|
}
|
|
|
|
|
|
// 单个课程下载
|