index.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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="9" :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.modeInternationaladvanceTable,
  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. async getQuery(data, dat) {
  112. try {
  113. const { code, returnData } = await Query({
  114. id: this.listqueryTemplateID,
  115. dataContent: data,
  116. });
  117. if (code == 0) {
  118. this.tableData.time = [];
  119. this.tableData.data1 = [];
  120. this.tableData.data2 = [];
  121. this.tableList = JSON.parse(JSON.stringify(returnData.listValues));
  122. this.tableListcop = JSON.parse(JSON.stringify(returnData.listValues));
  123. this.tableList.forEach((item, index) => {
  124. item.indexs = index + 1;
  125. });
  126. this.tableListcop.forEach((item, index) => {
  127. item.indexs = index + 1;
  128. });
  129. // let objar = {
  130. // indexs: "合计",
  131. // flightDate: returnData.listValues[0].totalPullFlightNum,
  132. // pullWeight: returnData.listValues[0].totalPullWeight,
  133. // };
  134. this.tableListcop.push(objar);
  135. returnData.listValues.forEach((element) => {
  136. this.tableData.data1 = [];
  137. });
  138. this.tableData.data1.push(0);
  139. for (let index = 0; index < this.tableData.data2.length; index++) {
  140. if (index > 0) {
  141. const element =
  142. (this.tableData.data2[index] -
  143. this.tableData.data2[index - 1]) /
  144. this.tableData.data2[index - 1];
  145. this.tableData.data1.push(
  146. element.toFixed(2) ? element.toFixed(2) : 0
  147. );
  148. this.tableData.data1.forEach((element) => {
  149. element = Number(element);
  150. if (typeof element !== "number") {
  151. element = "";
  152. }
  153. });
  154. }
  155. }
  156. }
  157. } catch (error) {
  158. this.page--;
  159. }
  160. },
  161. //导出
  162. tableToExcel() {
  163. import("../../../utils/Export2Excel").then((excel) => {
  164. // 设置导出表格的头部
  165. const tHeader = this.listHeader;
  166. // 将要导出的数据进行一个过滤
  167. /**
  168. * 源数据导入到excel的数据每一条重新拼成一个数组,数组里的每个元素就是filterVal里的每个字段
  169. */
  170. const data = this.tableListcop.map((item, index) => {
  171. return [
  172. item.indexs,
  173. item.flightDate,
  174. item.planFlightNum,
  175. item.finishFlightNum,
  176. item.speNum,
  177. item.unloadNum,
  178. item.planeDownTimeNum,
  179. item.depotJoinNum,
  180. item.tallyNum,
  181. item.passCustomsNum,
  182. item.outWarehouseNum,
  183. ];
  184. });
  185. data[data.length - 1].indexs = "总计";
  186. // 调用我们封装好的方法进行导出Excel
  187. excel.export_json_to_excel({
  188. // 导出的头部
  189. header: tHeader,
  190. // 导出的内容
  191. data,
  192. // 导出的文件名称
  193. filename: this.listname,
  194. // 导出的表格宽度是否自动
  195. autoWidth: true,
  196. // 导出文件的后缀类型
  197. bookType: "xlsx",
  198. });
  199. });
  200. },
  201. upset(data) {
  202. this.picShow = data;
  203. },
  204. },
  205. components: {
  206. Echarts,
  207. StatisticsHeader,
  208. Tableformbrs,
  209. },
  210. };
  211. </script>
  212. <style lang="scss" scoped>
  213. .airportInfo {
  214. position: relative;
  215. .header {
  216. width: 103%;
  217. height: 36px;
  218. display: flex;
  219. align-items: center;
  220. justify-content: center;
  221. background: #f7f7f7;
  222. position: relative;
  223. left: -23px;
  224. > .nav {
  225. padding: 0 30px 0 30px;
  226. cursor: pointer;
  227. font-size: 16px;
  228. font-family: Microsoft YaHei;
  229. font-weight: 400;
  230. color: #101116;
  231. }
  232. > .navs {
  233. height: 100%;
  234. padding: 0 30px 0 30px;
  235. cursor: pointer;
  236. display: flex;
  237. align-items: center;
  238. font-size: 16px;
  239. font-family: Microsoft YaHei;
  240. font-weight: bold;
  241. color: #ac014d;
  242. border-bottom: 2px solid #ac014d;
  243. }
  244. }
  245. .variable {
  246. width: 100%;
  247. height: 64px;
  248. }
  249. .echart {
  250. width: 100%;
  251. height: 746px;
  252. position: absolute;
  253. background: #ffffff;
  254. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  255. border-radius: 4px;
  256. }
  257. }
  258. </style>