|
|
|
@ -126,7 +126,11 @@
|
|
|
|
|
<el-table-column label="证书编号" prop="code"></el-table-column>
|
|
|
|
|
<el-table-column label="有效期" prop="vailDate"></el-table-column>
|
|
|
|
|
<el-table-column label="失效期" prop="expireDate"></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="证书状态" prop="status"></el-table-column>-->
|
|
|
|
|
<el-table-column label="证书状态" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ status=0 ? '有效' : '失效' }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
|
|
|
|
|