|
@@ -135,13 +135,14 @@
|
|
element-loading-text="数据加载中"
|
|
element-loading-text="数据加载中"
|
|
style="width:100%;"
|
|
style="width:100%;"
|
|
border
|
|
border
|
|
|
|
+ stripe
|
|
@selection-change="handleSelection"
|
|
@selection-change="handleSelection"
|
|
>
|
|
>
|
|
- <el-table-column type="selection" width="40"> </el-table-column>
|
|
|
|
|
|
+ <el-table-column type="selection" width="35px"> </el-table-column>
|
|
<el-table-column label="课程名称" prop="courseName" />
|
|
<el-table-column label="课程名称" prop="courseName" />
|
|
- <el-table-column width="150" label="课程代码" prop="courseCode" />
|
|
|
|
- <el-table-column width="80" label="试卷类型" prop="paperType" />
|
|
|
|
- <el-table-column width="80" label="试卷状态">
|
|
|
|
|
|
+ <el-table-column width="140px" label="课程代码" prop="courseCode" />
|
|
|
|
+ <el-table-column width="80px" label="试卷类型" prop="paperType" />
|
|
|
|
+ <el-table-column width="80px" label="试卷状态">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span
|
|
<span
|
|
@click="openAllotDialog(scope.row)"
|
|
@click="openAllotDialog(scope.row)"
|
|
@@ -150,9 +151,9 @@
|
|
>
|
|
>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column width="200" label="试卷名称" prop="paperName" />
|
|
|
|
- <el-table-column width="80" label="试卷P数" prop="paperP" />
|
|
|
|
- <el-table-column width="100" label="考生人数" prop="totalStudent" />
|
|
|
|
|
|
+ <el-table-column label="试卷名称" prop="paperName" />
|
|
|
|
+ <el-table-column width="80px" label="试卷P数" prop="paperP" />
|
|
|
|
+ <el-table-column width="90px" label="考生人数" prop="totalStudent" />
|
|
|
|
|
|
<el-table-column width="285" label="操作" :context="_self">
|
|
<el-table-column width="285" label="操作" :context="_self">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -161,6 +162,7 @@
|
|
icon="el-icon-view"
|
|
icon="el-icon-view"
|
|
v-show="scope.row.paperStatus > 1"
|
|
v-show="scope.row.paperStatus > 1"
|
|
@click="preview(scope.row)"
|
|
@click="preview(scope.row)"
|
|
|
|
+ plain
|
|
>预览
|
|
>预览
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
|
@@ -169,6 +171,7 @@
|
|
icon="el-icon-download"
|
|
icon="el-icon-download"
|
|
v-show="scope.row.paperStatus > 1"
|
|
v-show="scope.row.paperStatus > 1"
|
|
@click="openExportDialog(scope.row)"
|
|
@click="openExportDialog(scope.row)"
|
|
|
|
+ plain
|
|
>下载
|
|
>下载
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
|
@@ -178,6 +181,7 @@
|
|
:disabled="!hasPermit"
|
|
:disabled="!hasPermit"
|
|
v-show="scope.row.paperStatus > 1"
|
|
v-show="scope.row.paperStatus > 1"
|
|
@click="openAllotDialog(scope.row)"
|
|
@click="openAllotDialog(scope.row)"
|
|
|
|
+ plain
|
|
>试卷指定
|
|
>试卷指定
|
|
</el-button>
|
|
</el-button>
|
|
</template>
|
|
</template>
|