index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. <!--
  2. * @Author: zk
  3. * @Date: 2022-01-17 10:39:22
  4. * @LastEditTime: 2022-06-22 17:39:49
  5. * @LastEditors: your name
  6. * @Description: 离港01
  7. -->
  8. <template>
  9. <div class="departure-one">
  10. <!--功能区-表单-->
  11. <div ref="formWrap" class="terminal-form-wrap">
  12. <el-form ref="form" :inline="true" :model="formData" :rules="rules" class="form">
  13. <div class="form-left">
  14. <!-- <el-form-item prop="company">
  15. <el-select v-model="formData.company" class="input-shadow" size="small" style="width: 150px" filterable default-first-option placeholder="请选择航班属性" @change="airPortChange">
  16. <el-option v-for="(item, index) in companyOptions" :key="index" :label="item.label" :value="item.value" />
  17. </el-select>
  18. </el-form-item> -->
  19. <el-form-item prop="currentAirport">
  20. <el-select v-model="formData.currentAirport" class="input-shadow" size="small" style="width: 150px" filterable default-first-option placeholder="请选择机场" @change="airPortChange">
  21. <el-option v-for="(item, index) in AirportList" :key="index" :label="item.IATACode" :value="item.IATACode" />
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item prop="flightDate" label="航班日期">
  25. <el-date-picker v-model="formData.flightDate" :clearable="false" size="small" style="width: 300px" type="daterange" value-format="yyyy-MM-dd" start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="dateRangePickerOptions" @change="dateChange" />
  26. </el-form-item>
  27. <el-form-item>
  28. <div class="box-item">
  29. <p>预计装载总数:</p>
  30. <li v-for="(item, index) in orderNum" :key="index" :class="{ 'number-item': !isNaN(item), 'mark-item': isNaN(item) }">
  31. <span v-if="!isNaN(item)">
  32. <i ref="numberItem">0123456789</i>
  33. </span>
  34. <span v-else class="comma">{{ item }}</span>
  35. </li>
  36. </div>
  37. </el-form-item>
  38. </div>
  39. <div class="form-right" @keyup.enter="onSubmit(0)">
  40. <el-form-item prop="search">
  41. <el-popover :value="popoverVisible" placement="bottom" trigger="manual">
  42. <span>请输入航班号(示例:CA1234)或行李牌号(示例:1234567890)</span>
  43. <el-input slot="reference" v-model="formData.search" class="input-shadow" style="width: 240px; margin-left: 105px" size="small" placeholder="请输入内容" prefix-icon="el-icon-search" clearable @focus="popoverVisible = true" @blur="popoverVisible = false" />
  44. </el-popover>
  45. </el-form-item>
  46. <el-form-item>
  47. <el-button class="btn-shadow" size="mini" type="primary" @click="onSubmit(0)">搜索</el-button>
  48. </el-form-item>
  49. <el-form-item>
  50. <TimeZoneSelector />
  51. </el-form-item>
  52. <el-form-item>
  53. <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航站离港列表')" />
  54. </el-form-item>
  55. </div>
  56. </el-form>
  57. </div>
  58. <!--表格-->
  59. <div class="terminal-table">
  60. <Table style="height:100%" :pageSize="9999" :btnStyle="{ 'top':'-43px','right':'8px' }" @tableLoad="tableLoad" :istableCol="true" :tableTag="tableTag" ref="table" />
  61. </div>
  62. </div>
  63. </template>
  64. <script>
  65. import Dialog from "@/layout/components/Dialog";
  66. import TimeZoneSelector from "@/components/TimeZoneSelector";
  67. import { throttledExportToExcel } from "@/utils/table";
  68. import pf from '@/layout/mixin/publicFunc'
  69. import { mapGetters } from "vuex";
  70. import formMixin from "./mixins/form";
  71. import Table from '@/views/newQuery/components/table.vue'
  72. export default {
  73. name: "DepartureTerminalView",
  74. components: { Dialog, TimeZoneSelector, Table },
  75. mixins: [formMixin, pf],
  76. data () {
  77. return {
  78. orderNum: ["0", "0", "0", "0", "0", "0"], // 默认总数
  79. popoverVisible: false,
  80. // 初始表头
  81. tableCols: [],
  82. tableDataSortRules: {
  83. flightCanceled: "ascending",
  84. },
  85. loading: false,
  86. AirportList: [],
  87. tableTag: {},
  88. timer: null
  89. };
  90. },
  91. computed: {
  92. singleDay () {
  93. return this.startDate === this.endDate;
  94. },
  95. ...mapGetters(["timeZone"]),
  96. },
  97. created () {
  98. this.getAirPortData()
  99. },
  100. mounted () {
  101. this.timer = setInterval(() => {
  102. this.getAirPortData()
  103. }, LOOP_INTERVAL.departureTable)
  104. },
  105. destroyed () {
  106. clearInterval(this.timer)
  107. this.timer = null
  108. },
  109. methods: {
  110. airPortChange (val) {
  111. this.formData.currentAirport = val
  112. this.getAirPortData(0)
  113. },
  114. dateChange () {
  115. this.getAirPortData(0)
  116. },
  117. formatParams () {
  118. const datas = []
  119. const queryData = {
  120. startDate: this.startDate,
  121. endDate: this.endDate
  122. }
  123. queryData['outAirport'] = this.formData.currentAirport
  124. for (const key in queryData) {
  125. if (Object.hasOwnProperty.call(queryData, key)) {
  126. const val = queryData[key]
  127. const comparator = key == 'startDate' ? '>=' : key == 'endDate' ? '<=' : '='
  128. const column = key == 'startDate' ? 'carrierFlightsDate' : key == 'endDate' ? 'carrierFlightsDate' : key
  129. const r = {
  130. left: '(',
  131. column: column,
  132. comparator,
  133. value: val,
  134. right: ')',
  135. connector: 'and'
  136. }
  137. datas.push(r)
  138. }
  139. }
  140. return datas
  141. },
  142. async getAirPortData (type = 1) {
  143. try {
  144. let res = null
  145. res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId)
  146. if (Number(res.code) === 0) {
  147. this.AirportList = res.returnData;
  148. if (type) {
  149. const flag = res.returnData.filter(item => item.IATACode == 'CAN');
  150. this.formData.currentAirport = this.TauthId && flag.length ? 'CAN' : res.returnData[0].IATACode;
  151. }
  152. this.tableTag = {
  153. filter: this.formatParams()
  154. }
  155. } else {
  156. this.$message.error(res.message);
  157. }
  158. } catch (error) {
  159. this.$message.error("失败");
  160. }
  161. },
  162. toOrderNum (num) {
  163. num = num.toString();
  164. if (num.length < 6) {
  165. num = "0" + num; // 如未满八位数,添加"0"补位
  166. this.toOrderNum(num); // 递归添加"0"补位
  167. } else if (num.length >= 6) {
  168. this.orderNum = num.split(""); // 将其便变成数据,渲染至滚动数组
  169. } else {
  170. // 订单总量数字超过八位显示异常
  171. this.$message.warning("总量数字过大");
  172. }
  173. this.setNumberTransform();
  174. },
  175. setNumberTransform () {
  176. const numberItems = this.$refs.numberItem; // 拿到数字的ref,计算元素数量
  177. const numberArr = this.orderNum.filter((item) => !isNaN(item));
  178. // 结合CSS 对数字字符进行滚动,显示订单数量
  179. for (let index = 0; index < numberItems.length; index++) {
  180. const elem = numberItems[index];
  181. elem.style.transform = `translate(-50%, -${numberArr[index] * 10}%)`;
  182. }
  183. },
  184. exportHandler (refName, tableName) {
  185. if (this.loading) {
  186. return;
  187. }
  188. const table = this.$refs[refName].$el.cloneNode(true);
  189. const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
  190. throttledExportToExcel(table, tableName, fileName);
  191. },
  192. tableLoad (arr) {
  193. let num = 0
  194. arr.forEach(item => {
  195. num += Number(item.estimated_load_number)
  196. })
  197. this.toOrderNum(num)
  198. }
  199. },
  200. };
  201. </script>
  202. <style lang="scss" scoped>
  203. .departure-one {
  204. height: calc(100vh - 80px);
  205. }
  206. .terminal-form-wrap {
  207. padding-top: 11px;
  208. padding-left: 5px;
  209. ::v-deep .form {
  210. display: flex;
  211. justify-content: space-between;
  212. .form-left {
  213. flex: 1;
  214. }
  215. .form-right {
  216. flex: 0 1 auto;
  217. }
  218. .el-form-item {
  219. margin-bottom: 0px;
  220. margin-right: 8px;
  221. button,
  222. input,
  223. optgroup,
  224. select,
  225. textarea {
  226. font-family: Helvetica, "Microsoft YaHei";
  227. font-size: 14px;
  228. }
  229. .el-switch__label {
  230. color: #303133;
  231. }
  232. .el-form-item__error {
  233. z-index: 10;
  234. }
  235. &:last-child {
  236. margin-right: 45px;
  237. }
  238. }
  239. .btn-img {
  240. position: relative;
  241. top: 6px;
  242. }
  243. }
  244. .box-item {
  245. position: relative;
  246. height: 50px;
  247. font-size: 18px;
  248. line-height: 32px;
  249. text-align: center;
  250. list-style: none;
  251. color: #2d7cff;
  252. writing-mode: vertical-lr;
  253. text-orientation: upright;
  254. /*文字禁止编辑*/
  255. -moz-user-select: none; /*火狐*/
  256. -webkit-user-select: none; /*webkit浏览器*/
  257. -ms-user-select: none; /*IE10*/
  258. -khtml-user-select: none; /*早期浏览器*/
  259. user-select: none;
  260. /* overflow: hidden; */
  261. p {
  262. line-height: 32px;
  263. writing-mode: horizontal-tb !important;
  264. text-orientation: none !important;
  265. /*文字禁止编辑*/
  266. -moz-user-select: none; /*火狐*/
  267. -webkit-user-select: none; /*webkit浏览器*/
  268. -ms-user-select: none; /*IE10*/
  269. -khtml-user-select: none; /*早期浏览器*/
  270. user-select: none;
  271. margin-top: 5px;
  272. }
  273. }
  274. /* 默认逗号设置 */
  275. .mark-item {
  276. width: 10px;
  277. height: 32px;
  278. margin-right: 5px;
  279. line-height: 10px;
  280. font-size: 18px;
  281. position: relative;
  282. & > span {
  283. position: absolute;
  284. width: 100%;
  285. bottom: 0;
  286. writing-mode: vertical-rl;
  287. text-orientation: upright;
  288. }
  289. }
  290. /*滚动数字设置*/
  291. .number-item {
  292. width: 41px;
  293. height: 42px;
  294. /* 背景图片 */
  295. // background: url(/images/text-bg-blue.png) no-repeat center center;
  296. // background-size: 100% 100%;
  297. // background: #ccc;
  298. list-style: none;
  299. margin-right: 5px;
  300. // background:rgba(250,250,250,1);
  301. border-radius: 4px;
  302. border: 3px solid rgb(221, 221, 221);
  303. & > span {
  304. position: relative;
  305. display: inline-block;
  306. margin-right: 10px;
  307. width: 100%;
  308. height: 100%;
  309. writing-mode: vertical-rl;
  310. text-orientation: upright;
  311. overflow: hidden;
  312. & > i {
  313. font-style: normal;
  314. position: absolute;
  315. top: 11px;
  316. left: 50%;
  317. transform: translate(-50%, -1%);
  318. transition: transform 1s ease-in-out;
  319. letter-spacing: 10px;
  320. }
  321. }
  322. }
  323. .number-item:last-child {
  324. margin-right: 0;
  325. }
  326. }
  327. .terminal-table {
  328. width: 100%;
  329. height: calc(100% - 61px);
  330. }
  331. </style>