修改bug

prod
wangwei 2 years ago
parent 9993d3a5cb
commit 03c61bdbe8

@ -128,7 +128,7 @@
<el-table-column label="失效期" prop="expireDate"></el-table-column> <el-table-column label="失效期" prop="expireDate"></el-table-column>
<el-table-column label="证书状态" > <el-table-column label="证书状态" >
<template slot-scope="scope"> <template slot-scope="scope">
{{ status=0 ? '有效' : '失效' }} <span>{{ expire[scope.row.status] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="审核状态" prop="auditStatus" width="120"> <el-table-column label="审核状态" prop="auditStatus" width="120">
@ -363,6 +363,10 @@ export default {
certQuery: { certQuery: {
page: 1, page: 1,
limit: 20 limit: 20
},
expire:{
0:"有效",
1:"失效"
}, },
certList: [], certList: [],
certTotal: 0, certTotal: 0,

Loading…
Cancel
Save