修改资质bug

prod
郑明梁 2 years ago
parent 9da07bdb5b
commit 92b538a53c

@ -112,11 +112,6 @@
</template>
</el-table-column>
<el-table-column label="说明" prop="remark"></el-table-column>
<el-table-column label="状态" prop="require">
<template slot-scope="scope">
<span>{{ statusMap[scope.row.need] }}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="200">
<template slot-scope="scope">
<el-button
@ -231,11 +226,6 @@
</el-table-column>
<el-table-column label="说明" prop="remark"></el-table-column>
<el-table-column label="状态" prop="need" s>
<template slot-scope="scope">
<span>{{ statusMap[scope.row.need] }}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="200">
<template slot-scope="scope">
<el-button

@ -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;
}

Loading…
Cancel
Save