diff --git a/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue b/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue
index 49b0c15..9249a56 100644
--- a/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue
+++ b/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue
@@ -187,11 +187,18 @@
-
+
+
+
+
+
+
+
- {{ supStatus[scope.row.status] }}
+ {{ supStatus[scope.row.expireDate >= DATE_DAY ? 0:1 ] }}
+
@@ -284,14 +291,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -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("是否审核通过?", "提示", {
diff --git a/src/views/purchase/product/supProductAuditDialog.vue b/src/views/purchase/product/supProductAuditDialog.vue
index c4bd39e..c9fcd64 100644
--- a/src/views/purchase/product/supProductAuditDialog.vue
+++ b/src/views/purchase/product/supProductAuditDialog.vue
@@ -221,11 +221,17 @@
-
+
+
+
+
+
+
- {{ supStatus[scope.row.status] }}
+ {{ supStatus[scope.row.expireDate >= DATE_DAY ? 0:1 ] }}
+
@@ -318,14 +324,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -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: "确定",