|
@@ -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;
|