|
@@ -5,6 +5,7 @@
|
|
|
title="航空货物关联统计"
|
|
|
@change="change"
|
|
|
:withExportButton="false"
|
|
|
+ @search="search"
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="content_top">
|
|
@@ -167,6 +168,30 @@ export default {
|
|
|
this.init();
|
|
|
},
|
|
|
methods: {
|
|
|
+ //默认查询条件
|
|
|
+ search(data) {
|
|
|
+ this.relationDate(data);
|
|
|
+ },
|
|
|
+ //货物关联统计接口
|
|
|
+ async relationDate(data) {
|
|
|
+ try {
|
|
|
+ let params = {
|
|
|
+ beginDate: data[0][0],
|
|
|
+ endDate: data[0][1],
|
|
|
+ levelId: data[1],
|
|
|
+ proxyId: data[2],
|
|
|
+ };
|
|
|
+ console.log(params);
|
|
|
+ const result = await correlation(params);
|
|
|
+ if (result.status == 200) {
|
|
|
+ this.dataall.data = result.data;
|
|
|
+ this.datarisk.data = result.data;
|
|
|
+ }
|
|
|
+ console.log(result);
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
+ },
|
|
|
change() {
|
|
|
this.$router.push("./cargoRelevanceTable");
|
|
|
},
|