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 @@ - + @@ -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("是否审核通过?", "提示", {