|
@@ -301,6 +301,7 @@ export default {
|
|
|
label: "国际进港",
|
|
|
},
|
|
|
];
|
|
|
+ this.formItems[4].placeholder = "统计运单";
|
|
|
this.eledata = 2;
|
|
|
this.listqueryTemplateID = DATACONTENT_ID.modeSpecialgoods;
|
|
|
this.titleTop = "特货统计";
|
|
@@ -346,13 +347,16 @@ export default {
|
|
|
value: "国际离港",
|
|
|
label: "国际离港",
|
|
|
},
|
|
|
+ ];
|
|
|
+ this.formItems[4].placeholder = "统计航班";
|
|
|
+ this.formItems[4].options = [
|
|
|
{
|
|
|
- value: "国内进港",
|
|
|
- label: "国内进港",
|
|
|
+ value: 1,
|
|
|
+ label: "统计航班",
|
|
|
},
|
|
|
{
|
|
|
- value: "国际进港",
|
|
|
- label: "国际进港",
|
|
|
+ value: 2,
|
|
|
+ label: "统计重量",
|
|
|
},
|
|
|
];
|
|
|
this.formItems[3].disabled = true;
|
|
@@ -446,7 +450,7 @@ export default {
|
|
|
"--" +
|
|
|
data.dateTime[1];
|
|
|
if (data.set == 1) {
|
|
|
- this.listHeader = ["序号", "时间", "单", "环比(%)"];
|
|
|
+ this.listHeader = ["序号", "时间", "班", "环比(%)"];
|
|
|
} else if (data.set == 2) {
|
|
|
this.listHeader = ["序号", "时间", "重量", "环比(%)"];
|
|
|
}
|
|
@@ -547,7 +551,7 @@ export default {
|
|
|
this.tableData.data2.push(
|
|
|
element.pullFlightNum ? element.pullFlightNum : 0
|
|
|
);
|
|
|
- this.tableData.kg = "单位:单";
|
|
|
+ this.tableData.kg = "单位:班";
|
|
|
} else if (dat == 2) {
|
|
|
this.tableData.kg = "单位:吨";
|
|
|
this.tableData.data2.push(
|