From 6bae53bab47f625f4067dbb2929a7c8321785875 Mon Sep 17 00:00:00 2001
From: chenhc <2369838784@qq.com>
Date: Thu, 21 Mar 2024 15:11:37 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AF=81=E4=B9=A6=E6=98=AF=E5=90=A6?=
=?UTF-8?q?=E5=A4=B1=E6=95=88=E6=A0=B9=E6=8D=AE=E5=A4=B1=E6=95=88=E6=97=A5?=
=?UTF-8?q?=E6=9C=9F=E5=81=9A=E6=8E=A7=E5=88=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../company/supCompanyAduditDialog.vue | 34 +++++++++++++------
1 file changed, 23 insertions(+), 11 deletions(-)
diff --git a/src/views/purchase/company/supCompanyAduditDialog.vue b/src/views/purchase/company/supCompanyAduditDialog.vue
index 6ad8a5d..bcaee49 100644
--- a/src/views/purchase/company/supCompanyAduditDialog.vue
+++ b/src/views/purchase/company/supCompanyAduditDialog.vue
@@ -148,9 +148,9 @@
-
+
- {{ supStatus[scope.row.status] }}
+ {{ supStatus[scope.row.expireDate >= DATE_DAY ? 0:1 ] }}
@@ -248,14 +248,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -345,6 +345,7 @@ export default {
data() {
return {
+ DATE_DAY: "",
BASE_URL: process.env.VUE_APP_BASE_API,
headers: {},
imgViewerVisible: false,
@@ -490,13 +491,24 @@ export default {
this.getCompanyCertList();
this.customerlist();
this.selectedOptions = this.inputQuery.areaCode.split(",");
+ this.DATE_DAY = this.getDate();
},
components: {
draggable,
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("是否审核通过?", "提示", {