|
@@ -61,13 +61,17 @@
|
|
|
align="center"
|
|
|
:selectable="row => row.canPush"
|
|
|
></el-table-column>
|
|
|
- <el-table-column prop="name" label="印刷计划"></el-table-column>
|
|
|
- <el-table-column prop="examStartTime" label="考试开始时间">
|
|
|
+ <el-table-column
|
|
|
+ prop="name"
|
|
|
+ label="印刷计划"
|
|
|
+ min-width="120"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column prop="examStartTime" label="考试开始时间" width="170">
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.examStartTime | timestampFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="examEndTime" label="考试结束时间">
|
|
|
+ <el-table-column prop="examEndTime" label="考试结束时间" width="170">
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.examEndTime | timestampFilter
|
|
|
}}</span>
|
|
@@ -77,34 +81,47 @@
|
|
|
{{ scope.row.status | printPlanStatusFilter }}
|
|
|
</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="totalGates" label="总门次" width="80">
|
|
|
+ <el-table-column prop="totalGates" label="总门次" width="70">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="totalSubjects" label="总科次" width="80">
|
|
|
+ <el-table-column prop="totalSubjects" label="总科次" width="70">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="totalPackages" label="总卷袋数" width="100">
|
|
|
+ <el-table-column prop="totalPackages" label="总卷袋数" width="80">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="createTime" label="创建时间">
|
|
|
+ <el-table-column prop="createTime" label="创建时间" width="170">
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.createTime | timestampFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="createName" label="创建人"></el-table-column>
|
|
|
- <el-table-column prop="thirdRelateName" label="考试名称">
|
|
|
+ <el-table-column
|
|
|
+ prop="createName"
|
|
|
+ label="创建人"
|
|
|
+ min-width="80"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="thirdRelateName"
|
|
|
+ label="考试名称"
|
|
|
+ min-width="120"
|
|
|
+ >
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.thirdRelateName | defaultFieldFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="thirdRelateId" label="考试ID">
|
|
|
+ <el-table-column prop="thirdRelateId" label="考试ID" min-width="80">
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.thirdRelateId | defaultFieldFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="syncStatus" label="同步状态">
|
|
|
+ <el-table-column prop="syncStatus" label="同步状态" width="100">
|
|
|
<span slot-scope="scope">{{
|
|
|
scope.row.syncStatus | syncPrintStatusFilter
|
|
|
}}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column class-name="action-column" label="操作" width="120px">
|
|
|
+ <el-table-column
|
|
|
+ class-name="action-column"
|
|
|
+ label="操作"
|
|
|
+ width="100"
|
|
|
+ fixed="right"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
class="btn-primary"
|