|
|
@ -196,6 +196,11 @@
|
|
|
|
<el-table-column label="有效期" prop="vailDate"></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="expireDate"></el-table-column>
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column label="证书状态" prop="status">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
{{ supStatus[scope.row.status] }}
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
|
|
|
|
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
|
|
|
@ -403,6 +408,10 @@ export default {
|
|
|
|
3: "变更未审核",
|
|
|
|
3: "变更未审核",
|
|
|
|
6: "未审核",
|
|
|
|
6: "未审核",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
supStatus: {
|
|
|
|
|
|
|
|
0: "有效",
|
|
|
|
|
|
|
|
1: "失效",
|
|
|
|
|
|
|
|
},
|
|
|
|
certAuditVisible: false,
|
|
|
|
certAuditVisible: false,
|
|
|
|
currentAudit: {},
|
|
|
|
currentAudit: {},
|
|
|
|
};
|
|
|
|
};
|
|
|
|