index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. <template>
  2. <div class="airportInfo">
  3. <div class="variable">
  4. <StatisticsHeader
  5. :title="titleTop"
  6. :items="formItems"
  7. :data="formData"
  8. :eledata="eledata"
  9. with-setting
  10. :withSetting="false"
  11. :withExport="true"
  12. :set="set"
  13. :action="action"
  14. :asShow="asShow"
  15. @getFormData="getFormData"
  16. @export="Excelto"
  17. @upset="upset"
  18. />
  19. </div>
  20. <div class="echart">
  21. <!-- <Tableformbrs :tableList="tableList" action="10" :set="set" /> -->
  22. <Tableformbrs
  23. :tableList="tableLister"
  24. action="11"
  25. :set="set"
  26. style="margin-top: 10px"
  27. />
  28. <div class="imgechatr">
  29. <Echarts :id="dataid" :option="echartsData" :options="optiontime" />
  30. </div>
  31. </div>
  32. </div>
  33. </template>
  34. <script>
  35. import Echarts from "../components/echart/echartsgas.vue";
  36. import Tableformbrs from "../components/echart/tableforms.vue";
  37. import StatisticsHeader from "../components/echart/statisticsHeader.vue";
  38. import { export_json_to_excel } from "@/utils/Export2Excel";
  39. import { Format } from "@/utils/validate";
  40. import { Query } from "@/api/webApi";
  41. export default {
  42. name: "ChartsBar",
  43. data() {
  44. return {
  45. asShow: false,
  46. optiondata: [],
  47. picShow: true, //图片表格切换
  48. action: 10,
  49. dataid: "collection_ecahrt10",
  50. listqueryTemplateID: DATACONTENT_ID.modeCargoFlightStatisTable,
  51. listqueryTemplatesID: DATACONTENT_ID.modeCargoFlightTimeTable,
  52. eledata: null,
  53. set: "",
  54. tableList: [],
  55. tableListcop: [],
  56. listname: "",
  57. listHeader: [],
  58. listnames: "",
  59. listHeaders: [],
  60. tableData: {
  61. time: [],
  62. data1: [],
  63. data2: [],
  64. kg: "",
  65. tyol: "",
  66. },
  67. formData: {
  68. airport: "",
  69. dateTime: "",
  70. },
  71. tableLister: [],
  72. echartsData: {
  73. time: [
  74. "t0",
  75. "t1",
  76. "t2",
  77. "t3",
  78. "t4",
  79. "t5",
  80. "t6",
  81. "t7",
  82. "t8",
  83. "t9",
  84. "t10",
  85. "t11",
  86. "t12",
  87. "t13",
  88. "t14",
  89. "t15",
  90. "t16",
  91. "t17",
  92. "t18",
  93. "t19",
  94. "t20",
  95. "t21",
  96. "t22",
  97. "t23",
  98. ],
  99. list: [],
  100. },
  101. titleTop: "货机航班时段查询",
  102. formItems: [
  103. {
  104. prop: "dateTime",
  105. inputType: "erdatime",
  106. clearable: true,
  107. width: "240px",
  108. options: [],
  109. },
  110. ],
  111. optiontime: [],
  112. };
  113. },
  114. mounted() {
  115. // this.getQuery([]);
  116. },
  117. watch: {
  118. // 监听数据变化,重绘折线图
  119. option: {
  120. deep: true,
  121. handler(newVal) {},
  122. },
  123. },
  124. destroyed() {},
  125. methods: {
  126. getFormData(data) {
  127. this.tableData.time = [];
  128. this.tableData.data1 = [];
  129. this.tableData.data2 = [];
  130. let option = [
  131. {
  132. fd1:
  133. Format(
  134. "yyyy-MM-dd",
  135. new Date(new Date(data.dateTime).getTime() - 24 * 60 * 60 * 1000)
  136. ) + " 00:00:00",
  137. fd2: data.dateTime + " 23:59:59",
  138. },
  139. ];
  140. this.optiontime = [
  141. Format(
  142. "yyyy-MM-dd",
  143. new Date(new Date(data.dateTime).getTime() - 24 * 60 * 60 * 1000)
  144. ),
  145. data.dateTime,
  146. ];
  147. // this.getQuery(option, null);
  148. this.getQuerys(option, data.dateTime);
  149. // this.listname =
  150. // "货机航班综合查询" + data.dateTime[0] + "--" + data.dateTime[1];
  151. // this.listHeader = [
  152. // "日期",
  153. // "汇总",
  154. // "进港",
  155. // "出港",
  156. // "国内",
  157. // "国际及地区",
  158. // "国内出港",
  159. // "国内进港",
  160. // "国际及地区出港",
  161. // "国际及地区进港",
  162. // ];
  163. this.listnames =
  164. "货机航班计划统计表-小时" + data.dateTime[0] + "--" + data.dateTime[1];
  165. this.listHeaders = [
  166. "序号",
  167. "日期",
  168. "t0",
  169. "t1",
  170. "t2",
  171. "t3",
  172. "t4",
  173. "t5",
  174. "t6",
  175. "t7",
  176. "t8",
  177. "t9",
  178. "t10",
  179. "t11",
  180. "t12",
  181. "t13",
  182. "t14",
  183. "t15",
  184. "t16",
  185. "t17",
  186. "t18",
  187. "t19",
  188. "t20",
  189. "t21",
  190. "t22",
  191. "t23",
  192. ];
  193. },
  194. //获取表格数据
  195. async getQuery(data, dat) {
  196. try {
  197. const { code, returnData } = await Query({
  198. id: this.listqueryTemplateID,
  199. dataContent: data,
  200. });
  201. if (code == 0) {
  202. this.tableData.time = [];
  203. this.tableData.data1 = [];
  204. this.tableData.data2 = [];
  205. this.tableList = JSON.parse(JSON.stringify(returnData.listValues));
  206. this.tableListcop = JSON.parse(JSON.stringify(returnData.listValues));
  207. this.tableList.forEach((item, index) => {
  208. item.indexs = index + 1;
  209. });
  210. this.tableListcop.forEach((item, index) => {
  211. item.indexs = index + 1;
  212. });
  213. returnData.listValues.forEach((element) => {
  214. this.tableData.data1 = [];
  215. });
  216. this.tableData.data1.push(0);
  217. for (let index = 0; index < this.tableData.data2.length; index++) {
  218. if (index > 0) {
  219. const element =
  220. (this.tableData.data2[index] -
  221. this.tableData.data2[index - 1]) /
  222. this.tableData.data2[index - 1];
  223. this.tableData.data1.push(
  224. element.toFixed(2) ? element.toFixed(2) : 0
  225. );
  226. this.tableData.data1.forEach((element) => {
  227. element = Number(element);
  228. if (typeof element !== "number") {
  229. element = 0;
  230. }
  231. });
  232. }
  233. }
  234. }
  235. } catch (error) {
  236. this.page--;
  237. }
  238. },
  239. //获取表格数据
  240. async getQuerys(data, dat) {
  241. try {
  242. const { code, returnData } = await Query({
  243. id: this.listqueryTemplatesID,
  244. dataContent: data,
  245. });
  246. if (code == 0) {
  247. this.tableLister = returnData.listValues;
  248. this.tableLister.forEach((item, index) => {
  249. item.indexs = index + 1;
  250. });
  251. for (let index = 0; index < returnData.listValues.length; index++) {
  252. this.echartsData.list[index] = new Array(
  253. returnData.listValues[index].t0,
  254. returnData.listValues[index].t1,
  255. returnData.listValues[index].t2,
  256. returnData.listValues[index].t3,
  257. returnData.listValues[index].t4,
  258. returnData.listValues[index].t5,
  259. returnData.listValues[index].t6,
  260. returnData.listValues[index].t7,
  261. returnData.listValues[index].t8,
  262. returnData.listValues[index].t9,
  263. returnData.listValues[index].t10,
  264. returnData.listValues[index].t11,
  265. returnData.listValues[index].t12,
  266. returnData.listValues[index].t13,
  267. returnData.listValues[index].t14,
  268. returnData.listValues[index].t15,
  269. returnData.listValues[index].t16,
  270. returnData.listValues[index].t17,
  271. returnData.listValues[index].t18,
  272. returnData.listValues[index].t19,
  273. returnData.listValues[index].t20,
  274. returnData.listValues[index].t21,
  275. returnData.listValues[index].t22,
  276. returnData.listValues[index].t23
  277. );
  278. }
  279. }
  280. } catch (error) {
  281. this.page--;
  282. }
  283. },
  284. Excelto() {
  285. // this.tableToExcel();
  286. this.tableToExcels();
  287. },
  288. //导出
  289. tableToExcel() {
  290. import("../../../utils/Export2Excel").then((excel) => {
  291. // 设置导出表格的头部
  292. const tHeader = this.listHeader;
  293. // 将要导出的数据进行一个过滤
  294. /**
  295. * 源数据导入到excel的数据每一条重新拼成一个数组,数组里的每个元素就是filterVal里的每个字段
  296. */
  297. const data = this.tableListcop.map((item, index) => {
  298. return [
  299. item.indexs,
  300. item.dat,
  301. item.total,
  302. item.landing,
  303. item.departure,
  304. item.d,
  305. item.i,
  306. item.departure_d,
  307. item.landing_d,
  308. item.departure_i,
  309. item.landing_i,
  310. ];
  311. });
  312. data[data.length - 1].indexs = "总计";
  313. // 调用我们封装好的方法进行导出Excel
  314. excel.export_json_to_excel({
  315. // 导出的头部
  316. header: tHeader,
  317. // 导出的内容
  318. data,
  319. // 导出的文件名称
  320. filename: this.listname,
  321. // 导出的表格宽度是否自动
  322. autoWidth: true,
  323. // 导出文件的后缀类型
  324. bookType: "xlsx",
  325. });
  326. });
  327. },
  328. tableToExcels() {
  329. import("../../../utils/Export2Excel").then((excel) => {
  330. // 设置导出表格的头部
  331. const tHeader = this.listHeaders;
  332. // 将要导出的数据进行一个过滤
  333. /**
  334. * 源数据导入到excel的数据每一条重新拼成一个数组,数组里的每个元素就是filterVal里的每个字段
  335. */
  336. const data = this.tableLister.map((item, index) => {
  337. return [
  338. item.indexs,
  339. item.dat,
  340. item.t0,
  341. item.t1,
  342. item.t2,
  343. item.t3,
  344. item.t4,
  345. item.t5,
  346. item.t6,
  347. item.t7,
  348. item.t8,
  349. item.t9,
  350. item.t10,
  351. item.t11,
  352. item.t12,
  353. item.t13,
  354. item.t14,
  355. item.t15,
  356. item.t16,
  357. item.t17,
  358. item.t18,
  359. item.t19,
  360. item.t20,
  361. item.t21,
  362. item.t22,
  363. item.t23,
  364. ];
  365. });
  366. data[data.length - 1].indexs = "总计";
  367. // 调用我们封装好的方法进行导出Excel
  368. excel.export_json_to_excel({
  369. // 导出的头部
  370. header: tHeader,
  371. // 导出的内容
  372. data,
  373. // 导出的文件名称
  374. filename: this.listnames,
  375. // 导出的表格宽度是否自动
  376. autoWidth: true,
  377. // 导出文件的后缀类型
  378. bookType: "xlsx",
  379. });
  380. });
  381. },
  382. upset(data) {
  383. this.picShow = data;
  384. },
  385. },
  386. components: {
  387. Echarts,
  388. StatisticsHeader,
  389. Tableformbrs,
  390. },
  391. };
  392. </script>
  393. <style lang="scss" scoped>
  394. .airportInfo {
  395. position: relative;
  396. .header {
  397. width: 103%;
  398. height: 36px;
  399. display: flex;
  400. align-items: center;
  401. justify-content: center;
  402. background: #f7f7f7;
  403. position: relative;
  404. left: -23px;
  405. > .nav {
  406. padding: 0 30px 0 30px;
  407. cursor: pointer;
  408. font-size: 16px;
  409. font-family: Microsoft YaHei;
  410. font-weight: 400;
  411. color: #101116;
  412. }
  413. > .navs {
  414. height: 100%;
  415. padding: 0 30px 0 30px;
  416. cursor: pointer;
  417. display: flex;
  418. align-items: center;
  419. font-size: 16px;
  420. font-family: Microsoft YaHei;
  421. font-weight: bold;
  422. color: #ac014d;
  423. border-bottom: 2px solid #ac014d;
  424. }
  425. }
  426. .variable {
  427. width: 100%;
  428. height: 64px;
  429. }
  430. .echart {
  431. width: 100%;
  432. height: 746px;
  433. position: absolute;
  434. background: #ffffff;
  435. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  436. border-radius: 4px;
  437. > .imgechatr {
  438. width: 100%;
  439. height: 73%;
  440. position: absolute;
  441. bottom: 0;
  442. }
  443. }
  444. }
  445. </style>