|
@@ -83,7 +83,7 @@
|
|
|
label="印刷计划"
|
|
|
min-width="200"
|
|
|
></el-table-column>
|
|
|
- <el-table-column
|
|
|
+ <!-- <el-table-column
|
|
|
prop="semesterName"
|
|
|
label="学期"
|
|
|
min-width="200"
|
|
@@ -92,7 +92,7 @@
|
|
|
prop="examName"
|
|
|
label="考试"
|
|
|
min-width="200"
|
|
|
- ></el-table-column>
|
|
|
+ ></el-table-column> -->
|
|
|
<el-table-column prop="examStartTime" label="考试开始时间" width="170">
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.examStartTime | timestampFilter
|
|
@@ -103,6 +103,11 @@
|
|
|
scope.row.examEndTime | timestampFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="status" label="计划状态" width="100">
|
|
|
+ <span slot-scope="scope">
|
|
|
+ {{ scope.row.status | printPlanStatusFilter }}
|
|
|
+ </span>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
prop="createName"
|
|
|
label="创建人"
|
|
@@ -113,11 +118,6 @@
|
|
|
scope.row.createTime | timestampFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="status" label="计划状态" width="100">
|
|
|
- <span slot-scope="scope">
|
|
|
- {{ scope.row.status | printPlanStatusFilter }}
|
|
|
- </span>
|
|
|
- </el-table-column>
|
|
|
<el-table-column
|
|
|
class-name="action-column"
|
|
|
label="操作"
|