index.vue 12 KB

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