index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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="tableToExcel"
  17. @upset="upset"
  18. />
  19. </div>
  20. <div class="echart">
  21. <Tableformbrs :tableList="tableList" action="8" :set="set" />
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. import Echarts from "../components/echart/index.vue";
  27. import Tableformbrs from "../components/echart/tableforms.vue";
  28. import StatisticsHeader from "../components/echart/statisticsHeader.vue";
  29. import { export_json_to_excel } from "@/utils/Export2Excel";
  30. import { Query } from "@/api/webApi";
  31. export default {
  32. name: "ChartsBar",
  33. data() {
  34. return {
  35. asShow: false,
  36. optiondata: [],
  37. picShow: true, //图片表格切换
  38. action: 6,
  39. dataid: "collection_ecahrt0",
  40. listqueryTemplateID: DATACONTENT_ID.modeInternationalexportTable,
  41. eledata: null,
  42. set: "",
  43. isShow: Echarts,
  44. tableList: [],
  45. tableListcop: [],
  46. listname: "",
  47. listHeader: [],
  48. tableData: {
  49. time: [],
  50. data1: [],
  51. data2: [],
  52. kg: "",
  53. tyol: "",
  54. },
  55. formData: {
  56. airport: "",
  57. dateTime: "",
  58. },
  59. titleTop: "航班统计国际出港",
  60. formItems: [
  61. {
  62. prop: "dateTime",
  63. inputType: "datetimerange",
  64. clearable: true,
  65. width: "240px",
  66. options: [],
  67. },
  68. ],
  69. };
  70. },
  71. mounted() {
  72. // this.getQuery([]);
  73. },
  74. watch: {
  75. // 监听数据变化,重绘折线图
  76. option: {
  77. deep: true,
  78. handler(newVal) {},
  79. },
  80. },
  81. destroyed() {},
  82. methods: {
  83. getFormData(data) {
  84. this.tableData.time = [];
  85. this.tableData.data1 = [];
  86. this.tableData.data2 = [];
  87. let option = [
  88. {
  89. fd1: data.dateTime[0],
  90. fd2: data.dateTime[1],
  91. },
  92. ];
  93. this.getQuery(option, null);
  94. this.listname =
  95. "航班统计国际出港" + data.dateTime[0] + "--" + data.dateTime[1];
  96. this.listHeader = [
  97. "序号",
  98. "执飞日期",
  99. "计划航班数",
  100. "已完成航班数",
  101. "特货航班数",
  102. "入园航班数",
  103. "海关放行航班数",
  104. "运抵货站航班数",
  105. "安检放行航班数",
  106. "收运核单航班数",
  107. "理货航班数",
  108. "发起货站交接航班数",
  109. "交接复核航班数",
  110. "机下交接航班数",
  111. "拉下登记航班数",
  112. "实配航班数",
  113. ];
  114. },
  115. //获取表格数据
  116. async getQuery(data, dat) {
  117. try {
  118. const { code, returnData } = await Query({
  119. id: this.listqueryTemplateID,
  120. dataContent: data,
  121. });
  122. if (code == 0) {
  123. this.tableData.time = [];
  124. this.tableData.data1 = [];
  125. this.tableData.data2 = [];
  126. this.tableList = JSON.parse(JSON.stringify(returnData.listValues));
  127. this.tableListcop = JSON.parse(JSON.stringify(returnData.listValues));
  128. this.tableList.forEach((item, index) => {
  129. item.indexs = index + 1;
  130. });
  131. this.tableListcop.forEach((item, index) => {
  132. item.indexs = index + 1;
  133. });
  134. // let objar = {
  135. // indexs: "合计",
  136. // flightDate: returnData.listValues[0].totalPullFlightNum,
  137. // pullWeight: returnData.listValues[0].totalPullWeight,
  138. // };
  139. this.tableListcop.push(objar);
  140. returnData.listValues.forEach((element) => {
  141. this.tableData.data1 = [];
  142. });
  143. this.tableData.data1.push(0);
  144. for (let index = 0; index < this.tableData.data2.length; index++) {
  145. if (index > 0) {
  146. const element =
  147. (this.tableData.data2[index] -
  148. this.tableData.data2[index - 1]) /
  149. this.tableData.data2[index - 1];
  150. this.tableData.data1.push(
  151. element.toFixed(2) ? element.toFixed(2) : 0
  152. );
  153. this.tableData.data1.forEach((element) => {
  154. element = Number(element);
  155. if (typeof element !== "number") {
  156. element = "";
  157. }
  158. });
  159. }
  160. }
  161. }
  162. } catch (error) {
  163. this.page--;
  164. }
  165. },
  166. //导出
  167. tableToExcel() {
  168. import("../../../utils/Export2Excel").then((excel) => {
  169. // 设置导出表格的头部
  170. const tHeader = this.listHeader;
  171. // 将要导出的数据进行一个过滤
  172. /**
  173. * 源数据导入到excel的数据每一条重新拼成一个数组,数组里的每个元素就是filterVal里的每个字段
  174. */
  175. const data = this.tableListcop.map((item, index) => {
  176. return [
  177. item.indexs,
  178. item.flightDate,
  179. item.planFlightNum,
  180. item.finishFlightNum,
  181. item.speNum,
  182. item.enterParkNum,
  183. item.enterCustomsNum,
  184. item.toStationNum,
  185. item.securityNum,
  186. item.receiveSureNum,
  187. item.tallyNum,
  188. item.requestDepotJoinNum,
  189. item.resureNum,
  190. item.planeDownNum,
  191. item.pullregisterNum,
  192. item.stowageNum,
  193. ];
  194. });
  195. data[data.length - 1].indexs = "总计";
  196. // 调用我们封装好的方法进行导出Excel
  197. excel.export_json_to_excel({
  198. // 导出的头部
  199. header: tHeader,
  200. // 导出的内容
  201. data,
  202. // 导出的文件名称
  203. filename: this.listname,
  204. // 导出的表格宽度是否自动
  205. autoWidth: true,
  206. // 导出文件的后缀类型
  207. bookType: "xlsx",
  208. });
  209. });
  210. },
  211. upset(data) {
  212. this.picShow = data;
  213. },
  214. },
  215. components: {
  216. Echarts,
  217. StatisticsHeader,
  218. Tableformbrs,
  219. },
  220. };
  221. </script>
  222. <style lang="scss" scoped>
  223. .airportInfo {
  224. position: relative;
  225. .header {
  226. width: 103%;
  227. height: 36px;
  228. display: flex;
  229. align-items: center;
  230. justify-content: center;
  231. background: #f7f7f7;
  232. position: relative;
  233. left: -23px;
  234. > .nav {
  235. padding: 0 30px 0 30px;
  236. cursor: pointer;
  237. font-size: 16px;
  238. font-family: Microsoft YaHei;
  239. font-weight: 400;
  240. color: #101116;
  241. }
  242. > .navs {
  243. height: 100%;
  244. padding: 0 30px 0 30px;
  245. cursor: pointer;
  246. display: flex;
  247. align-items: center;
  248. font-size: 16px;
  249. font-family: Microsoft YaHei;
  250. font-weight: bold;
  251. color: #ac014d;
  252. border-bottom: 2px solid #ac014d;
  253. }
  254. }
  255. .variable {
  256. width: 100%;
  257. height: 64px;
  258. }
  259. .echart {
  260. width: 100%;
  261. height: 746px;
  262. position: absolute;
  263. background: #ffffff;
  264. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  265. border-radius: 4px;
  266. }
  267. }
  268. </style>