usePublic.ts 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. import { Query } from '@/api/webApi'
  2. import { CommonData } from '~/common'
  3. import * as _ from 'lodash'
  4. export enum showTimeMsg {
  5. HourlyPeak, //小时峰值
  6. WaybillTrend, //运单趋势
  7. NodePeak, //始发站/目的站统计分析
  8. AirlineTraffic, //航司统计
  9. AirlineAbnormal, //航班统计
  10. PickingStatistics, //拉货统计
  11. }
  12. export function usePublic() {
  13. const optionLeft = {
  14. tooltip: {
  15. trigger: 'axis',
  16. },
  17. legend: {
  18. show: true,
  19. top: 0,
  20. left: '30%',
  21. icon: 'roundRect',
  22. textStyle: {
  23. color: '#698dc3',
  24. },
  25. },
  26. grid: {
  27. left: '5%',
  28. right: '5%',
  29. bottom: '0%',
  30. top: '17%',
  31. containLabel: true,
  32. },
  33. color: ['#F5BB3D', '#73D970', '#6A9DD9'],
  34. xAxis: {
  35. type: 'category',
  36. boundaryGap: true,
  37. data: [
  38. '0:00',
  39. '2:00',
  40. '4:00',
  41. '6:00',
  42. '8:00',
  43. '10:00',
  44. '12:00',
  45. '14:00',
  46. '16:00',
  47. '18:00',
  48. '20:00',
  49. '22:00',
  50. ],
  51. axisLine: {
  52. show: true,
  53. lineStyle: {
  54. color: '#8897BC',
  55. },
  56. },
  57. axisTick: {
  58. show: false,
  59. },
  60. axisLabel: {
  61. color: '#8897BC',
  62. },
  63. },
  64. yAxis: [
  65. {
  66. type: 'value',
  67. axisLabel: {
  68. color: '#8897BC',
  69. formatter: function (item) {
  70. return item / 10000 + '万'
  71. },
  72. },
  73. splitLine: {
  74. lineStyle: {
  75. type: 'dashed',
  76. color: 'rgba(196,194,225, 0.54)',
  77. },
  78. },
  79. name: '单',
  80. },
  81. {
  82. type: 'value',
  83. axisLabel: {
  84. color: '#8897BC',
  85. },
  86. splitLine: {
  87. lineStyle: {
  88. type: 'dashed',
  89. color: 'rgba(196,194,225, 0.54)',
  90. },
  91. },
  92. name: '吨',
  93. },
  94. ],
  95. series: [
  96. {
  97. name: '运单/单',
  98. type: 'line',
  99. symbol: 'none',
  100. key: 'bagsnum',
  101. yAxisIndex: 0,
  102. data: [120, 132, 101, 134, 90, 230, 210, 132, 101, 134, 90, 230],
  103. areaStyle: {
  104. color: {
  105. type: 'linear',
  106. x: 0,
  107. y: 0,
  108. x2: 0,
  109. y2: 1,
  110. colorStops: [
  111. {
  112. offset: 0,
  113. color: 'rgba(125,72,255,0.5)',
  114. },
  115. {
  116. offset: 1,
  117. color: 'rgba(0,180,255,0.01)',
  118. },
  119. ],
  120. global: false,
  121. },
  122. },
  123. },
  124. {
  125. name: '重量/吨',
  126. type: 'line',
  127. symbol: 'none',
  128. yAxisIndex: 1,
  129. key: 'passengers',
  130. data: [220, 182, 191, 234, 290, 330, 310, 132, 101, 134, 90, 230],
  131. areaStyle: {
  132. color: {
  133. type: 'linear',
  134. x: 0,
  135. y: 0,
  136. x2: 0,
  137. y2: 1,
  138. colorStops: [
  139. {
  140. offset: 0,
  141. color: 'rgba(125,72,255,0.5)',
  142. },
  143. {
  144. offset: 1,
  145. color: 'rgba(0,180,255,0.01)',
  146. },
  147. ],
  148. global: false,
  149. },
  150. },
  151. },
  152. ],
  153. }
  154. const airlineAbnormalBaggage = {
  155. component: 'commonChartsBar',
  156. option: {
  157. baseOption: {
  158. tooltip: {
  159. trigger: 'axis',
  160. valueFormatter: function (value) {
  161. return value + '单'
  162. },
  163. },
  164. legend: {
  165. data: ['报警', '预警'],
  166. right: '20%',
  167. textStyle: {
  168. color: '#8897BC',
  169. },
  170. // top:"-10"
  171. },
  172. color: ['#EC3B71', '#E5B35C'],
  173. grid: {
  174. bottom: '10%',
  175. left: '5%',
  176. right: '1%',
  177. top: '17%',
  178. },
  179. xAxis: {
  180. data: ['卸机', '机下交接', '货站交接', '提取'],
  181. axisLine: {
  182. show: true,
  183. lineStyle: {
  184. color: '#8897BC',
  185. },
  186. },
  187. axisTick: {
  188. show: false,
  189. },
  190. axisLabel: {
  191. color: '#8897BC',
  192. },
  193. },
  194. yAxis: {
  195. type: 'value',
  196. axisLabel: {
  197. color: '#8897BC',
  198. },
  199. splitLine: {
  200. lineStyle: {
  201. type: 'dashed',
  202. color: 'rgba(196,194,225, 0.54)',
  203. },
  204. },
  205. name: '单',
  206. },
  207. series: [
  208. {
  209. name: '报警',
  210. type: 'bar',
  211. data: [0, 0, 0, 0],
  212. },
  213. {
  214. name: '预警',
  215. type: 'bar',
  216. data: [0, 0, 0, 0],
  217. },
  218. ],
  219. },
  220. },
  221. }
  222. const airCompaneBaggage = {
  223. component: 'commonChartsBar',
  224. option: {
  225. baseOption: {
  226. tooltip: {
  227. trigger: 'axis',
  228. },
  229. legend: {
  230. data: ['运单/单', '重量/吨'],
  231. right: '20%',
  232. textStyle: {
  233. color: '#8897BC',
  234. },
  235. },
  236. color: ['#51DEE9', '#4C88E1'],
  237. grid: {
  238. bottom: '10%',
  239. left: '13%',
  240. right: '8%',
  241. top: '17%',
  242. },
  243. xAxis: {
  244. data: ['国航', '南航', '深航', '东航', '海航', '国泰', '川航'],
  245. axisLine: {
  246. show: true,
  247. lineStyle: {
  248. color: '#8897BC',
  249. },
  250. },
  251. axisTick: {
  252. show: false,
  253. },
  254. axisLabel: {
  255. color: '#8897BC',
  256. },
  257. },
  258. yAxis: [
  259. {
  260. type: 'value',
  261. axisLabel: {
  262. color: '#8897BC',
  263. formatter: function (item) {
  264. return item / 10000 + '万'
  265. },
  266. },
  267. splitLine: {
  268. lineStyle: {
  269. type: 'dashed',
  270. color: 'rgba(196,194,225, 0.54)',
  271. },
  272. },
  273. name: '单',
  274. },
  275. {
  276. type: 'value',
  277. axisLabel: {
  278. color: '#8897BC',
  279. },
  280. splitLine: {
  281. lineStyle: {
  282. type: 'dashed',
  283. color: 'rgba(196,194,225, 0.54)',
  284. },
  285. },
  286. name: '吨',
  287. },
  288. ],
  289. series: [
  290. {
  291. name: '运单/单',
  292. type: 'bar',
  293. data: [12, 10, 15, 11, 16, 4, 6],
  294. yAxisIndex: 0,
  295. },
  296. {
  297. name: '重量/吨',
  298. type: 'bar',
  299. data: [11, 15, 17, 8, 1, 4, 6],
  300. yAxisIndex: 1,
  301. },
  302. ],
  303. },
  304. },
  305. }
  306. const airStutas = {
  307. component: 'commonChartsBar',
  308. option: {
  309. baseOption: {
  310. // legend: {
  311. // data: ['2020年', '2021年'],
  312. // right:"20",
  313. // textStyle:{
  314. // color: "#8897BC"
  315. // }
  316. // // top:"-10"
  317. // },
  318. tooltip: {
  319. trigger: 'axis',
  320. valueFormatter: function (value) {
  321. return value + '单'
  322. },
  323. },
  324. color: ['#51DEE9', '#4C88E1'],
  325. grid: {
  326. bottom: '10%',
  327. left: '5%',
  328. right: '1%',
  329. top: '17%',
  330. },
  331. xAxis: {
  332. data: ['机下交接', '货站交接', '理货'],
  333. axisLine: {
  334. show: true,
  335. lineStyle: {
  336. color: '#8897BC',
  337. },
  338. },
  339. axisTick: {
  340. show: false,
  341. },
  342. axisLabel: {
  343. color: '#8897BC',
  344. },
  345. },
  346. yAxis: {
  347. type: 'value',
  348. axisLabel: {
  349. color: '#8897BC',
  350. },
  351. splitLine: {
  352. lineStyle: {
  353. type: 'dashed',
  354. color: 'rgba(196,194,225, 0.54)',
  355. },
  356. },
  357. name: '单',
  358. },
  359. series: [
  360. {
  361. type: 'bar',
  362. data: [12, 10, 15],
  363. },
  364. ],
  365. },
  366. },
  367. }
  368. const node = ['卸机', '机下交接', '货站交接', '提取']
  369. const hours = Array.from({ length: 24 }, (v, i) => i + 1)
  370. const hourPeak = {
  371. component: 'commonChartsScatter',
  372. option: {
  373. tooltip: {
  374. trigger: 'axis',
  375. valueFormatter: function (value) {
  376. return value + '单'
  377. },
  378. },
  379. title: node.map((month, index) => ({
  380. top: ((index + 0.5) * 100) / 4 - 3 + '%',
  381. text: month,
  382. textStyle: {
  383. fontSize: 12,
  384. fontWeight: 'normal',
  385. color: '#698dc3',
  386. },
  387. })),
  388. singleAxis: node.map((month, index) => ({
  389. type: 'category',
  390. data: hours,
  391. top: ((index + 0.5) * 100) / 4 - 3 + '%',
  392. height: 100 / 4 - 5 + '%',
  393. left: '12%',
  394. right: '1%',
  395. axisTick: {
  396. show: false,
  397. },
  398. splitLine: {
  399. show: false,
  400. },
  401. })),
  402. series: node.map((month, index) => ({
  403. singleAxisIndex: index,
  404. coordinateSystem: 'singleAxis',
  405. type: 'scatter',
  406. data: [
  407. 3,
  408. 6,
  409. 1,
  410. 4,
  411. 0,
  412. 4,
  413. 2,
  414. 5,
  415. 4,
  416. 4,
  417. 6,
  418. 2,
  419. 0,
  420. 3,
  421. 1,
  422. 6,
  423. 6,
  424. 1,
  425. 0,
  426. 3,
  427. 6,
  428. 3,
  429. 0,
  430. 5,
  431. ],
  432. symbolSize: function (dataItem) {
  433. return dataItem * 3
  434. },
  435. })),
  436. },
  437. }
  438. const getPublicData = async (id: number, times?: any[]) => {
  439. try {
  440. const {
  441. code,
  442. returnData: { listValues },
  443. } = await Query<CommonData>({
  444. id,
  445. dataContent: times,
  446. })
  447. if (Number(code) !== 0) {
  448. return []
  449. } else {
  450. return listValues
  451. }
  452. } catch (err) {
  453. return []
  454. }
  455. }
  456. return {
  457. optionLeft,
  458. airlineAbnormalBaggage,
  459. airCompaneBaggage,
  460. airStutas,
  461. hourPeak,
  462. getPublicData,
  463. }
  464. }