|
@@ -126,19 +126,44 @@
|
|
|
<div class="dashboard-content-top-right-item">
|
|
|
<div class="dashboard-content-top-right-item-top">
|
|
|
<div class="dashboard-content-top-right-item-top-title">
|
|
|
- 航班动态统计
|
|
|
+ 特货分类统计
|
|
|
</div>
|
|
|
- <div class="dashboard-content-top-right-item-top-time" @click="showDatePicker(showTimeMsg.AirlineAbnormal)">
|
|
|
+ <div class="dashboard-content-top-right-item-top-time">
|
|
|
+ <el-dropdown trigger="click" @command="handleCommand">
|
|
|
+ <span class="icons">
|
|
|
+ <span class="icons-txt">{{ specialGoods }}</span>
|
|
|
+ <el-icon color="#ffffff">
|
|
|
+ <CaretBottom />
|
|
|
+ </el-icon>
|
|
|
+ </span>
|
|
|
+ <template #dropdown>
|
|
|
+ <el-dropdown-menu>
|
|
|
+ <el-dropdown-item v-for="(item,index) in specialGoodsDatas" :key="index" :command="item.specialTypeName">{{ item.specialTypeName }}</el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </template>
|
|
|
+ </el-dropdown>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-loading="loading7" element-loading-text="数据加载中..." element-loading-svg-view-box="-10, -10, 50, 50" element-loading-background="rgba(0,0,0, 0.3)" class="dashboard-content-top-left-item-bottom">
|
|
|
+ <Echarts id="ww44" :option="airlineObj" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="dashboard-content-top-right-item">
|
|
|
+ <div class="dashboard-content-top-right-item-top">
|
|
|
+ <div class="dashboard-content-top-right-item-top-title">
|
|
|
+ 货物重量统计
|
|
|
+ </div>
|
|
|
+ <!-- <div class="dashboard-content-top-right-item-top-time" @click="showDatePicker(showTimeMsg.TallyWeight)">
|
|
|
<el-icon color="#ffffff" size="18">
|
|
|
<Calendar />
|
|
|
</el-icon>
|
|
|
<el-icon color="#ffffff">
|
|
|
<CaretBottom />
|
|
|
</el-icon>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
- <div v-loading="loading7" element-loading-text="数据加载中..." element-loading-svg-view-box="-10, -10, 50, 50" element-loading-background="rgba(0,0,0, 0.3)" class="dashboard-content-top-left-item-bottom">
|
|
|
- <Echarts id="ww44" :option="airlineObj" />
|
|
|
+ <div v-loading="loading8" element-loading-text="数据加载中..." element-loading-svg-view-box="-10, -10, 50, 50" element-loading-background="rgba(0,0,0, 0.3)" class="dashboard-content-top-left-item-bottom">
|
|
|
+ <Echarts id="ww45" :option="tallyObj" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -172,8 +197,9 @@ const {
|
|
|
optionLeft,
|
|
|
airCompaneBaggage,
|
|
|
airlineAbnormalBaggage,
|
|
|
+ airStutas,
|
|
|
getPublicData,
|
|
|
- findData,
|
|
|
+ formatGoods,
|
|
|
} = usePublic();
|
|
|
const timePickerName = ref<number>(0);
|
|
|
const limitScrollNum = ref<number>(13);
|
|
@@ -186,14 +212,19 @@ const loading4 = ref<boolean>(false);
|
|
|
const loading5 = ref<boolean>(false);
|
|
|
const loading6 = ref<boolean>(false);
|
|
|
const loading7 = ref<boolean>(false);
|
|
|
+const loading8 = ref<boolean>(false);
|
|
|
const hourlyPeakObj = ref<any>({});
|
|
|
const waybillTrendObj = ref<any>({});
|
|
|
const nodePeakObj = ref<any>({});
|
|
|
const airlineTrafficObj = ref<any>({});
|
|
|
const airlineObj = ref<any>({});
|
|
|
+const tallyObj = ref<any>({});
|
|
|
const flightNums = ref<number>(0);
|
|
|
const stockNums = ref<number>(0);
|
|
|
const weightNums = ref<number | string>(0);
|
|
|
+const specialGoods = ref<string>("");
|
|
|
+const specialGoodsDatas = ref<any>([]);
|
|
|
+const specialGoodsAll = ref<any>([]);
|
|
|
const form = ref({
|
|
|
startDate: parseTime(Date.now() - 24 * 60 * 60 * 1000 * 7, "{y}-{m}-{d}"),
|
|
|
endDate: parseTime(Date.now(), "{y}-{m}-{d}"),
|
|
@@ -235,6 +266,9 @@ const submitForm = () => {
|
|
|
case showTimeMsg.AirlineAbnormal:
|
|
|
airlineFunc();
|
|
|
break;
|
|
|
+ case showTimeMsg.TallyWeight:
|
|
|
+ tallyWeightFunc();
|
|
|
+ break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
@@ -288,6 +322,14 @@ const parseDate = (date: string) => {
|
|
|
return dates.join("-");
|
|
|
};
|
|
|
|
|
|
+// 特货分类统计-选取下拉数据
|
|
|
+const handleCommand = (command: string) => {
|
|
|
+ specialGoods.value = command;
|
|
|
+ const newObj: any = _.cloneDeep(airlineAbnormalBaggage.option.baseOption);
|
|
|
+ const result = formatGoods(command, specialGoodsAll.value);
|
|
|
+ airlineObj.value = pubFunc(result, newObj);
|
|
|
+};
|
|
|
+
|
|
|
//获取小时峰值分布
|
|
|
const hourlyPeakFunc = async () => {
|
|
|
loading1.value = true;
|
|
@@ -401,34 +443,54 @@ const airlineAbnormalFunc = async () => {
|
|
|
//航班动态统计
|
|
|
const airlineFunc = async () => {
|
|
|
loading7.value = true;
|
|
|
- const listValues = (await getPublicData(DATACONTENT_ID.jscCgAirlineId, [
|
|
|
+ const listValues = (await getPublicData(DATACONTENT_ID.jscGoodsId, [
|
|
|
{
|
|
|
fd1: form.value.startDate,
|
|
|
fd2: form.value.endDate,
|
|
|
+ fttp: "国内进港",
|
|
|
},
|
|
|
])) as any;
|
|
|
if (listValues && isValue(listValues)) {
|
|
|
- const res = findData(nodeCode.arrival, listValues, "nodeCode", "flightNum");
|
|
|
const newObj: any = _.cloneDeep(airlineAbnormalBaggage.option.baseOption);
|
|
|
- (newObj.dataZoom = [
|
|
|
- {
|
|
|
- id: "dataZoomX",
|
|
|
- type: "slider",
|
|
|
- xAxisIndex: [0],
|
|
|
- filterMode: "filter",
|
|
|
- start: 0,
|
|
|
- end: 40,
|
|
|
- },
|
|
|
- ]),
|
|
|
- res.forEach((item) => {
|
|
|
- item.jobTime = item["name"] ?? item["nodeCode"];
|
|
|
- item.weight = item["flightNum"];
|
|
|
- });
|
|
|
- airlineObj.value = pubFunc(res, newObj);
|
|
|
+ const newDatas = _.cloneDeep(listValues);
|
|
|
+ const nameDatas = _.unionBy(newDatas, "specialTypeName");
|
|
|
+ const names: any = [...nameDatas];
|
|
|
+ specialGoods.value = names[0]["specialTypeName"];
|
|
|
+ specialGoodsDatas.value = names;
|
|
|
+ specialGoodsAll.value = listValues;
|
|
|
+ const result = formatGoods(
|
|
|
+ names[0]["specialTypeName"],
|
|
|
+ specialGoodsAll.value
|
|
|
+ );
|
|
|
+ airlineObj.value = pubFunc(result, newObj);
|
|
|
}
|
|
|
loading7.value = false;
|
|
|
};
|
|
|
|
|
|
+//理货重量
|
|
|
+const tallyWeightFunc = async () => {
|
|
|
+ loading8.value = true;
|
|
|
+ const listValues = (await getPublicData(DATACONTENT_ID.jscTallyId, [
|
|
|
+ {
|
|
|
+ fd1: form.value.startDate,
|
|
|
+ fd2: form.value.endDate,
|
|
|
+ fttp: "国内进港",
|
|
|
+ },
|
|
|
+ ])) as any;
|
|
|
+ if (listValues && isValue(listValues)) {
|
|
|
+ const newObj: any = _.cloneDeep(airStutas.option.baseOption);
|
|
|
+ const [datas, weights] = [<any>[], <any>[]];
|
|
|
+ listValues.forEach((item) => {
|
|
|
+ datas.push(item.flightDate);
|
|
|
+ weights.push(item.weight);
|
|
|
+ });
|
|
|
+ newObj.xAxis.data = datas;
|
|
|
+ newObj.series[0].data = weights;
|
|
|
+ tallyObj.value = newObj;
|
|
|
+ }
|
|
|
+ loading8.value = false;
|
|
|
+};
|
|
|
+
|
|
|
onMounted(() => {
|
|
|
hourlyPeakFunc();
|
|
|
waybillTrendFunc();
|
|
@@ -437,6 +499,7 @@ onMounted(() => {
|
|
|
airlineTrafficFunc();
|
|
|
airlineAbnormalFunc();
|
|
|
airlineFunc();
|
|
|
+ tallyWeightFunc();
|
|
|
});
|
|
|
</script>
|
|
|
|