|
|
|
@ -126,6 +126,7 @@
|
|
|
|
|
<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="审核状态" prop="auditStatus" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
|
|
|
|
@ -535,8 +536,13 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleChange(value) {
|
|
|
|
|
this.inputQuery.area =
|
|
|
|
|
CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
|
|
|
|
|
var area='';
|
|
|
|
|
for(var i=0;i<=2;i++){
|
|
|
|
|
if(CodeToText[value[i]]!=null && CodeToText[value[i]]!=undefined){
|
|
|
|
|
area+=CodeToText[value[i]];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.inputQuery.area = area;
|
|
|
|
|
this.inputQuery.areaCode = value.toString();
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
@ -548,6 +554,7 @@ export default {
|
|
|
|
|
this.editTye = 2;
|
|
|
|
|
} else {
|
|
|
|
|
this.formName = 1;
|
|
|
|
|
this.inputQuery.formData = {};
|
|
|
|
|
this.inputQuery.formData.addType=1;
|
|
|
|
|
this.editTye = 1;
|
|
|
|
|
}
|
|
|
|
|