index.vue 9.9 KB

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