cargoCharts.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <template>
  2. <div class="content-app">
  3. <div class="up">
  4. <SecurityCheckHeader
  5. title="航空货物关联统计"
  6. @change="change"
  7. :withExportButton="false"
  8. @search="search"
  9. />
  10. </div>
  11. <div class="content_top">
  12. <div class="header">
  13. <p>不同综合风险等级货物对应不同航线比例</p>
  14. </div>
  15. <div id="echarts-proportion"></div>
  16. </div>
  17. <div class="content_bottom">
  18. <div class="header">
  19. <p>不同综合风险等级货物分布比例</p>
  20. </div>
  21. <div class="content_classification">
  22. <div class="chart"><GraphicEchart :texter="dataall" /></div>
  23. <div class="chart"><GraphicEchart :texter="datarisk" /></div>
  24. <div class="chart">
  25. <GraphicEchart :texter="dataLowrisk" />
  26. </div>
  27. <div class="chart"><GraphicEchart :texter="datafirst" /></div>
  28. <div class="chart">
  29. <GraphicEchart :texter="dataordinary" />
  30. </div>
  31. <div class="chart">
  32. <GraphicEchart :texter="datastrictly" />
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </template>
  38. <script>
  39. import { eleCake } from "@/utils/app-ecahrts";
  40. import GraphicEchart from "../components/graphicHome.vue";
  41. import SecurityCheckHeader from "../components/securityCheckHeader.vue";
  42. import { agent } from "@/api/statistics/statistics.js";
  43. export default {
  44. data() {
  45. return {
  46. dataall: {
  47. id: 7,
  48. name: "总件数",
  49. cont: "20000",
  50. top: "35%",
  51. textStyle: {
  52. fontSize: "16",
  53. color: "#ffffff",
  54. },
  55. data: [
  56. { value: 335, name: "1" },
  57. { value: 0, name: "2" },
  58. ],
  59. subtextStyle: {
  60. fontSize: "28",
  61. fontWeight: "800",
  62. color: "#ffffff",
  63. },
  64. color: ["#E7EBF4", "#6161BD"],
  65. },
  66. datarisk: {
  67. id: 8,
  68. kaer: 1,
  69. name: "高风险",
  70. cont: "70%",
  71. top: "35%",
  72. textStyle: {
  73. fontSize: "16",
  74. color: "#ffffff",
  75. },
  76. data: [
  77. { value: 335, name: "1" },
  78. { value: 310, name: "2" },
  79. ],
  80. subtextStyle: {
  81. fontSize: "28",
  82. fontWeight: "800",
  83. color: "#ffffff",
  84. },
  85. color: ["#E7EBF4", "#EE50A6"],
  86. },
  87. dataLowrisk: {
  88. id: 9,
  89. kaer: 1,
  90. name: "低风险",
  91. cont: "70%",
  92. top: "35%",
  93. data: [
  94. { value: 335, name: "1" },
  95. { value: 310, name: "2" },
  96. ],
  97. textStyle: {
  98. fontSize: "16",
  99. color: "#ffffff",
  100. },
  101. subtextStyle: {
  102. fontSize: "28",
  103. fontWeight: "800",
  104. color: "#ffffff",
  105. },
  106. color: ["#E7EBF4", "#F3C742"],
  107. },
  108. datafirst: {
  109. id: 10,
  110. kaer: 1,
  111. name: "优先级",
  112. cont: "10%",
  113. top: "35%",
  114. data: [
  115. { value: 335, name: "1" },
  116. { value: 310, name: "2" },
  117. ],
  118. textStyle: {
  119. fontSize: "16",
  120. color: "#ffffff",
  121. },
  122. subtextStyle: {
  123. fontSize: "28",
  124. fontWeight: "800",
  125. color: "#ffffff",
  126. },
  127. color: ["#E7EBF4", "#5AC591"],
  128. },
  129. dataordinary: {
  130. id: 11,
  131. kaer: 1,
  132. name: "普通级",
  133. cont: "10%",
  134. top: "35%",
  135. data: [
  136. { value: 335, name: "1" },
  137. { value: 310, name: "2" },
  138. ],
  139. textStyle: {
  140. fontSize: "16",
  141. color: "#ffffff",
  142. },
  143. subtextStyle: {
  144. fontSize: "28",
  145. fontWeight: "800",
  146. color: "#ffffff",
  147. },
  148. color: ["#E7EBF4", "#70B4D4"],
  149. },
  150. datastrictly: {
  151. id: 12,
  152. kaer: 1,
  153. name: "严控级",
  154. cont: "10%",
  155. top: "35%",
  156. data: [
  157. { value: 335, name: "1" },
  158. { value: 310, name: "2" },
  159. ],
  160. textStyle: {
  161. fontSize: "16",
  162. color: "#ffffff",
  163. },
  164. subtextStyle: {
  165. fontSize: "28",
  166. fontWeight: "800",
  167. color: "#ffffff",
  168. },
  169. color: ["#E7EBF4", "#E64545"],
  170. },
  171. };
  172. },
  173. components: {
  174. GraphicEchart,
  175. SecurityCheckHeader,
  176. },
  177. mounted() {
  178. // this.init();
  179. },
  180. methods: {
  181. //默认查询条件
  182. search(data) {
  183. this.relationDate(data);
  184. },
  185. //货物关联统计接口
  186. async relationDate(data) {
  187. try {
  188. let params = {
  189. beginDate: data[0][0],
  190. endDate: data[0][1],
  191. levelId: data[1],
  192. proxyId: data[2],
  193. };
  194. // console.log(params);
  195. const result = await agent(params);
  196. if (result.status == 200) {
  197. console.log(result);
  198. let arr = []; //高风险
  199. let Low = []; //低风险
  200. let firs = []; //优先级
  201. let pt = [];
  202. let strictly = [];
  203. let arrx = []; //x轴
  204. this.dataall.data = result.data;
  205. result.data.forEach((element) => {
  206. arrx.push(element.flightLine);
  207. element.datas.forEach((res) => {
  208. if (res.level === "高风险级") {
  209. arr.push(res.count);
  210. } else if (res.level == "低风险级") {
  211. Low.push(res.count);
  212. } else if (res.level == "优先级") {
  213. firs.push(res.count);
  214. } else if (res.level == "普通级") {
  215. pt.push(res.count);
  216. } else if (res.level == "严控级") {
  217. strictly.push(res.count);
  218. }
  219. });
  220. // console.log(arr);
  221. });
  222. let arrall = eval(arr.join("+")); //高风险总和
  223. let Lowall = eval(Low.join("+")); //低风险级总和
  224. let firsall = eval(firs.join("+")); //优先级总和
  225. let ptall = eval(pt.join("+")); //普通级总和
  226. let strictlyall = eval(strictly.join("+")); //严控级总和
  227. let alldata = arrall + Lowall + firsall + ptall + strictlyall; // 总数
  228. this.init(arr, arrx, Low, firs, pt, strictly);
  229. this.dataall.cont = alldata;
  230. this.dataall.data = [
  231. {
  232. value: 0,
  233. name: "",
  234. },
  235. {
  236. value: alldata,
  237. name: "总数",
  238. },
  239. ];
  240. this.datarisk.cont = Math.floor((arrall / alldata).toFixed(2) * 100);
  241. this.datarisk.data = [
  242. {
  243. value: alldata,
  244. name: "总数",
  245. },
  246. {
  247. value: arrall,
  248. name: "高风险",
  249. },
  250. ];
  251. this.dataLowrisk.cont = Math.floor(
  252. (Lowall / alldata).toFixed(2) * 100
  253. );
  254. this.dataLowrisk.data = [
  255. {
  256. value: alldata,
  257. name: "总数",
  258. },
  259. {
  260. value: Lowall,
  261. name: "低风险",
  262. },
  263. ];
  264. this.datafirst.cont = Math.floor(
  265. (firsall / alldata).toFixed(2) * 100
  266. );
  267. this.datafirst.data = [
  268. {
  269. value: alldata,
  270. name: "总数",
  271. },
  272. {
  273. value: firsall,
  274. name: "优先级",
  275. },
  276. ];
  277. this.dataordinary.cont = Math.floor(
  278. (ptall / alldata).toFixed(2) * 100
  279. );
  280. this.dataordinary.data = [
  281. {
  282. value: alldata,
  283. name: "总数",
  284. },
  285. {
  286. value: ptall,
  287. name: "普通",
  288. },
  289. ];
  290. this.datastrictly.cont = Math.floor(
  291. (strictlyall / alldata).toFixed(2) * 100
  292. );
  293. this.datastrictly.data = [
  294. {
  295. value: alldata,
  296. name: "总数",
  297. },
  298. {
  299. value: strictlyall,
  300. name: "严控级",
  301. },
  302. ];
  303. }
  304. console.log(result);
  305. } catch (error) {
  306. console.log(error);
  307. }
  308. },
  309. change() {
  310. this.$router.push("./cargoRelevanceTable");
  311. },
  312. init(arr, arrx, Low, firs, pt, strictly) {
  313. let myChart = this.$echarts.init(
  314. document.getElementById("echarts-proportion")
  315. ); //统计折线
  316. eleCake.series[0].data = arr;
  317. eleCake.series[1].data = Low;
  318. eleCake.series[2].data = firs;
  319. eleCake.series[3].data = pt;
  320. eleCake.series[4].data = strictly;
  321. eleCake.xAxis.data = arrx;
  322. myChart.setOption(eleCake, true);
  323. window.onresize = () => {
  324. myChart.resize();
  325. };
  326. },
  327. },
  328. };
  329. </script>
  330. <style lang="scss" scoped>
  331. .header {
  332. > p {
  333. font-size: 18px;
  334. font-family: Microsoft YaHei;
  335. font-weight: bold;
  336. color: #101116;
  337. margin: 0 0 24px 0;
  338. }
  339. }
  340. .content_top {
  341. width: 100%;
  342. height: 45vh;
  343. background: #ffffff;
  344. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  345. border-radius: 4px;
  346. margin-bottom: 16px;
  347. padding: 24px;
  348. }
  349. #echarts-proportion {
  350. width: 100%;
  351. height: 90%;
  352. }
  353. .content_bottom {
  354. width: 100%;
  355. height: 33vh;
  356. background: #ffffff;
  357. box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  358. border-radius: 4px;
  359. padding: 24px;
  360. > .content_classification {
  361. width: 100%;
  362. height: 90%;
  363. display: flex;
  364. align-items: center;
  365. justify-content: space-around;
  366. }
  367. }
  368. #echarts-distribution {
  369. width: 100%;
  370. height: 80%;
  371. }
  372. .chart {
  373. width: 16%;
  374. height: 200px;
  375. }
  376. </style>