feat: 证书是否失效根据失效日期做控制

dev2.0.1
chenhc 1 year ago
parent 6bae53bab4
commit c209a83db6

@ -187,11 +187,18 @@
<el-table-column label="生效期" prop="vailDate"></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="status">
<!-- <el-table-column label="证书状态" prop="status">-->
<!-- <template slot-scope="scope">-->
<!-- {{ supStatus[scope.row.status] }}-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="证书状态" >
<template slot-scope="scope">
{{ supStatus[scope.row.status] }}
{{ supStatus[scope.row.expireDate >= DATE_DAY ? 0:1 ] }}
</template>
</el-table-column>
<el-table-column label="确认状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
@ -284,14 +291,14 @@
<el-row>
<el-col :span="11">
<el-form-item label="证书状态:" prop="status">
<el-select v-model="currentAudit.status" :disabled="isOpen!=1" style="width: 100%">
<el-option label="失效" :value=1></el-option>
<el-option label="有效" :value=0></el-option>
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="11">-->
<!-- <el-form-item label="证书状态:" prop="status">-->
<!-- <el-select v-model="currentAudit.status" :disabled="isOpen!=1" style="width: 100%">-->
<!-- <el-option label="失效" :value=1></el-option>-->
<!-- <el-option label="有效" :value=0></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="11">
<el-form-item label="确认状态:" prop="confirmStatus">
@ -370,6 +377,7 @@ export default {
},
data() {
return {
DATE_DAY: "",
BASE_URL: process.env.VUE_APP_BASE_API,
loading: false,
classesDisplay: false,
@ -510,13 +518,24 @@ export default {
this.uploadUrl = this.BASE_URL + "/udiwms/upload/register/file";
this.fileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.DATE_DAY = this.getDate();
},
components: {
draggable,
companyAddCert, ElImageViewer
},
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) {
this.inputQuery.auditStatus = 1;
this.$confirm("是否审核通过?", "提示", {

@ -221,11 +221,17 @@
<el-table-column label="生效期" prop="vailDate"></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="status">
<!-- <el-table-column label="证书状态" prop="status">-->
<!-- <template slot-scope="scope">-->
<!-- {{ supStatus[scope.row.status] }}-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="证书状态" >
<template slot-scope="scope">
{{ supStatus[scope.row.status] }}
{{ supStatus[scope.row.expireDate >= DATE_DAY ? 0:1 ] }}
</template>
</el-table-column>
<el-table-column label="确认状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
@ -318,14 +324,14 @@
<el-row>
<el-col :span="11">
<el-form-item label="证书状态:" prop="status">
<el-select v-model="currentAudit.status" :disabled="isOpen!=1" style="width: 100%">
<el-option label="失效" :value=1></el-option>
<el-option label="有效" :value=0></el-option>
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="11">-->
<!-- <el-form-item label="证书状态:" prop="status">-->
<!-- <el-select v-model="currentAudit.status" :disabled="isOpen!=1" style="width: 100%">-->
<!-- <el-option label="失效" :value=1></el-option>-->
<!-- <el-option label="有效" :value=0></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="11">
<el-form-item label="确认状态:" prop="confirmStatus">
@ -410,6 +416,7 @@ export default {
},
data() {
return {
DATE_DAY: "",
BASE_URL: process.env.VUE_APP_BASE_API,
fromOptions: [],
fromPMOptions: [],
@ -547,13 +554,23 @@ export default {
this.findMethod();
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.DATE_DAY = this.getDate();
},
components: {
draggable, companyAddCert, ElImageViewer
},
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() {
this.$confirm("是否审核通过?", "提示", {
confirmButtonText: "确定",

Loading…
Cancel
Save