index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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 +'-'+ item.airportName" :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 { exportToExcel } 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. let formData = sessionStorage.getItem("transferFormData");
  100. formData = JSON.parse(formData)
  101. if(formData.currentAirport && formData.flightDate){
  102. this.formData = formData
  103. }
  104. this.timer = setInterval(() => {
  105. this.getAirPortData()
  106. }, LOOP_INTERVAL.transferArrivalTable)
  107. },
  108. destroyed () {
  109. clearInterval(this.timer)
  110. this.timer = null
  111. },
  112. methods: {
  113. airPortChange (val) {
  114. this.formData.currentAirport = val
  115. this.getAirPortData(0)
  116. },
  117. dateChange () {
  118. this.getAirPortData(0)
  119. },
  120. changeView () {
  121. const path = this.$route.path
  122. const newPath = path.endsWith('/in') ? path.replace('/in', '/out') : path.replace('/out', '/in')
  123. this.$router.push(newPath)
  124. },
  125. formatParams () {
  126. const datas = []
  127. const queryData = {
  128. startDate: this.startDate,
  129. endDate: this.endDate
  130. }
  131. queryData['current_airport'] = this.formData.currentAirport
  132. for (const key in queryData) {
  133. if (Object.hasOwnProperty.call(queryData, key)) {
  134. const val = queryData[key]
  135. const comparator = key == 'startDate' ? '>=' : key == 'endDate' ? '<=' : '='
  136. const column = key == 'startDate' ? 'departure_flights_date' : key == 'endDate' ? 'departure_flights_date' : key
  137. const r = {
  138. left: '(',
  139. column: column,
  140. comparator,
  141. value: val,
  142. right: ')',
  143. connector: 'and'
  144. }
  145. datas.push(r)
  146. }
  147. }
  148. return datas
  149. },
  150. async getAirPortData (type = 1) {
  151. try {
  152. let res = null
  153. res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 9999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId, {}, 1, 9999)
  154. if (Number(res.code) === 0) {
  155. this.AirportList = res.returnData;
  156. if (type && !this.formData.currentAirport) {
  157. const flag = res.returnData.filter(item => item.IATACode == 'PEK');
  158. this.formData.currentAirport = this.TauthId && flag.length ? 'PEK' : res.returnData[0].IATACode;
  159. }
  160. // this.tableTag = {
  161. // filter: this.formatParams(),
  162. // shouldReset: type !== 1
  163. // }
  164. const queryData = {
  165. departure_flights_date1: this.startDate,
  166. departure_flights_date2: this.endDate
  167. }
  168. queryData['current_airport'] = this.formData.currentAirport
  169. this.tableTag = {
  170. ...queryData,
  171. shouldReset: type !== 1
  172. }
  173. sessionStorage.setItem("transferFormData",JSON.stringify(this.formData))
  174. } else {
  175. this.$message.error(res.message);
  176. }
  177. } catch (error) {
  178. this.$message.error("失败");
  179. }
  180. },
  181. toOrderNum (num) {
  182. num = num.toString();
  183. if (num.length < 6) {
  184. num = "0" + num; // 如未满八位数,添加"0"补位
  185. this.toOrderNum(num); // 递归添加"0"补位
  186. } else if (num.length >= 6) {
  187. this.orderNum = num.split(""); // 将其便变成数据,渲染至滚动数组
  188. } else {
  189. // 订单总量数字超过八位显示异常
  190. this.$message.warning("总量数字过大");
  191. }
  192. this.setNumberTransform();
  193. },
  194. exportHandler (refName, tableName) {
  195. if (this.loading) {
  196. return;
  197. }
  198. const table = this.$refs[refName].$el.cloneNode(true);
  199. const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
  200. exportToExcel(table, tableName, fileName);
  201. },
  202. },
  203. };
  204. </script>
  205. <style lang="scss" scoped>
  206. .departure-one {
  207. height: calc(100vh - 80px);
  208. }
  209. .terminal-form-wrap {
  210. padding-top: 11px;
  211. padding-left: 5px;
  212. ::v-deep .form {
  213. display: flex;
  214. justify-content: space-between;
  215. .form-left {
  216. flex: 1;
  217. }
  218. .form-right {
  219. flex: 0 1 auto;
  220. }
  221. .el-form-item {
  222. margin-bottom: 0px;
  223. margin-right: 8px;
  224. button,
  225. input,
  226. optgroup,
  227. select,
  228. textarea {
  229. font-family: Helvetica, "Microsoft YaHei";
  230. font-size: 14px;
  231. }
  232. .el-switch__label {
  233. color: #303133;
  234. }
  235. .el-form-item__error {
  236. z-index: 10;
  237. }
  238. &:last-child {
  239. margin-right: 45px;
  240. }
  241. }
  242. .btn-img {
  243. position: relative;
  244. top: 6px;
  245. }
  246. }
  247. .box-item {
  248. position: relative;
  249. height: 50px;
  250. font-size: 18px;
  251. line-height: 32px;
  252. text-align: center;
  253. list-style: none;
  254. color: #2d7cff;
  255. writing-mode: vertical-lr;
  256. text-orientation: upright;
  257. /*文字禁止编辑*/
  258. -moz-user-select: none; /*火狐*/
  259. -webkit-user-select: none; /*webkit浏览器*/
  260. -ms-user-select: none; /*IE10*/
  261. -khtml-user-select: none; /*早期浏览器*/
  262. user-select: none;
  263. /* overflow: hidden; */
  264. p {
  265. line-height: 32px;
  266. writing-mode: horizontal-tb !important;
  267. text-orientation: none !important;
  268. /*文字禁止编辑*/
  269. -moz-user-select: none; /*火狐*/
  270. -webkit-user-select: none; /*webkit浏览器*/
  271. -ms-user-select: none; /*IE10*/
  272. -khtml-user-select: none; /*早期浏览器*/
  273. user-select: none;
  274. margin-top: 5px;
  275. }
  276. }
  277. /* 默认逗号设置 */
  278. .mark-item {
  279. width: 10px;
  280. height: 32px;
  281. margin-right: 5px;
  282. line-height: 10px;
  283. font-size: 18px;
  284. position: relative;
  285. & > span {
  286. position: absolute;
  287. width: 100%;
  288. bottom: 0;
  289. writing-mode: vertical-rl;
  290. text-orientation: upright;
  291. }
  292. }
  293. /*滚动数字设置*/
  294. .number-item {
  295. width: 41px;
  296. height: 42px;
  297. /* 背景图片 */
  298. // background: url(/images/text-bg-blue.png) no-repeat center center;
  299. // background-size: 100% 100%;
  300. // background: #ccc;
  301. list-style: none;
  302. margin-right: 5px;
  303. // background:rgba(250,250,250,1);
  304. border-radius: 4px;
  305. border: 3px solid rgb(221, 221, 221);
  306. & > span {
  307. position: relative;
  308. display: inline-block;
  309. margin-right: 10px;
  310. width: 100%;
  311. height: 100%;
  312. writing-mode: vertical-rl;
  313. text-orientation: upright;
  314. overflow: hidden;
  315. & > i {
  316. font-style: normal;
  317. position: absolute;
  318. top: 11px;
  319. left: 50%;
  320. transform: translate(-50%, -1%);
  321. transition: transform 1s ease-in-out;
  322. letter-spacing: 10px;
  323. }
  324. }
  325. }
  326. .number-item:last-child {
  327. margin-right: 0;
  328. }
  329. }
  330. .terminal-table {
  331. width: 100%;
  332. height: calc(100% - 61px);
  333. }
  334. </style>