indexOut.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. <template>
  2. <div class="dashboard">
  3. <ComHead :tabs-index="2" />
  4. <div class="dashboard-content">
  5. <div class="dashboard-content-top flex">
  6. <div class="dashboard-content-top-left">
  7. <div class="dashboard-content-top-left-item">
  8. <div class="dashboard-content-top-left-item-top">
  9. <div class="dashboard-content-top-left-item-top-title">
  10. 小时峰值分析
  11. </div>
  12. <div
  13. class="dashboard-content-top-left-item-top-time"
  14. @click="showDatePicker(showTimeMsg.HourlyPeak)"
  15. >
  16. <el-icon color="#ffffff" size="18">
  17. <Calendar />
  18. </el-icon>
  19. <el-icon color="#ffffff">
  20. <CaretBottom />
  21. </el-icon>
  22. </div>
  23. </div>
  24. <div
  25. v-loading="loading1"
  26. element-loading-text="数据加载中..."
  27. element-loading-background="rgba(0,0,0, 0.3)"
  28. class="dashboard-content-top-left-item-bottom"
  29. >
  30. <Echarts id="ww1" :option="hourlyPeakObj" />
  31. </div>
  32. </div>
  33. <div class="dashboard-content-top-left-item">
  34. <div class="dashboard-content-top-left-item-top">
  35. <div class="dashboard-content-top-left-item-top-title">
  36. 日趋势分析
  37. </div>
  38. <div
  39. class="dashboard-content-top-left-item-top-time"
  40. @click="showDatePicker(showTimeMsg.WaybillTrend)"
  41. >
  42. <el-icon color="#ffffff" size="18">
  43. <Calendar />
  44. </el-icon>
  45. <el-icon color="#ffffff">
  46. <CaretBottom />
  47. </el-icon>
  48. </div>
  49. </div>
  50. <div
  51. v-loading="loading2"
  52. element-loading-text="数据加载中..."
  53. element-loading-background="rgba(0,0,0, 0.3)"
  54. class="dashboard-content-top-left-item-bottom"
  55. >
  56. <Echarts id="ww12" :option="waybillTrendObj" />
  57. </div>
  58. </div>
  59. <div class="dashboard-content-top-left-item">
  60. <div class="dashboard-content-top-left-item-top">
  61. <div class="dashboard-content-top-left-item-top-title">
  62. 目的站统计分析
  63. </div>
  64. <div
  65. class="dashboard-content-bottom-left-top-time"
  66. @click="showDatePicker(showTimeMsg.NodePeak)"
  67. >
  68. <el-icon color="#ffffff" size="18">
  69. <Calendar />
  70. </el-icon>
  71. <el-icon color="#ffffff">
  72. <CaretBottom />
  73. </el-icon>
  74. </div>
  75. </div>
  76. <div
  77. v-loading="loading3"
  78. element-loading-text="数据加载中..."
  79. element-loading-background="rgba(0,0,0, 0.3)"
  80. class="dashboard-content-top-left-item-bottom"
  81. >
  82. <Echarts id="ww4" :option="nodePeakObj" />
  83. </div>
  84. </div>
  85. </div>
  86. <!-- 地图 -->
  87. <div class="dashboard-content-top-center">
  88. <div
  89. v-loading="loading4"
  90. element-loading-text="数据加载中..."
  91. element-loading-background="rgba(0,0,0, 0.3)"
  92. class="dashboard-content-top-center-top"
  93. >
  94. <div class="dashboard-content-top-center-top-list">
  95. <div class="dashboard-content-top-center-top-list-txt">
  96. 今日计划航班数(班)
  97. </div>
  98. <div class="dashboard-content-top-center-top-list-num">
  99. {{ flightNums }}
  100. </div>
  101. </div>
  102. <div class="dashboard-content-top-center-top-list">
  103. <div class="dashboard-content-top-center-top-list-txt">
  104. 已完成航班数(班)
  105. </div>
  106. <div class="dashboard-content-top-center-top-list-num">
  107. {{ stockNums }}
  108. </div>
  109. </div>
  110. <div class="dashboard-content-top-center-top-list">
  111. <div class="dashboard-content-top-center-top-list-txt">
  112. 已装载总量(吨)
  113. </div>
  114. <div class="dashboard-content-top-center-top-list-num">
  115. {{ formatWeight(weightNums) }}
  116. </div>
  117. </div>
  118. </div>
  119. <div
  120. v-loading="loading5"
  121. element-loading-text="数据加载中..."
  122. element-loading-background="rgba(0,0,0, 0.3)"
  123. class="dashboard-content-top-center-bottom"
  124. >
  125. <div class="dashboard-content-top-center-bottom-title">
  126. 航班动态跟踪
  127. </div>
  128. <div class="dashboard-content-top-center-bottom-content">
  129. <div class="dashboard-content-top-center-bottom-content-head">
  130. <div
  131. class="dashboard-content-top-center-bottom-content-head-list"
  132. >
  133. 公司/航班号
  134. </div>
  135. <div
  136. class="dashboard-content-top-center-bottom-content-head-list"
  137. >
  138. 航班状态
  139. </div>
  140. <div
  141. class="dashboard-content-top-center-bottom-content-head-list"
  142. >
  143. 经停/到达站
  144. </div>
  145. <div
  146. class="dashboard-content-top-center-bottom-content-head-list"
  147. >
  148. 计划起飞
  149. </div>
  150. <div
  151. class="dashboard-content-top-center-bottom-content-head-list"
  152. >
  153. 实际起飞
  154. </div>
  155. <div
  156. class="dashboard-content-top-center-bottom-content-head-list"
  157. >
  158. 机型
  159. </div>
  160. <div
  161. class="dashboard-content-top-center-bottom-content-head-list"
  162. >
  163. 类型
  164. </div>
  165. </div>
  166. <div
  167. ref="scrollContent"
  168. class="dashboard-content-top-center-bottom-content-bottom"
  169. >
  170. <vue3-seamless-scroll
  171. :list="listData"
  172. :limitScrollNum="limitScrollNum"
  173. :hover-stop="true"
  174. :hover="true"
  175. :step="0.3"
  176. >
  177. <div
  178. v-for="(item, index) in listData"
  179. :key="index"
  180. class="dashboard-content-top-center-bottom-content-bottom-list"
  181. >
  182. <div
  183. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  184. >
  185. {{ item.flightNo }}
  186. </div>
  187. <div
  188. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  189. >
  190. {{ item.flightState }}
  191. </div>
  192. <div
  193. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  194. >
  195. {{ item.airport }}
  196. </div>
  197. <div
  198. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  199. >
  200. {{ item.planTime }}
  201. </div>
  202. <!-- <div class="dashboard-content-top-center-bottom-content-bottom-list-txt">
  203. {{ item.preTime || '--' }}
  204. </div> -->
  205. <div
  206. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  207. >
  208. {{ item.acTime || '--' }}
  209. </div>
  210. <div
  211. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  212. >
  213. {{ item.planeType }}
  214. </div>
  215. <div
  216. class="dashboard-content-top-center-bottom-content-bottom-list-txt"
  217. >
  218. {{ item.KHT }}
  219. </div>
  220. </div>
  221. </vue3-seamless-scroll>
  222. </div>
  223. </div>
  224. </div>
  225. </div>
  226. <div class="dashboard-content-top-right">
  227. <div class="dashboard-content-top-right-item">
  228. <div class="dashboard-content-top-right-item-top">
  229. <div class="dashboard-content-top-right-item-top-title">
  230. 航司统计分析
  231. </div>
  232. <div
  233. class="dashboard-content-top-right-item-top-time"
  234. @click="showDatePicker(showTimeMsg.AirlineTraffic)"
  235. >
  236. <el-icon color="#ffffff" size="18">
  237. <Calendar />
  238. </el-icon>
  239. <el-icon color="#ffffff">
  240. <CaretBottom />
  241. </el-icon>
  242. </div>
  243. </div>
  244. <div
  245. v-loading="loading6"
  246. element-loading-text="数据加载中..."
  247. element-loading-background="rgba(0,0,0, 0.3)"
  248. class="dashboard-content-top-right-item-bottom"
  249. >
  250. <Echarts id="a1" :option="airlineTrafficObj" />
  251. </div>
  252. </div>
  253. <div class="dashboard-content-top-right-item">
  254. <div class="dashboard-content-top-right-item-top">
  255. <div class="dashboard-content-top-right-item-top-title">
  256. 特货分类统计
  257. </div>
  258. <div
  259. class="dashboard-content-top-right-item-top-time"
  260. @click="showDatePicker(showTimeMsg.SpecialClassification)"
  261. >
  262. <el-icon color="#ffffff" size="18">
  263. <Calendar />
  264. </el-icon>
  265. <el-icon color="#ffffff">
  266. <CaretBottom />
  267. </el-icon>
  268. </div>
  269. <div class="dashboard-content-top-right-item-top-time">
  270. <el-dropdown
  271. :disabled="!specialGoodsDatas.length"
  272. trigger="click"
  273. @command="handleCommand"
  274. >
  275. <span class="icons">
  276. <span class="icons-txt">{{ specialGoods }}</span>
  277. <el-icon color="#ffffff">
  278. <CaretBottom />
  279. </el-icon>
  280. </span>
  281. <template #dropdown>
  282. <el-dropdown-menu>
  283. <el-dropdown-item
  284. v-for="item in specialGoodsDatas"
  285. :key="item.specialTypeName"
  286. :command="item.specialTypeName"
  287. >{{ item.specialTypeName }}</el-dropdown-item
  288. >
  289. </el-dropdown-menu>
  290. </template>
  291. </el-dropdown>
  292. </div>
  293. </div>
  294. <div
  295. v-loading="loading7"
  296. element-loading-text="数据加载中..."
  297. element-loading-background="rgba(0,0,0, 0.3)"
  298. class="dashboard-content-top-left-item-bottom"
  299. >
  300. <Echarts id="ww44" :option="airlineObj" />
  301. </div>
  302. </div>
  303. <div class="dashboard-content-top-right-item">
  304. <div class="dashboard-content-top-right-item-top">
  305. <div class="dashboard-content-top-right-item-top-title">
  306. 拉货统计分析
  307. </div>
  308. <div
  309. class="dashboard-content-top-right-item-top-time"
  310. @click="showDatePicker(showTimeMsg.PickingStatistics)"
  311. >
  312. <el-icon color="#ffffff" size="18">
  313. <Calendar />
  314. </el-icon>
  315. <el-icon color="#ffffff">
  316. <CaretBottom />
  317. </el-icon>
  318. </div>
  319. </div>
  320. <div
  321. v-loading="loading8"
  322. element-loading-text="数据加载中..."
  323. element-loading-background="rgba(0,0,0, 0.3)"
  324. class="dashboard-content-top-left-item-bottom"
  325. >
  326. <Echarts id="ww45" :option="pickingObj" />
  327. </div>
  328. </div>
  329. </div>
  330. </div>
  331. </div>
  332. <Dialog
  333. :flag="flag"
  334. msg-title="日期选择"
  335. @resetForm="resetForm"
  336. @submitForm="submitForm"
  337. >
  338. <el-form :model="form" label-width="120px">
  339. <el-form-item label="开始日期">
  340. <el-date-picker
  341. :disabled-date="disabledStartDate"
  342. v-model="form.startDate"
  343. type="date"
  344. placeholder="请选择开始日期"
  345. size="default"
  346. format="YYYY-MM-DD"
  347. value-format="YYYY-MM-DD"
  348. />
  349. </el-form-item>
  350. <el-form-item label="结束日期">
  351. <el-date-picker
  352. :disabled-date="disabledEndDate"
  353. v-model="form.endDate"
  354. type="date"
  355. placeholder="请选择结束日期"
  356. size="default"
  357. format="YYYY-MM-DD"
  358. value-format="YYYY-MM-DD"
  359. />
  360. </el-form-item>
  361. </el-form>
  362. </Dialog>
  363. </div>
  364. </template>
  365. <script setup lang="ts">
  366. import { Vue3SeamlessScroll } from 'vue3-seamless-scroll'
  367. import Echarts from '@/components/Echarts/commonChartsBar.vue'
  368. import ComHead from './components/comHead.vue'
  369. import { Calendar, CaretBottom } from '@element-plus/icons-vue'
  370. import Dialog from '@/components/dialog/index.vue'
  371. import { usePublic, showTimeMsg } from './hooks/usePublic'
  372. // import nodeCode from './hooks/nodeCode'
  373. import { parseTime, isValue } from '@/utils/validate'
  374. import * as _ from 'lodash'
  375. import { useLoop } from '@/hooks/useLoop'
  376. const {
  377. optionLeft,
  378. airCompaneBaggage,
  379. airlineAbnormalBaggage,
  380. getPublicData,
  381. formatGoods,
  382. formatWeight,
  383. } = usePublic()
  384. const timePickerName = ref(0)
  385. const limitScrollNum = ref(13)
  386. const scrollContent = ref<HTMLElement>()
  387. const flag = ref(false)
  388. const loading1 = ref(true)
  389. const loading2 = ref(true)
  390. const loading3 = ref(true)
  391. const loading4 = ref(true)
  392. const loading5 = ref(true)
  393. const loading6 = ref(true)
  394. const loading7 = ref(true)
  395. const loading8 = ref(true)
  396. const hourlyPeakObj = ref<any>({})
  397. const waybillTrendObj = ref<any>({})
  398. const nodePeakObj = ref<any>({})
  399. const airlineTrafficObj = ref<any>({})
  400. const airlineObj = ref<any>({})
  401. const pickingObj = ref<any>({})
  402. const flightNums = ref(0)
  403. const stockNums = ref(0)
  404. const specialGoods = ref<string>('分类')
  405. const specialGoodsDatas = ref<any>([])
  406. const specialGoodsAll = ref<any>([])
  407. const weightNums = ref<number | string>(0)
  408. const today = parseTime(Date.now(), '{y}-{m}-{d}')
  409. const sevenDaysAgo = parseTime(
  410. Date.now() - 24 * 60 * 60 * 1000 * 7,
  411. '{y}-{m}-{d}'
  412. )
  413. const form = reactive({
  414. startDate: sevenDaysAgo,
  415. endDate: today,
  416. })
  417. const listData = ref<any>([])
  418. const disabledStartDate = (time: Date) => {
  419. const timer: any = form.endDate
  420. const data = new Date(timer)
  421. return time.getTime() > data.getTime()
  422. }
  423. const disabledEndDate = (time: Date) => {
  424. const timer: any = form.startDate
  425. let data = new Date(timer)
  426. return data.getTime() > time.getTime()
  427. }
  428. const resetForm = () => {
  429. flag.value = false
  430. }
  431. const submitForm = () => {
  432. flag.value = false
  433. let dates: any = {}
  434. switch (timePickerName.value) {
  435. case showTimeMsg.HourlyPeak:
  436. dates = hourlyDates
  437. loading1.value = true
  438. break
  439. case showTimeMsg.WaybillTrend:
  440. dates = waybillDates
  441. loading2.value = true
  442. break
  443. case showTimeMsg.NodePeak:
  444. dates = nodeDates
  445. loading3.value = true
  446. break
  447. case showTimeMsg.AirlineTraffic:
  448. dates = airlineTrafficDates
  449. loading6.value = true
  450. break
  451. case showTimeMsg.SpecialClassification:
  452. dates = airlineDates
  453. loading7.value = true
  454. break
  455. case showTimeMsg.PickingStatistics:
  456. dates = pickingDates
  457. loading8.value = true
  458. break
  459. default:
  460. break
  461. }
  462. dates.startDate = form.startDate
  463. dates.endDate = form.endDate
  464. }
  465. const showDatePicker = (id?) => {
  466. flag.value = true
  467. timePickerName.value = id
  468. let dates: any = {}
  469. switch (id) {
  470. case showTimeMsg.HourlyPeak:
  471. dates = hourlyDates
  472. break
  473. case showTimeMsg.WaybillTrend:
  474. dates = waybillDates
  475. break
  476. case showTimeMsg.NodePeak:
  477. dates = nodeDates
  478. break
  479. case showTimeMsg.AirlineTraffic:
  480. dates = airlineTrafficDates
  481. break
  482. case showTimeMsg.SpecialClassification:
  483. dates = airlineDates
  484. break
  485. case showTimeMsg.PickingStatistics:
  486. dates = pickingDates
  487. break
  488. default:
  489. break
  490. }
  491. form.startDate = dates.startDate || null
  492. form.endDate = dates.endDate || null
  493. }
  494. const sortClass = sortData => {
  495. const groupBy = (array, f) => {
  496. let groups = {}
  497. array.forEach(o => {
  498. let group = JSON.stringify(f(o))
  499. groups[group] = groups[group] || []
  500. groups[group].push(o)
  501. })
  502. return Object.keys(groups).map(group => {
  503. return groups[group]
  504. })
  505. }
  506. const sorted = groupBy(sortData, item => {
  507. return item.jobName
  508. })
  509. return sorted
  510. }
  511. const pubFunc = (listValues, target, type?) => {
  512. const newObj = _.cloneDeep(target)
  513. const [jobTimes, stockNums, weights] = [<any>[], <any>[], <any>[]]
  514. listValues.forEach(item => {
  515. jobTimes.push(item.jobTime)
  516. stockNums.push(item.stockNum)
  517. weights.push(item.weight)
  518. })
  519. newObj.xAxis.data = jobTimes
  520. if (type) {
  521. newObj.series[1].data = stockNums
  522. newObj.series[0].data = weights
  523. } else {
  524. newObj.series[0].data = stockNums
  525. newObj.series[1].data = weights
  526. }
  527. return newObj
  528. }
  529. const parseDate = (date: string) => {
  530. const dates = date.split('-')
  531. const newDate = dates.shift()
  532. return dates.join('-')
  533. }
  534. // 特货分类统计-选取下拉数据
  535. const handleCommand = (command: string) => {
  536. specialGoods.value = command
  537. const newObj: any = _.cloneDeep(airlineAbnormalBaggage.option.baseOption)
  538. const result = formatGoods(command, specialGoodsAll.value)
  539. airlineObj.value = pubFunc(result, newObj)
  540. }
  541. //获取小时峰值分布
  542. const hourlyDates = reactive({ startDate: today, endDate: today })
  543. const hourlyPeakFunc = async () => {
  544. const listValues = (await getPublicData(DATACONTENT_ID.jscGjHourlyPeakId, [
  545. { flightDate1: hourlyDates.startDate, flightDate2: hourlyDates.endDate },
  546. ])) as any
  547. if (listValues && isValue(listValues)) {
  548. hourlyPeakObj.value = pubFunc(listValues, optionLeft, true)
  549. loading1.value = false
  550. }
  551. }
  552. //运单趋势分析
  553. const waybillDates = reactive({ startDate: sevenDaysAgo, endDate: today })
  554. const waybillTrendFunc = async () => {
  555. const listValues = (await getPublicData(DATACONTENT_ID.jscGjWaybillTrendId, [
  556. { flightDate1: waybillDates.startDate, flightDate2: waybillDates.endDate },
  557. ])) as any
  558. if (listValues && isValue(listValues)) {
  559. listValues.forEach(item => {
  560. item.jobTime = parseDate(item['jobTime'])
  561. })
  562. waybillTrendObj.value = pubFunc(listValues, optionLeft, true)
  563. loading2.value = false
  564. }
  565. }
  566. //始发站/目的站统计分析
  567. const nodeDates = reactive({ startDate: today, endDate: today })
  568. const nodePeakFunc = async () => {
  569. const listValues = (await getPublicData(DATACONTENT_ID.jscAirlineAbnormalId, [
  570. {
  571. fd1: nodeDates.startDate,
  572. fd2: nodeDates.endDate,
  573. fttp: '国际离港',
  574. },
  575. ])) as any
  576. if (listValues && isValue(listValues)) {
  577. const newObj = _.cloneDeep(airCompaneBaggage.option.baseOption)
  578. listValues.forEach(item => {
  579. item.jobTime = item['airport']
  580. })
  581. nodePeakObj.value = pubFunc(listValues, newObj, true)
  582. loading3.value = false
  583. }
  584. }
  585. //航班数&运单数
  586. const numbersFunc = async () => {
  587. const listValues = (await getPublicData(DATACONTENT_ID.jscGjNumbersId, [
  588. {
  589. fd1: today,
  590. fd2: today,
  591. },
  592. ])) as any
  593. if (listValues && isValue(listValues)) {
  594. const { flightNum, finishFlightNum, weight } = listValues[0]
  595. flightNums.value = flightNum ?? 0
  596. stockNums.value = finishFlightNum ?? 0
  597. weightNums.value = weight ?? 0
  598. loading4.value = false
  599. }
  600. }
  601. //航司运量
  602. const airlineTrafficDates = reactive({
  603. startDate: sevenDaysAgo,
  604. endDate: today,
  605. })
  606. const airlineTrafficFunc = async () => {
  607. const listValues = await getPublicData(DATACONTENT_ID.jscGjAirlineTrafficId, [
  608. {
  609. flightDate1: airlineTrafficDates.startDate,
  610. flightDate2: airlineTrafficDates.endDate,
  611. },
  612. ])
  613. if (listValues && isValue(listValues)) {
  614. const newObj: any = _.cloneDeep(airCompaneBaggage.option.baseOption)
  615. ;(newObj.dataZoom = [
  616. {
  617. id: 'dataZoomX',
  618. type: 'slider',
  619. xAxisIndex: [0],
  620. filterMode: 'filter',
  621. start: 0,
  622. end: 20,
  623. },
  624. ]),
  625. listValues.forEach(item => {
  626. item.jobTime = item['IACACode']
  627. })
  628. airlineTrafficObj.value = pubFunc(listValues, newObj, true)
  629. loading6.value = false
  630. }
  631. }
  632. //航班表格
  633. const airlineAbnormalFunc = async () => {
  634. const listValues = (await getPublicData(DATACONTENT_ID.jscFlightDynamicsId, [
  635. {
  636. fd1: today,
  637. fd2: today,
  638. fttp: '国际离港',
  639. },
  640. ])) as any
  641. const domHeight = scrollContent.value?.clientHeight
  642. if (domHeight && typeof domHeight == 'number') {
  643. const cell = Math.ceil(domHeight / 40)
  644. limitScrollNum.value = cell
  645. }
  646. if (listValues && isValue(listValues)) {
  647. listData.value = listValues
  648. loading5.value = false
  649. }
  650. }
  651. //航班动态统计
  652. const airlineDates = reactive({ startDate: sevenDaysAgo, endDate: today })
  653. const airlineFunc = async () => {
  654. const listValues = (await getPublicData(DATACONTENT_ID.jscGoodsId, [
  655. {
  656. fd1: airlineDates.startDate,
  657. fd2: airlineDates.endDate,
  658. fttp: '国际离港',
  659. },
  660. ])) as any
  661. if (listValues && isValue(listValues)) {
  662. const newObj: any = _.cloneDeep(airlineAbnormalBaggage.option.baseOption)
  663. const newDatas = _.cloneDeep(listValues)
  664. const nameDatas = _.unionBy(newDatas, 'specialTypeName')
  665. // const names: any = [...nameDatas];
  666. const names: any = [...nameDatas, { specialTypeName: '合计' }]
  667. // specialGoods.value = names[0]["specialTypeName"];
  668. specialGoods.value = '合计'
  669. specialGoodsDatas.value = names
  670. specialGoodsAll.value = listValues
  671. const result = formatGoods(
  672. // names[0]["specialTypeName"],
  673. '合计',
  674. specialGoodsAll.value
  675. )
  676. airlineObj.value = pubFunc(result, newObj)
  677. loading7.value = false
  678. }
  679. }
  680. //拉货统计
  681. const pickingDates = reactive({ startDate: sevenDaysAgo, endDate: today })
  682. const pickingFuncs = async () => {
  683. const listValues = (await getPublicData(DATACONTENT_ID.jscGjPullId, [
  684. {
  685. fd1: pickingDates.startDate,
  686. fd2: pickingDates.endDate,
  687. },
  688. ])) as any
  689. if (listValues && isValue(listValues)) {
  690. const newObj: any = _.cloneDeep(airlineAbnormalBaggage.option.baseOption)
  691. listValues.forEach(item => {
  692. item.jobTime = parseDate(item['flightDate'])
  693. item.weight = item['flightNum']
  694. })
  695. pickingObj.value = pubFunc(listValues, newObj)
  696. loading8.value = false
  697. }
  698. }
  699. useLoop([hourlyPeakFunc], 'dashboard', [hourlyDates])
  700. useLoop([waybillTrendFunc], 'dashboard', [waybillDates])
  701. useLoop([nodePeakFunc], 'dashboard', [nodeDates])
  702. useLoop([numbersFunc], 'dashboard')
  703. useLoop([airlineTrafficFunc], 'dashboard', [airlineTrafficDates])
  704. useLoop([airlineAbnormalFunc], 'dashboard')
  705. useLoop([airlineFunc], 'dashboard', [airlineDates])
  706. useLoop([pickingFuncs], 'dashboard', [pickingDates])
  707. </script>
  708. <style lang="scss" scoped>
  709. @import './css/index.scss';
  710. </style>