|
@@ -38,7 +38,12 @@ export default {
|
|
|
picShow: true, //图片表格切换
|
|
|
action: 6,
|
|
|
dataid: "collection_ecahrt0",
|
|
|
- listqueryTemplateID: DATACONTENT_ID.modeDomesticexportTable,
|
|
|
+ listqueryTemplateID: [
|
|
|
+ DATACONTENT_ID.modeDomesticexportTable,
|
|
|
+ DATACONTENT_ID.modeDomesticentryTable,
|
|
|
+ DATACONTENT_ID.modeInternationalexportTable,
|
|
|
+ DATACONTENT_ID.modeInternationaladvanceTable,
|
|
|
+ ],
|
|
|
eledata: null,
|
|
|
set: "",
|
|
|
isShow: Echarts,
|
|
@@ -57,11 +62,36 @@ export default {
|
|
|
airport: "",
|
|
|
dateTime: "",
|
|
|
},
|
|
|
- titleTop: "航班统计国内出港",
|
|
|
+ titleTop: "航班统计",
|
|
|
formItems: [
|
|
|
+ {
|
|
|
+ prop: "fttp",
|
|
|
+ inputType: "select",
|
|
|
+ placeholder: "国内国际",
|
|
|
+ requiredWarning: "",
|
|
|
+ clearable: true,
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ value: 0,
|
|
|
+ label: "国内出港",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 1,
|
|
|
+ label: "国内进港",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 2,
|
|
|
+ label: "国际出港",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 3,
|
|
|
+ label: "国际进港",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
{
|
|
|
prop: "dateTime",
|
|
|
- inputType: "datetimerange",
|
|
|
+ inputType: "datePicker",
|
|
|
clearable: true,
|
|
|
width: "240px",
|
|
|
options: [],
|
|
@@ -85,13 +115,22 @@ export default {
|
|
|
this.tableData.time = [];
|
|
|
this.tableData.data1 = [];
|
|
|
this.tableData.data2 = [];
|
|
|
+ if (data.fttp === 0) {
|
|
|
+ this.action = 6;
|
|
|
+ } else if (data.fttp === 1) {
|
|
|
+ this.action = 7;
|
|
|
+ } else if (data.fttp === 2) {
|
|
|
+ this.action = 8;
|
|
|
+ } else if (data.fttp === 3) {
|
|
|
+ this.action = 9;
|
|
|
+ }
|
|
|
let option = [
|
|
|
{
|
|
|
- fd1: data.dateTime[0],
|
|
|
- fd2: data.dateTime[1],
|
|
|
+ fd1: data.dateTime[0] + " 00:00:00",
|
|
|
+ fd2: data.dateTime[1] + " 23:59:59",
|
|
|
},
|
|
|
];
|
|
|
- this.getQuery(option, null);
|
|
|
+ this.getQuery(option, data.fttp);
|
|
|
this.listname =
|
|
|
"航班统计国内出港" + data.dateTime[0] + "--" + data.dateTime[1];
|
|
|
this.listHeader = [
|
|
@@ -115,7 +154,7 @@ export default {
|
|
|
async getQuery(data, dat) {
|
|
|
try {
|
|
|
const { code, returnData } = await Query({
|
|
|
- id: this.listqueryTemplateID,
|
|
|
+ id: this.listqueryTemplateID[dat],
|
|
|
dataContent: data,
|
|
|
});
|
|
|
if (code == 0) {
|