|
|
@ -148,9 +148,9 @@
|
|
|
|
<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="status">
|
|
|
|
<el-table-column label="证书状态" >
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
{{ supStatus[scope.row.status] }}
|
|
|
|
{{ supStatus[scope.row.expireDate >= DATE_DAY ? 0:1 ] }}
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="确认状态" prop="auditStatus" width="120">
|
|
|
|
<el-table-column label="确认状态" prop="auditStatus" width="120">
|
|
|
@ -248,14 +248,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="11">
|
|
|
|
<!-- <el-col :span="11">-->
|
|
|
|
<el-form-item label="证书状态:" prop="status">
|
|
|
|
<!-- <el-form-item label="证书状态:" prop="status">-->
|
|
|
|
<el-select v-model="currentAudit.status" :disabled="isOpen!=1" style="width: 100%">
|
|
|
|
<!-- <el-select v-model="currentAudit.status" :disabled="isOpen!=1" style="width: 100%">-->
|
|
|
|
<el-option label="失效" :value=1></el-option>
|
|
|
|
<!-- <el-option label="失效" :value=1></el-option>-->
|
|
|
|
<el-option label="有效" :value=0></el-option>
|
|
|
|
<!-- <el-option label="有效" :value=0></el-option>-->
|
|
|
|
</el-select>
|
|
|
|
<!-- </el-select>-->
|
|
|
|
</el-form-item>
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
</el-col>
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="11">
|
|
|
|
<el-col :span="11">
|
|
|
|
<el-form-item label="确认状态:" prop="confirmStatus">
|
|
|
|
<el-form-item label="确认状态:" prop="confirmStatus">
|
|
|
@ -345,6 +345,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
|
|
|
|
DATE_DAY: "",
|
|
|
|
BASE_URL: process.env.VUE_APP_BASE_API,
|
|
|
|
BASE_URL: process.env.VUE_APP_BASE_API,
|
|
|
|
headers: {},
|
|
|
|
headers: {},
|
|
|
|
imgViewerVisible: false,
|
|
|
|
imgViewerVisible: false,
|
|
|
@ -490,13 +491,24 @@ export default {
|
|
|
|
this.getCompanyCertList();
|
|
|
|
this.getCompanyCertList();
|
|
|
|
this.customerlist();
|
|
|
|
this.customerlist();
|
|
|
|
this.selectedOptions = this.inputQuery.areaCode.split(",");
|
|
|
|
this.selectedOptions = this.inputQuery.areaCode.split(",");
|
|
|
|
|
|
|
|
this.DATE_DAY = this.getDate();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
components: {
|
|
|
|
draggable,
|
|
|
|
draggable,
|
|
|
|
ElImageViewer
|
|
|
|
ElImageViewer
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
getDate() {
|
|
|
|
|
|
|
|
const nowDate = new Date();
|
|
|
|
|
|
|
|
const date = {
|
|
|
|
|
|
|
|
year: nowDate.getFullYear(),
|
|
|
|
|
|
|
|
month: nowDate.getMonth() + 1,
|
|
|
|
|
|
|
|
date: nowDate.getDate(),
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
const newmonth = date.month >= 10 ? date.month : "0" + date.month;
|
|
|
|
|
|
|
|
const day = date.date >= 10 ? date.date : "0" + date.date;
|
|
|
|
|
|
|
|
return date.year + "-" + newmonth + "-" + day;
|
|
|
|
|
|
|
|
},
|
|
|
|
onPassSubmit(val) {
|
|
|
|
onPassSubmit(val) {
|
|
|
|
this.inputQuery.auditStatus = 1;
|
|
|
|
this.inputQuery.auditStatus = 1;
|
|
|
|
this.$confirm("是否审核通过?", "提示", {
|
|
|
|
this.$confirm("是否审核通过?", "提示", {
|
|
|
|