chenjun 2 жил өмнө
parent
commit
9d1c085362

+ 2 - 0
src/views/securityCheck/components/securityCheckHeader.vue

@@ -27,6 +27,7 @@
             type="date"
             size="small"
             format="YYYY-MM-DD"
+            valueFormat="YYYY-MM-DD"
           />
         </a-form-item>
         <a-form-item prop="endDate" style="margin-right: 36px">
@@ -35,6 +36,7 @@
             type="date"
             size="small"
             format="YYYY-MM-DD"
+            valueFormat="YYYY-MM-DD"
           />
         </a-form-item>
         <a-form-item

+ 15 - 3
src/views/securityCheck/views/cargoTable.vue

@@ -24,7 +24,7 @@
 <script>
 import SecurityCheckHeader from "../components/securityCheckHeader.vue";
 import SecurityCheckTable from "../components/securityCheckTable.vue";
-import { comprehensiveTable } from "@/api/statistics/statistics.js";
+import { comprehensive } from "@/api/statistics/statistics.js";
 export default {
   components: { SecurityCheckHeader, SecurityCheckTable },
   data() {
@@ -112,6 +112,9 @@ export default {
       }
     };
   },
+  created(){
+    this.formatDate()
+  },
   mounted() {
     this.setTableHeight();
     window.addEventListener("resize", this.setTableHeight);
@@ -121,12 +124,21 @@ export default {
     window.removeEventListener("resize", this.setTableHeight);
   },
   methods: {
+    formatDate() {
+        let date = new Date();
+        let myyear = date.getFullYear();
+        let mymonth = date.getMonth() +1;
+        let myweekday = date.getDate();
+        mymonth < 10 ? mymonth = "0" + mymonth : mymonth;
+        myweekday < 10 ? myweekday = "0" + myweekday :myweekday;
+        this.FormData.startTime =  `${myyear}-${mymonth}-${myweekday}`;
+        this.FormData.endTime =  `${myyear}-${mymonth}-${myweekday}`;
+      },
     //接口数据
     async getData() {
       try {
         this.loading = true;
-        console.log(this.FormData);
-        const result = await comprehensiveTable();
+        const result = await comprehensive(this.FormData);
         if (result.code === 200) {
           this.tableData = result.data;
           this.loading = false;