index.vue 9.9 KB

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