index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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" :should-reset.sync="loading" />
  61. </div>
  62. </div>
  63. </template>
  64. <script>
  65. import Dialog from "@/layout/components/Dialog";
  66. import TimeZoneSelector from "@/components/TimeZoneSelector";
  67. import { exportToExcel } 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: true,
  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, 9999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId, {}, 1, 9999)
  146. if (Number(res.code) === 0) {
  147. this.AirportList = res.returnData;
  148. if (type && !this.formData.currentAirport) {
  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. shouldReset: type !== 1
  155. }
  156. } else {
  157. this.$message.error(res.message);
  158. }
  159. } catch (error) {
  160. this.$message.error("失败");
  161. }
  162. },
  163. toOrderNum (num) {
  164. num = num.toString();
  165. if (num.length < 6) {
  166. num = "0" + num; // 如未满八位数,添加"0"补位
  167. this.toOrderNum(num); // 递归添加"0"补位
  168. } else if (num.length >= 6) {
  169. this.orderNum = num.split(""); // 将其便变成数据,渲染至滚动数组
  170. } else {
  171. // 订单总量数字超过八位显示异常
  172. this.$message.warning("总量数字过大");
  173. }
  174. this.setNumberTransform();
  175. },
  176. setNumberTransform () {
  177. const numberItems = this.$refs.numberItem; // 拿到数字的ref,计算元素数量
  178. const numberArr = this.orderNum.filter((item) => !isNaN(item));
  179. // 结合CSS 对数字字符进行滚动,显示订单数量
  180. for (let index = 0; index < numberItems.length; index++) {
  181. const elem = numberItems[index];
  182. elem.style.transform = `translate(-50%, -${numberArr[index] * 10}%)`;
  183. }
  184. },
  185. exportHandler (refName, tableName) {
  186. if (this.loading) {
  187. return;
  188. }
  189. const table = this.$refs[refName].$el.cloneNode(true);
  190. const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
  191. exportToExcel(table, tableName, fileName);
  192. },
  193. tableLoad (arr) {
  194. let num = 0
  195. arr.forEach(item => {
  196. num += Number(item.estimated_load_number)
  197. })
  198. this.toOrderNum(num)
  199. }
  200. },
  201. };
  202. </script>
  203. <style lang="scss" scoped>
  204. .departure-one {
  205. height: calc(100vh - 80px);
  206. }
  207. .terminal-form-wrap {
  208. padding-top: 11px;
  209. padding-left: 5px;
  210. ::v-deep .form {
  211. display: flex;
  212. justify-content: space-between;
  213. .form-left {
  214. flex: 1;
  215. }
  216. .form-right {
  217. flex: 0 1 auto;
  218. }
  219. .el-form-item {
  220. margin-bottom: 0px;
  221. margin-right: 8px;
  222. button,
  223. input,
  224. optgroup,
  225. select,
  226. textarea {
  227. font-family: Helvetica, "Microsoft YaHei";
  228. font-size: 14px;
  229. }
  230. .el-switch__label {
  231. color: #303133;
  232. }
  233. .el-form-item__error {
  234. z-index: 10;
  235. }
  236. &:last-child {
  237. margin-right: 45px;
  238. }
  239. }
  240. .btn-img {
  241. position: relative;
  242. top: 6px;
  243. }
  244. }
  245. .box-item {
  246. position: relative;
  247. height: 50px;
  248. font-size: 18px;
  249. line-height: 32px;
  250. text-align: center;
  251. list-style: none;
  252. color: #2d7cff;
  253. writing-mode: vertical-lr;
  254. text-orientation: upright;
  255. /*文字禁止编辑*/
  256. -moz-user-select: none; /*火狐*/
  257. -webkit-user-select: none; /*webkit浏览器*/
  258. -ms-user-select: none; /*IE10*/
  259. -khtml-user-select: none; /*早期浏览器*/
  260. user-select: none;
  261. /* overflow: hidden; */
  262. p {
  263. line-height: 32px;
  264. writing-mode: horizontal-tb !important;
  265. text-orientation: none !important;
  266. /*文字禁止编辑*/
  267. -moz-user-select: none; /*火狐*/
  268. -webkit-user-select: none; /*webkit浏览器*/
  269. -ms-user-select: none; /*IE10*/
  270. -khtml-user-select: none; /*早期浏览器*/
  271. user-select: none;
  272. margin-top: 5px;
  273. }
  274. }
  275. /* 默认逗号设置 */
  276. .mark-item {
  277. width: 10px;
  278. height: 32px;
  279. margin-right: 5px;
  280. line-height: 10px;
  281. font-size: 18px;
  282. position: relative;
  283. & > span {
  284. position: absolute;
  285. width: 100%;
  286. bottom: 0;
  287. writing-mode: vertical-rl;
  288. text-orientation: upright;
  289. }
  290. }
  291. /*滚动数字设置*/
  292. .number-item {
  293. width: 41px;
  294. height: 42px;
  295. /* 背景图片 */
  296. // background: url(/images/text-bg-blue.png) no-repeat center center;
  297. // background-size: 100% 100%;
  298. // background: #ccc;
  299. list-style: none;
  300. margin-right: 5px;
  301. // background:rgba(250,250,250,1);
  302. border-radius: 4px;
  303. border: 3px solid rgb(221, 221, 221);
  304. & > span {
  305. position: relative;
  306. display: inline-block;
  307. margin-right: 10px;
  308. width: 100%;
  309. height: 100%;
  310. writing-mode: vertical-rl;
  311. text-orientation: upright;
  312. overflow: hidden;
  313. & > i {
  314. font-style: normal;
  315. position: absolute;
  316. top: 11px;
  317. left: 50%;
  318. transform: translate(-50%, -1%);
  319. transition: transform 1s ease-in-out;
  320. letter-spacing: 10px;
  321. }
  322. }
  323. }
  324. .number-item:last-child {
  325. margin-right: 0;
  326. }
  327. }
  328. .terminal-table {
  329. width: 100%;
  330. height: calc(100% - 61px);
  331. }
  332. </style>