index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. <template>
  2. <div class="advance">
  3. <div class="advance__head flex">
  4. <div class="flex-wrap interfaceLog_head_time">
  5. <div class="manageTitle">高级查询</div>
  6. <el-date-picker v-model="carrierFlightsDate" size="small" type="daterange" value-format="yyyy-MM-dd" start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="dateRangePickerOptions" :clearable="false" />
  7. </div>
  8. <Search ref="search" class="advanced-search" :is-title="false" :is-slot="true" :search-tooltip="'请输入航班号(示例:CA1234)或行李牌号(示例:1234567890)'" @getSearchData="getSearchData" @clearSearchData="clearSearchData">
  9. <div class="flex-wrap">
  10. <button class="btnAn" @click="dialogShow">
  11. 高级查询
  12. </button>
  13. <button class="btnAn" @click="exportHandler('queryTable', '高级查询结果')">
  14. 导出
  15. </button>
  16. <button class="btnAn">
  17. <router-link to="/newQuery">切换</router-link>
  18. </button>
  19. </div>
  20. </Search>
  21. </div>
  22. <!--表格-->
  23. <div class="advance__table">
  24. <Table :pageSize="999" style="height:100%" ref="queryTable" :tableTag="tableTag" />
  25. </div>
  26. <!--高级查询-->
  27. <Dialog width="900px" :flag="gjFlag">
  28. <div ref="dialog" class="advanced-dialog" :tabindex="0" @keyup.enter="advancedSubmitHandler(false)" @keyup.self.esc="gjFlag = false">
  29. <div class="title">高级查询</div>
  30. <div class="content">
  31. <el-form ref="form" :model="form" :rules="rules" label-width="100px">
  32. <el-row :gutter="20">
  33. <el-col v-for="item in formItems" :key="item.prop" :span="item.span || 8">
  34. <el-form-item :label="item.label" :prop="item.prop">
  35. <template v-if="item.prop === 'carrierFlightsDate'">
  36. <el-date-picker v-model="carrierFlightsDate" size="small" type="daterange" value-format="yyyy-MM-dd" start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="dateRangePickerOptions" :clearable="false" @keyup.esc.native="dialogFocus" />
  37. </template>
  38. <template v-else-if="item.prop === 'specialType'">
  39. <el-select v-model="form.specialType" size="small" class="multiple-select" multiple collapse-tags filterable allow-create default-first-option clearable @keyup.esc.native="dialogFocus">
  40. <el-option v-for="option in baggageTypeList" :key="option.specialType" :label="option.specialType" :value="option.specialType" />
  41. </el-select>
  42. </template>
  43. <template v-else-if="
  44. ['canLoad', 'cantransportation'].includes(
  45. item.prop
  46. )
  47. ">
  48. <el-select v-model="form[item.prop]" size="small" clearable @keyup.esc.native="dialogFocus">
  49. <el-option label="是" value="Y" />
  50. <el-option label="否" value="N" />
  51. </el-select>
  52. </template>
  53. <template v-else-if="item.prop === 'No_BSM'">
  54. <el-select v-model="form.noBSM" size="small" clearable @keyup.esc.native="dialogFocus">
  55. <el-option label="是" value="1" />
  56. <el-option label="否" value="0" />
  57. </el-select>
  58. </template>
  59. <template v-else-if="item.prop === 'activeState'">
  60. <el-select v-model="form.loadType" size="small" clearable @keyup.esc.native="dialogFocus">
  61. <el-option label="未激活" value="0" />
  62. <el-option label="已激活" value="1" />
  63. </el-select>
  64. </template>
  65. <template v-else>
  66. <el-popover v-model="item.hintVisible" placement="right" trigger="manual">
  67. <span>{{ item.hintText }}</span>
  68. <el-input :ref="'input-' + item.prop" slot="reference" v-model="form[item.prop]" size="small" @focus="item.hintVisible = true" @blur="item.hintVisible = false" @keyup.esc.native="dialogFocus" />
  69. </el-popover>
  70. </template>
  71. </el-form-item>
  72. </el-col>
  73. </el-row>
  74. </el-form>
  75. </div>
  76. <div class="foot right t30">
  77. <el-button size="medium" class="r24" type="primary" @click="advancedSubmitHandler(false)">确定</el-button>
  78. <el-button size="medium" @click="dialogHide">取消</el-button>
  79. </div>
  80. </div>
  81. </Dialog>
  82. </div>
  83. </template>
  84. <script>
  85. import Search from '@/components/SearchWithTooltip'
  86. import Dialog from '@/layout/components/Dialog'
  87. import Table from '../newQuery/components/table.vue'
  88. import { parseTime } from '@/utils/index'
  89. import { exportToExcel } from '@/utils/table'
  90. export default {
  91. name: 'AdvancedHome',
  92. components: { Search, Dialog, Table },
  93. data () {
  94. return {
  95. loading: false,
  96. colDialogFlag: false,
  97. gjFlag: false,
  98. tableData: [],
  99. page: -1,
  100. noMore: false,
  101. checkList: [],
  102. dealedTableDataAll: [],
  103. tableFlag: false,
  104. carrierFlightsDate: [
  105. parseTime(new Date(), '{y}-{m}-{d}'),
  106. parseTime(new Date(), '{y}-{m}-{d}'),
  107. ],
  108. dateRangePickerOptions: {
  109. onPick: this.dateRangePickHandler,
  110. disabledDate: this.dateRangeDisabled,
  111. },
  112. form: {
  113. carrierFlights: '', //航班号
  114. carrierFlightsDate: '', //航班日期
  115. outAirport: '', //起飞航站
  116. landAirport: '', //目的航站
  117. luggageNum: '', //行李牌号
  118. specialType: '', //特殊行李类型
  119. dataState: '', //取消值机
  120. activeState: '', //行李激活状态
  121. container_ID: '', //容器编号
  122. inflightNo: '', //进港航班号
  123. transferFlightNO: '', //离港航班号
  124. PNRNO: '', //PNR编号
  125. luggageCount: '', //总件数
  126. canLoad: '', //是否可装载
  127. cantransportation: '', //是否可运输
  128. No_BSM: '' //无BSM状态
  129. },
  130. formItems: [
  131. {
  132. prop: 'carrierFlightsDate',
  133. label: '航班日期',
  134. span: 16,
  135. },
  136. {
  137. prop: 'carrierFlights',
  138. label: '航班号',
  139. hintText: '示例:CA1234',
  140. hintVisible: false,
  141. },
  142. {
  143. prop: 'outAirport',
  144. label: '起飞航站',
  145. hintText: '示例:PEK',
  146. hintVisible: false,
  147. },
  148. {
  149. prop: 'landAirport',
  150. label: '目的航站',
  151. hintText: '示例:CTU',
  152. hintVisible: false,
  153. },
  154. {
  155. prop: 'luggageNum',
  156. label: '行李牌号',
  157. hintText: '示例:1234567890 或 CA123456',
  158. hintVisible: false,
  159. },
  160. {
  161. prop: 'specialType',
  162. label: '特殊行李类型',
  163. },
  164. {
  165. prop: 'dataState',
  166. label: '取消值机',
  167. },
  168. {
  169. prop: 'container_ID',
  170. label: '容器编号',
  171. hintText: '示例:AKE12345CA',
  172. hintVisible: false,
  173. },
  174. {
  175. prop: 'passengerName',
  176. label: '旅客姓名',
  177. hintText: '示例:ZHAOWEI',
  178. hintVisible: false,
  179. },
  180. {
  181. prop: 'PNRNO',
  182. label: 'PNR',
  183. hintText: '示例:PZR25X',
  184. hintVisible: false,
  185. },
  186. {
  187. prop: 'activeState',
  188. label: '行李激活状态',
  189. },
  190. {
  191. prop: 'inflightNo',
  192. label: '进港航班号',
  193. hintText: '示例:CA1234',
  194. hintVisible: false,
  195. },
  196. {
  197. prop: 'transferFlightNO',
  198. label: '离港航班号',
  199. hintText: '示例:CA1234',
  200. hintVisible: false,
  201. },
  202. {
  203. prop: 'canLoad',
  204. label: '是否可装载',
  205. },
  206. {
  207. prop: 'cantransportation',
  208. label: '是否可运输',
  209. },
  210. {
  211. prop: 'No_BSM',
  212. label: '无BSM状态',
  213. },
  214. ],
  215. baggageTypeList: [],
  216. dataContent: [],
  217. rules: {
  218. // 机器信息表单验证
  219. // flightNO: [
  220. // { required: true, message: "请输入有效航班号", trigger: "blur" },
  221. // ],
  222. },
  223. tableDataFilters: {},
  224. filterValues: {},
  225. tableDataSortRules: {},
  226. spanArr: [],
  227. contactDot: 0,
  228. scrollTop: 0,
  229. dom: null,
  230. tableTag: {}
  231. }
  232. },
  233. methods: {
  234. dialogShow () {
  235. this.gjFlag = true
  236. this.$nextTick(() => {
  237. this.dialogFocus()
  238. })
  239. },
  240. dialogHide () {
  241. this.gjFlag = false
  242. },
  243. dialogFocus () {
  244. this.$refs['dialog'].focus()
  245. },
  246. dateRangePickHandler ({ maxDate, minDate }) {
  247. if (!maxDate) {
  248. this.pickedDate = minDate
  249. } else {
  250. this.pickedDate = null
  251. }
  252. },
  253. dateRangeDisabled (date) {
  254. if (this.pickedDate) {
  255. const diff = date - this.pickedDate,
  256. day = 24 * 60 * 60 * 1000
  257. return diff < -3 * day || diff > 2 * day
  258. }
  259. return false
  260. },
  261. resetTable () {
  262. this.tableTag = {}
  263. },
  264. // 查询
  265. getSearchData (val) {
  266. if (
  267. this.carrierFlightsDate[0] === '' ||
  268. this.carrierFlightsDate[1] === '' ||
  269. val === ''
  270. ) {
  271. this.$message.error('请先输入完整查询信息')
  272. return
  273. }
  274. this.clearForm()
  275. // 点击搜索后清除跳转携带的查询信息
  276. this.$route.query && this.$router.replace(this.$route.path)
  277. // let searchData = {dataContent:[this.time[0],this.time[1],val]}
  278. const az = /^[a-zA-Z]+$/
  279. const azNum = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]*$/
  280. // const top2 = /^[a-zA-Z]{2}\w*$/
  281. const top2 = /^([a-zA-Z][0-9])|([0-9][a-zA-Z])|([a-zA-Z]{2})/
  282. const bagNum = /^[0-9]{10}$/
  283. const bagNo = /^[a-zA-Z]{2}[0-9]{6}$/
  284. // const bagNumCA = /^CA[0-9]{6}$/
  285. const bagNumShort = /^[0-9a-zA-Z][a-zA-Z][0-9]{6}$/
  286. // 纯字母则为旅客姓名
  287. if (azNum.test(val) && top2.test(val) && val.length < 8) {
  288. // 字母加数字且前两位为字母则为航班号
  289. if (val.length <= 5) {
  290. const len = val.length
  291. const lenCx = 6 - len
  292. val = val.substring(0, 2) + '0'.repeat(lenCx) + val.substring(2, len)
  293. this.$refs['search'].input = val
  294. }
  295. this.form['carrierFlights'] = val
  296. this.advancedSubmitHandler(true)
  297. } else if (
  298. bagNum.test(val) ||
  299. bagNo.test(val) ||
  300. (bagNumShort.test(val) &&
  301. Object.keys(AIRPORT_ID).includes(val.slice(0, 2).toUpperCase()))
  302. ) {
  303. // 纯数字且位数等于10则为行李牌号
  304. this.form['luggageNum'] = val
  305. this.advancedSubmitHandler(true)
  306. } else {
  307. this.$message.error(
  308. '请先输入有效查询信息如航班号、行李牌号'
  309. )
  310. }
  311. },
  312. // 清除查询
  313. clearSearchData () {
  314. this.clearForm()
  315. this.resetTable()
  316. },
  317. // 清除表单
  318. clearForm () {
  319. Object.keys(this.form).forEach(key => {
  320. this.form[key] = ''
  321. })
  322. },
  323. // 高级查询-确定
  324. advancedSubmitHandler (singleJump) {
  325. this.resetTable()
  326. /* 参数顺序
  327. 【航班开始日期,航班结束日期,航班号,航班号,行李牌号,行李牌号,起飞站,起飞站,目的站,目的站,特殊行李类型,特殊行李类型,旅客姓名大写拼音,旅客姓名大写拼音,
  328. PNR,PNR,值机号,值机号,中转进航班,中转进航班,中转出航班,中转出航班,容器编号,容器编号,
  329. 是否已翻减(null/OFF/其他),是否已翻减(null/OFF/其他),是否值机(null/0/1),是否值机(null/0/1),
  330. 是否激活(null/0/1),是否激活(null/0/1),是否中转(null/0/1),是否中转(null/0/1),是否取消行李(null/0/1),是否取消行李(null/0/1)】 */
  331. if (!this.carrierFlightsDate?.length) {
  332. this.$message.error('请先选择要查询的时间')
  333. return
  334. }
  335. if (Object.values(this.form).every(value => value === '')) {
  336. this.$message.error('请先输入查询信息')
  337. return
  338. }
  339. const NEW_FORM = { ...this.form }
  340. const NEW_PUSH = [
  341. {
  342. column: 'carrierFlightsDate',
  343. comparator: '>=',
  344. connector: '',
  345. left: '(',
  346. right: ')',
  347. value: this.carrierFlightsDate[0]
  348. },
  349. {
  350. column: 'carrierFlightsDate',
  351. comparator: '<=',
  352. connector: '',
  353. left: '(',
  354. right: ')',
  355. value: this.carrierFlightsDate[1]
  356. }
  357. ]
  358. for (const key in NEW_FORM) {
  359. if (Object.hasOwnProperty.call(NEW_FORM, key)) {
  360. const _ele = NEW_FORM[key]
  361. if (_ele && _ele.length) {
  362. const _eleObject = {
  363. column: key,
  364. comparator: '=',
  365. connector: '',
  366. left: '(',
  367. right: ')',
  368. value: _ele
  369. }
  370. NEW_PUSH.push(_eleObject)
  371. }
  372. }
  373. }
  374. this.tableTag = {
  375. filter: NEW_PUSH
  376. }
  377. this.gjFlag = false
  378. },
  379. exportHandler: _.throttle(
  380. function (refName, tableName) {
  381. const table = this.$refs[refName].$el.cloneNode(true)
  382. const fileName = `${tableName}.xlsx`
  383. exportToExcel(table, tableName, fileName)
  384. },
  385. 2000,
  386. { trailing: false }
  387. ),
  388. },
  389. }
  390. </script>
  391. <style lang="scss" scoped>
  392. .advance {
  393. padding: 24px;
  394. height: calc(100vh - 80px);
  395. &__head {
  396. line-height: 32px;
  397. margin-top: 8px;
  398. margin-bottom: 16px;
  399. .btnAn:not(:last-child) {
  400. margin-right: 12px;
  401. }
  402. .setting {
  403. height: 32px;
  404. width: 32px;
  405. cursor: pointer;
  406. background-size: 100% 100%;
  407. background: url("../../assets/baggage/ic_setting.png") no-repeat;
  408. margin-left: 12px;
  409. position: relative;
  410. top: 2px;
  411. }
  412. .mr10 {
  413. margin-right: 10px;
  414. }
  415. ::v-deep .interfaceLog_head_time {
  416. .el-input__prefix {
  417. left: 10px;
  418. color: #101116;
  419. }
  420. .el-input--prefix .el-input__inner {
  421. padding-left: 50px;
  422. }
  423. }
  424. }
  425. }
  426. .advance__table {
  427. width: 100%;
  428. height: calc(100% - 56px);
  429. }
  430. .advanced-dialog::v-deep .el-form > .el-row > .el-col {
  431. &:nth-child(1) .el-date-editor {
  432. width: 100%;
  433. }
  434. .multiple-select
  435. .el-select__tags
  436. > span
  437. > .el-tag:first-child
  438. > .el-select__tags-text {
  439. width: 35px;
  440. }
  441. }
  442. </style>