index.vue 9.8 KB

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