useTable.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  1. import { Query } from '@/api/webApi'
  2. import { CommonValue, CommonData, CommonTableColumn } from '~/common'
  3. const idGetter = (name: string) => {
  4. if (name.endsWith('WaybillGoods')) {
  5. return DATACONTENT_ID.waybillGoods
  6. } else {
  7. return DATACONTENT_ID[name.slice(0, 1).toLowerCase() + name.slice(1)]
  8. }
  9. }
  10. const tableColumnsMap: {
  11. [tableName: string]: ({
  12. columnLabel: string
  13. columnName: string
  14. } & { [x: string]: any })[]
  15. } = {
  16. DepartureFlightContainer: [
  17. { columnLabel: '集装器编号', columnName: 'stowageNo', width: 120 },
  18. { columnLabel: '运单数', columnName: 'list', width: 60, needCount: 1 },
  19. { columnLabel: '件数', columnName: 'number', width: 60, needCount: 1 },
  20. {
  21. columnLabel: '理货',
  22. columnName: 'tally',
  23. className: 'cell-filter cell-filter-yellow',
  24. },
  25. {
  26. columnLabel: '拉下',
  27. columnName: 'pull',
  28. className: 'cell-filter cell-filter-yellow',
  29. },
  30. {
  31. columnLabel: '待运区',
  32. columnName: 'wait',
  33. className: 'cell-filter cell-filter-yellow',
  34. },
  35. {
  36. columnLabel: '货站交接',
  37. columnName: 'depot',
  38. className: 'cell-filter cell-filter-yellow',
  39. },
  40. {
  41. columnLabel: '机下交接',
  42. columnName: 'planeDown',
  43. className: 'cell-filter cell-filter-yellow',
  44. },
  45. {
  46. columnLabel: '装机',
  47. columnName: 'loadPlane',
  48. className: 'cell-filter cell-filter-yellow',
  49. },
  50. ],
  51. DepartureFlightWaybill: [
  52. { columnLabel: '运单号', columnName: 'stockCode', width: 120 },
  53. { columnLabel: '集装器数量', columnName: 'stowageNum', needCount: 1 },
  54. {
  55. columnLabel: '品名',
  56. columnName: 'typeCode',
  57. width: 160,
  58. showOverflowTooltip: true,
  59. },
  60. { columnLabel: '特货信息', columnName: 'speCargoInfo' },
  61. { columnLabel: '货物件数', columnName: 'luggageCount', needCount: 1 },
  62. { columnLabel: '拉下件数', columnName: 'pullNum', needCount: 1 },
  63. { columnLabel: '退运件数', columnName: 'returnNum', needCount: 1 },
  64. { columnLabel: '最新节点', columnName: 'nodeCode' },
  65. { columnLabel: '最新位置', columnName: 'execPosition' },
  66. { columnLabel: '处理结果', columnName: 'execResult' },
  67. { columnLabel: '处理时间', columnName: 'execTime', width: 130 },
  68. { columnLabel: '中转进航班号', columnName: 'inFlightNO' },
  69. {
  70. columnLabel: '中转航班降落时间',
  71. columnName: 'inFlightNOLandTime',
  72. width: 130,
  73. },
  74. { columnLabel: '装载序号', columnName: 'queueNo' },
  75. ],
  76. DepartureWaybillGoods: [
  77. {
  78. columnLabel: '航班号',
  79. columnName: 'flightNO',
  80. needFilters: 1,
  81. width: 70,
  82. },
  83. {
  84. columnLabel: '集装器编号',
  85. columnName: 'stowageNo',
  86. width: 100,
  87. needFilters: 1,
  88. },
  89. { columnLabel: '货物编码', columnName: 'CargoNo', needFilters: 1 },
  90. { columnLabel: '拉下', columnName: 'pullMark', needFilters: 1, width: 60 },
  91. {
  92. columnLabel: '退运',
  93. columnName: 'returnMark',
  94. needFilters: 1,
  95. width: 60,
  96. },
  97. {
  98. columnLabel: '收货核单',
  99. columnName: 'DEH',
  100. className: 'cell-filter cell-filter-green',
  101. },
  102. {
  103. columnLabel: '查验',
  104. columnName: 'ACC_CHECK',
  105. className: 'cell-filter cell-filter-green',
  106. },
  107. {
  108. columnLabel: '拒运',
  109. columnName: 'ACC_CHECK_2',
  110. className: 'cell-filter cell-filter-green',
  111. },
  112. {
  113. columnLabel: '安检',
  114. columnName: '安检',
  115. className: 'cell-filter cell-filter-green',
  116. },
  117. {
  118. columnLabel: '加货',
  119. columnName: 'ACC_BUP',
  120. className: 'cell-filter cell-filter-green',
  121. },
  122. {
  123. columnLabel: '待运区',
  124. columnName: 'WAT_LOC',
  125. className: 'cell-filter cell-filter-green',
  126. },
  127. {
  128. columnLabel: '货站交接',
  129. columnName: 'CARGOS_DEP_ULD_HANDOVER',
  130. className: 'cell-filter cell-filter-green',
  131. },
  132. {
  133. columnLabel: '机下交接',
  134. columnName: '出港货邮',
  135. className: 'cell-filter cell-filter-green',
  136. },
  137. {
  138. columnLabel: '装机',
  139. columnName: '装载完成',
  140. className: 'cell-filter cell-filter-green',
  141. },
  142. {
  143. columnLabel: '拉下',
  144. columnName: 'CARGOS_OFFLOAD',
  145. className: 'cell-filter cell-filter-green',
  146. },
  147. {
  148. columnLabel: '拉回',
  149. columnName: 'OFFLOAD_CONFIRM',
  150. className: 'cell-filter cell-filter-green',
  151. },
  152. // {
  153. // columnLabel: '起飞',
  154. // columnName: 'C15',
  155. // className: 'cell-filter cell-filter-green',
  156. // },
  157. {
  158. columnLabel: '退运',
  159. columnName: 'BILL_RETURN',
  160. className: 'cell-filter cell-filter-green',
  161. },
  162. {
  163. columnLabel: '卸机',
  164. columnName: 'CARGOS_ARR_HANDOVER',
  165. className: 'cell-filter cell-filter-cyan',
  166. },
  167. {
  168. columnLabel: '机下交接',
  169. columnName: 'CARGOS_HANDOVER_STATUS',
  170. className: 'cell-filter cell-filter-cyan',
  171. },
  172. {
  173. columnLabel: '货站交接',
  174. columnName: '货站交接',
  175. className: 'cell-filter cell-filter-cyan',
  176. },
  177. {
  178. columnLabel: '理货',
  179. columnName: 'IMP_TALLY',
  180. className: 'cell-filter cell-filter-cyan',
  181. },
  182. {
  183. columnLabel: '出库',
  184. columnName: 'FSU_DLV',
  185. className: 'cell-filter cell-filter-cyan',
  186. },
  187. ],
  188. DepartureGoodsFlight: [
  189. { columnLabel: '航班号', columnName: 'C0' },
  190. { columnLabel: '航班日期', columnName: 'C1' },
  191. { columnLabel: '起飞航站\n预计起飞时间', columnName: 'C2' },
  192. { columnLabel: '目的航站\n预计降落时间', columnName: 'C3' },
  193. { columnLabel: '节点名称', columnName: 'C4' },
  194. { columnLabel: '位置码', columnName: 'C5' },
  195. { columnLabel: '位置描述', columnName: 'C6' },
  196. { columnLabel: '处理时间', columnName: 'C7' },
  197. { columnLabel: '处理结果', columnName: 'C8' },
  198. { columnLabel: '数据来源', columnName: 'C9' },
  199. { columnLabel: '设备ID', columnName: 'C10' },
  200. { columnLabel: '操作人', columnName: 'C11' },
  201. { columnLabel: '发往位置', columnName: 'C12' },
  202. { columnLabel: '发往位置描述', columnName: 'C13' },
  203. { columnLabel: '集装器编号', columnName: 'C14' },
  204. ],
  205. ArrivalFlightWaybill: [
  206. { columnLabel: '运单号', columnName: 'stockCode', width: 120 },
  207. {
  208. columnLabel: '品名',
  209. columnName: 'typeCode',
  210. width: 160,
  211. showOverflowTooltip: true,
  212. },
  213. { columnLabel: '特货信息', columnName: 'speCargoInfo', needCount: 1 },
  214. {
  215. columnLabel: '进港报文货物件数',
  216. columnName: 'messageCargos_in',
  217. needCount: 1,
  218. },
  219. {
  220. columnLabel: '进港实际货物件数',
  221. columnName: 'acCargos_in',
  222. needCount: 1,
  223. },
  224. { columnLabel: '最新节点', columnName: 'nodeCode' },
  225. { columnLabel: '最新位置', columnName: 'execPosition' },
  226. { columnLabel: '处理结果', columnName: 'execResult' },
  227. { columnLabel: '处理时间', columnName: 'execTime', width: 130 },
  228. { columnLabel: '中转出航班号', columnName: 'transferFlightNO' },
  229. {
  230. columnLabel: '中转航班起飞时间',
  231. columnName: 'transferFlightDepTime',
  232. width: 130,
  233. },
  234. { columnLabel: '装载序号', columnName: 'queueNo' },
  235. ],
  236. ArrivalWaybillGoods: [
  237. {
  238. columnLabel: '航班号',
  239. columnName: 'flightNO',
  240. needFilters: 1,
  241. width: 70,
  242. },
  243. {
  244. columnLabel: '货物编码',
  245. columnName: 'CargoNo',
  246. width: 100,
  247. needFilters: 1,
  248. },
  249. { columnLabel: '中转', columnName: 'transMark', needFilters: 1 },
  250. { columnLabel: '拉下', columnName: 'pullMark', needFilters: 1, width: 60 },
  251. {
  252. columnLabel: '退运',
  253. columnName: 'returnMark',
  254. needFilters: 1,
  255. width: 60,
  256. },
  257. {
  258. columnLabel: '卸机',
  259. columnName: 'CARGOS_ARR_HANDOVER',
  260. className: 'cell-filter cell-filter-cyan',
  261. },
  262. {
  263. columnLabel: '机下交接',
  264. columnName: 'CARGOS_HANDOVER_STATUS',
  265. className: 'cell-filter cell-filter-cyan',
  266. },
  267. {
  268. columnLabel: '货站交接',
  269. columnName: '货站交接',
  270. className: 'cell-filter cell-filter-cyan',
  271. },
  272. {
  273. columnLabel: '理货',
  274. columnName: 'IMP_TALLY',
  275. className: 'cell-filter cell-filter-cyan',
  276. },
  277. {
  278. columnLabel: '出库',
  279. columnName: 'FSU_DLV',
  280. className: 'cell-filter cell-filter-cyan',
  281. },
  282. {
  283. columnLabel: '收货核单',
  284. columnName: 'DEH',
  285. className: 'cell-filter cell-filter-green',
  286. },
  287. {
  288. columnLabel: '查验',
  289. columnName: 'ACC_CHECK',
  290. className: 'cell-filter cell-filter-green',
  291. },
  292. {
  293. columnLabel: '拒运',
  294. columnName: 'ACC_CHECK_2',
  295. className: 'cell-filter cell-filter-green',
  296. },
  297. {
  298. columnLabel: '安检',
  299. columnName: '安检',
  300. className: 'cell-filter cell-filter-green',
  301. },
  302. {
  303. columnLabel: '加货',
  304. columnName: 'ACC_BUP',
  305. className: 'cell-filter cell-filter-green',
  306. },
  307. {
  308. columnLabel: '待运区',
  309. columnName: 'WAT_LOC',
  310. className: 'cell-filter cell-filter-green',
  311. },
  312. {
  313. columnLabel: '货站交接',
  314. columnName: 'CARGOS_DEP_ULD_HANDOVER',
  315. className: 'cell-filter cell-filter-green',
  316. },
  317. {
  318. columnLabel: '机下交接',
  319. columnName: '出港货邮',
  320. className: 'cell-filter cell-filter-green',
  321. },
  322. {
  323. columnLabel: '装机',
  324. columnName: '装载完成',
  325. className: 'cell-filter cell-filter-green',
  326. },
  327. {
  328. columnLabel: '拉下',
  329. columnName: 'CARGOS_OFFLOAD',
  330. className: 'cell-filter cell-filter-green',
  331. },
  332. {
  333. columnLabel: '拉回',
  334. columnName: 'OFFLOAD_CONFIRM',
  335. className: 'cell-filter cell-filter-green',
  336. },
  337. // {
  338. // columnLabel: '起飞',
  339. // columnName: 'C15',
  340. // className: 'cell-filter cell-filter-green',
  341. // },
  342. {
  343. columnLabel: '退运',
  344. columnName: 'BILL_RETURN',
  345. className: 'cell-filter cell-filter-green',
  346. },
  347. ],
  348. ArrivalGoodsFlight: [
  349. { columnLabel: '航班号', columnName: 'C0' },
  350. { columnLabel: '航班日期', columnName: 'C1' },
  351. { columnLabel: '起飞航站\n预计起飞时间', columnName: 'C2' },
  352. { columnLabel: '目的航站\n预计降落时间', columnName: 'C3' },
  353. { columnLabel: '节点名称', columnName: 'C4' },
  354. { columnLabel: '位置码', columnName: 'C5' },
  355. { columnLabel: '位置描述', columnName: 'C6' },
  356. { columnLabel: '处理时间', columnName: 'C7' },
  357. { columnLabel: '处理结果', columnName: 'C8' },
  358. { columnLabel: '数据来源', columnName: 'C9' },
  359. { columnLabel: '设备ID', columnName: 'C10' },
  360. { columnLabel: '操作人', columnName: 'C11' },
  361. { columnLabel: '发往位置', columnName: 'C12' },
  362. { columnLabel: '发往位置描述', columnName: 'C13' },
  363. ],
  364. InternationalDepartureFlightContainer: [
  365. { columnLabel: '集装器编号', columnName: 'C0', width: 120 },
  366. { columnLabel: '运单数', columnName: 'C1', width: 60, needCount: 1 },
  367. { columnLabel: '件数', columnName: 'C2', width: 60, needCount: 1 },
  368. {
  369. columnLabel: '理货',
  370. columnName: 'C3',
  371. className: 'cell-filter cell-filter-yellow',
  372. },
  373. {
  374. columnLabel: '拉下',
  375. columnName: 'C4',
  376. className: 'cell-filter cell-filter-yellow',
  377. },
  378. {
  379. columnLabel: '待运区',
  380. columnName: 'C5',
  381. className: 'cell-filter cell-filter-yellow',
  382. },
  383. {
  384. columnLabel: '货站交接',
  385. columnName: 'C6',
  386. className: 'cell-filter cell-filter-yellow',
  387. },
  388. {
  389. columnLabel: '机下交接',
  390. columnName: 'C7',
  391. className: 'cell-filter cell-filter-yellow',
  392. },
  393. {
  394. columnLabel: '装机',
  395. columnName: 'C8',
  396. className: 'cell-filter cell-filter-yellow',
  397. },
  398. ],
  399. InternationalDepartureFlightWaybill: [
  400. { columnLabel: '运单号', columnName: 'C0', width: 120 },
  401. { columnLabel: '运单类型', columnName: 'C1', needCount: 1 },
  402. { columnLabel: '集装器数量', columnName: 'C2', needCount: 1 },
  403. {
  404. columnLabel: '品名',
  405. columnName: 'C3',
  406. width: 160,
  407. showOverflowTooltip: true,
  408. },
  409. { columnLabel: '特货信息', columnName: 'C4' },
  410. { columnLabel: '货物件数', columnName: 'C5', needCount: 1 },
  411. { columnLabel: '拉下件数', columnName: 'C6', needCount: 1 },
  412. { columnLabel: '退运件数', columnName: 'C7', needCount: 1 },
  413. { columnLabel: '最新节点', columnName: 'C8' },
  414. { columnLabel: '最新位置', columnName: 'C9' },
  415. { columnLabel: '处理结果', columnName: 'C10' },
  416. { columnLabel: '处理时间', columnName: 'C11', width: 130 },
  417. { columnLabel: '中转进航班号', columnName: 'C12' },
  418. { columnLabel: '中转航班降落时间', columnName: 'C13', width: 130 },
  419. { columnLabel: '装载序号', columnName: 'C14' },
  420. ],
  421. InternationalDepartureWaybillGoods: [
  422. { columnLabel: '航班号', columnName: 'C0', needFilters: 1 },
  423. { columnLabel: '集装器编号', columnName: 'C1', width: 120, needFilters: 1 },
  424. { columnLabel: '货物编码', columnName: 'C2', needFilters: 1 },
  425. { columnLabel: '拉下', columnName: 'C3', needFilters: 1 },
  426. { columnLabel: '退运', columnName: 'C4', needFilters: 1 },
  427. {
  428. columnLabel: '入园',
  429. columnName: 'C5',
  430. className: 'cell-filter cell-filter-green',
  431. },
  432. {
  433. columnLabel: '海关',
  434. columnName: 'C6',
  435. className: 'cell-filter cell-filter-green',
  436. },
  437. {
  438. columnLabel: '运抵',
  439. columnName: 'C7',
  440. className: 'cell-filter cell-filter-green',
  441. },
  442. {
  443. columnLabel: '安检',
  444. columnName: 'C8',
  445. className: 'cell-filter cell-filter-green',
  446. },
  447. {
  448. columnLabel: '收运核单',
  449. columnName: 'C9',
  450. className: 'cell-filter cell-filter-green',
  451. },
  452. {
  453. columnLabel: '理货',
  454. columnName: 'C10',
  455. className: 'cell-filter cell-filter-green',
  456. },
  457. {
  458. columnLabel: '拉下',
  459. columnName: 'C11',
  460. className: 'cell-filter cell-filter-green',
  461. },
  462. {
  463. columnLabel: '待运区',
  464. columnName: 'C12',
  465. className: 'cell-filter cell-filter-green',
  466. },
  467. {
  468. columnLabel: '货站交接',
  469. columnName: 'C13',
  470. className: 'cell-filter cell-filter-green',
  471. },
  472. {
  473. columnLabel: '机下交接',
  474. columnName: 'C14',
  475. className: 'cell-filter cell-filter-green',
  476. },
  477. {
  478. columnLabel: '提取',
  479. columnName: 'C15',
  480. className: 'cell-filter cell-filter-green',
  481. },
  482. ],
  483. InternationalDepartureGoodsFlight: [
  484. { columnLabel: '航班号', columnName: 'C0' },
  485. { columnLabel: '航班日期', columnName: 'C1' },
  486. { columnLabel: '起飞航站\n预计起飞时间', columnName: 'C2' },
  487. { columnLabel: '目的航站\n预计降落时间', columnName: 'C3' },
  488. { columnLabel: '节点名称', columnName: 'C4' },
  489. { columnLabel: '位置码', columnName: 'C5' },
  490. { columnLabel: '位置描述', columnName: 'C6' },
  491. { columnLabel: '处理时间', columnName: 'C7' },
  492. { columnLabel: '处理结果', columnName: 'C8' },
  493. { columnLabel: '数据来源', columnName: 'C9' },
  494. { columnLabel: '设备ID', columnName: 'C10' },
  495. { columnLabel: '操作人', columnName: 'C11' },
  496. { columnLabel: '发往位置', columnName: 'C12' },
  497. { columnLabel: '发往位置描述', columnName: 'C13' },
  498. { columnLabel: '集装器编号', columnName: 'C14' },
  499. ],
  500. InternationalArrivalFlightWaybill: [
  501. { columnLabel: '运单号', columnName: 'stockCode', width: 120 },
  502. {
  503. columnLabel: '品名',
  504. columnName: 'typeCode',
  505. width: 160,
  506. showOverflowTooltip: true,
  507. },
  508. { columnLabel: '特货信息', columnName: 'speCargoInfo', needCount: 1 },
  509. {
  510. columnLabel: '进港报文货物件数',
  511. columnName: 'messageCargos_in',
  512. needCount: 1,
  513. },
  514. {
  515. columnLabel: '进港实际货物件数',
  516. columnName: 'acCargos_in',
  517. needCount: 1,
  518. },
  519. { columnLabel: '最新节点', columnName: 'nodeCode' },
  520. { columnLabel: '最新位置', columnName: 'execPosition' },
  521. { columnLabel: '处理结果', columnName: 'execResult' },
  522. { columnLabel: '处理时间', columnName: 'execTime', width: 130 },
  523. { columnLabel: '中转出航班号', columnName: 'transferFlightNO' },
  524. {
  525. columnLabel: '中转航班起飞时间',
  526. columnName: 'transferFlightDepTime',
  527. width: 130,
  528. },
  529. { columnLabel: '装载序号', columnName: 'queueNo' },
  530. ],
  531. InternationalArrivalWaybillGoods: [
  532. { columnLabel: '航班号', columnName: 'C0', needFilters: 1 },
  533. { columnLabel: '货物编码', columnName: 'C1', needFilters: 1 },
  534. { columnLabel: '中转', columnName: 'C2', needFilters: 1 },
  535. { columnLabel: '退运', columnName: 'C3', needFilters: 1 },
  536. { columnLabel: '海关异常', columnName: 'C4', needFilters: 1 },
  537. {
  538. columnLabel: '卸机',
  539. columnName: 'C5',
  540. className: 'cell-filter cell-filter-green',
  541. },
  542. {
  543. columnLabel: '机下交接',
  544. columnName: 'C6',
  545. className: 'cell-filter cell-filter-green',
  546. },
  547. {
  548. columnLabel: '货站交接',
  549. columnName: 'C7',
  550. className: 'cell-filter cell-filter-green',
  551. },
  552. {
  553. columnLabel: '理货',
  554. columnName: 'C8',
  555. className: 'cell-filter cell-filter-green',
  556. },
  557. {
  558. columnLabel: '海关放行',
  559. columnName: 'C9',
  560. className: 'cell-filter cell-filter-green',
  561. },
  562. {
  563. columnLabel: '出库',
  564. columnName: 'C10',
  565. className: 'cell-filter cell-filter-green',
  566. },
  567. {
  568. columnLabel: '海关罚没',
  569. columnName: 'C11',
  570. className: 'cell-filter cell-filter-green',
  571. },
  572. ],
  573. InternationalArrivalGoodsFlight: [
  574. { columnLabel: '航班号', columnName: 'C0' },
  575. { columnLabel: '航班日期', columnName: 'C1' },
  576. { columnLabel: '起飞航站\n预计起飞时间', columnName: 'C2' },
  577. { columnLabel: '目的航站\n预计降落时间', columnName: 'C3' },
  578. { columnLabel: '节点名称', columnName: 'C4' },
  579. { columnLabel: '位置码', columnName: 'C5' },
  580. { columnLabel: '位置描述', columnName: 'C6' },
  581. { columnLabel: '处理时间', columnName: 'C7' },
  582. { columnLabel: '处理结果', columnName: 'C8' },
  583. { columnLabel: '数据来源', columnName: 'C9' },
  584. { columnLabel: '设备ID', columnName: 'C10' },
  585. { columnLabel: '操作人', columnName: 'C11' },
  586. { columnLabel: '发往位置', columnName: 'C12' },
  587. { columnLabel: '发往位置描述', columnName: 'C13' },
  588. ],
  589. }
  590. const simulateTableDataMap: {
  591. [tableName: string]: CommonData[]
  592. } = {
  593. DepartureFlightContainer: Array.from({ length: 2 }, () => ({
  594. C0: 'DOU29800001',
  595. C1: '5',
  596. C2: '50',
  597. C3: 'C24 11:01',
  598. C4: 'F24 12:05',
  599. C5: 'D32 11:25',
  600. C6: 'E24 11:40',
  601. C7: 'F24 12:01',
  602. C8: 'G32 12:25',
  603. })),
  604. DepartureFlightWaybill: Array.from({ length: 3 }, () => ({
  605. C0: '32535234445',
  606. C1: '5',
  607. C2: '手机、充电器',
  608. C3: '特',
  609. C4: '5',
  610. C5: '2',
  611. C6: '2',
  612. C7: '待运区',
  613. C8: 'A13',
  614. C9: '通过',
  615. C10: '2022/9/10 10:01',
  616. C11: 'ZH5466',
  617. C12: '2022/9/10 16:01',
  618. C13: '3',
  619. })),
  620. DepartureWaybillGoods: Array.from({ length: 4 }, () => ({
  621. C0: 'CA1001',
  622. C1: 'DOU2424U2',
  623. C2: '56888829',
  624. C3: 'Y',
  625. C4: 'Y',
  626. C5: 'A203-未通过-15:40',
  627. C6: 'A203-未通过-15:40',
  628. C7: 'A203-未通过-15:40',
  629. C8: 'A203-未通过-15:40',
  630. C9: 'A203-未通过-15:40',
  631. C10: 'A203-未通过-15:40',
  632. C11: 'A203-未通过-15:40',
  633. C12: 'A203-未通过-15:40',
  634. C13: 'A203-未通过-15:40',
  635. C14: 'A203-未通过-15:40',
  636. C15: 'A203-未通过-15:40',
  637. C16: 'A203-未通过-15:40',
  638. })),
  639. DepartureGoodsFlight: Array.from({ length: 3 }, () => ({
  640. C0: 'CA1001',
  641. C1: '2022/9/10',
  642. C2: 'SZX-11:35',
  643. C3: 'PEK-14:35',
  644. C4: '机下交接',
  645. C5: 'A03',
  646. C6: 'A区03闸口',
  647. C7: '2022/09/10 07:10',
  648. C8: '通过',
  649. C9: '人工扫描',
  650. C10: '56',
  651. C11: '张伯伦',
  652. C12: 'B12',
  653. C13: '货站B12闸口',
  654. C14: 'DOU2329U2',
  655. })),
  656. ArrivalFlightWaybill: Array.from({ length: 3 }, () => ({
  657. C0: '32535234445',
  658. C1: '手机、充电器',
  659. C2: '特',
  660. C3: '5',
  661. C4: '5',
  662. C5: '待运区',
  663. C6: 'A13',
  664. C7: '通过',
  665. C8: '2022/9/10 10:01',
  666. C9: 'ZH5466',
  667. C10: '2022/9/10 16:01',
  668. C11: '3',
  669. })),
  670. ArrivalWaybillGoods: Array.from({ length: 4 }, () => ({
  671. C0: 'CA1001',
  672. C1: '56888829',
  673. C2: 'Y',
  674. C3: 'Y',
  675. C4: 'Y',
  676. C5: 'A203-未通过-15:40',
  677. C6: 'A203-未通过-15:40',
  678. C7: 'A203-未通过-15:40',
  679. C8: 'A203-未通过-15:40',
  680. C9: 'A203-未通过-15:40',
  681. C10: 'A203-未通过-15:40',
  682. C11: 'A203-未通过-15:40',
  683. C12: 'A203-未通过-15:40',
  684. C13: 'A203-未通过-15:40',
  685. C14: 'A203-未通过-15:40',
  686. C15: 'A203-未通过-15:40',
  687. C16: 'A203-未通过-15:40',
  688. })),
  689. ArrivalGoodsFlight: Array.from({ length: 3 }, () => ({
  690. C0: 'CA1001',
  691. C1: '2022/9/10',
  692. C2: 'SZX-11:35',
  693. C3: 'PEK-14:35',
  694. C4: '机下交接',
  695. C5: 'A03',
  696. C6: 'A区03闸口',
  697. C7: '2022/09/10 07:10',
  698. C8: '通过',
  699. C9: '人工扫描',
  700. C10: '56',
  701. C11: '张伯伦',
  702. C12: 'B12',
  703. C13: '货站B12闸口',
  704. C14: 'DOU2329U2',
  705. })),
  706. InternationalDepartureFlightContainer: Array.from({ length: 2 }, () => ({
  707. C0: 'DOU29800001',
  708. C1: '5',
  709. C2: '50',
  710. C3: 'C24 11:01',
  711. C4: 'F24 12:05',
  712. C5: 'D32 11:25',
  713. C6: 'E24 11:40',
  714. C7: 'F24 12:01',
  715. C8: 'G32 12:25',
  716. })),
  717. InternationalDepartureFlightWaybill: Array.from({ length: 3 }, () => ({
  718. C0: '32535234445',
  719. C1: '国际普货',
  720. C2: '5',
  721. C3: '手机、充电器',
  722. C4: '特',
  723. C5: '5',
  724. C6: '2',
  725. C7: '2',
  726. C8: '待运区',
  727. C9: 'A13',
  728. C10: '通过',
  729. C11: '2022/9/10 10:01',
  730. C12: 'ZH5466',
  731. C13: '2022/9/10 16:01',
  732. C14: '3',
  733. })),
  734. InternationalDepartureWaybillGoods: Array.from({ length: 4 }, () => ({
  735. C0: 'CA1001',
  736. C1: 'DOU2424U2',
  737. C2: '56888829',
  738. C3: 'Y',
  739. C4: 'Y',
  740. C5: 'A203-未通过-15:40',
  741. C6: 'A203-未通过-15:40',
  742. C7: 'A203-未通过-15:40',
  743. C8: 'A203-未通过-15:40',
  744. C9: 'A203-未通过-15:40',
  745. C10: 'A203-未通过-15:40',
  746. C11: 'A203-未通过-15:40',
  747. C12: 'A203-未通过-15:40',
  748. C13: 'A203-未通过-15:40',
  749. C14: 'A203-未通过-15:40',
  750. C15: 'A203-未通过-15:40',
  751. })),
  752. InternationalDepartureGoodsFlight: Array.from({ length: 3 }, () => ({
  753. C0: 'CA1001',
  754. C1: '2022/9/10',
  755. C2: 'SZX-11:35',
  756. C3: 'PEK-14:35',
  757. C4: '机下交接',
  758. C5: 'A03',
  759. C6: 'A区03闸口',
  760. C7: '2022/09/10 07:10',
  761. C8: '通过',
  762. C9: '人工扫描',
  763. C10: '56',
  764. C11: '张伯伦',
  765. C12: 'B12',
  766. C13: '货站B12闸口',
  767. C14: 'DOU2329U2',
  768. })),
  769. InternationalArrivalFlightWaybill: Array.from({ length: 3 }, () => ({
  770. C0: '32535234445',
  771. C1: '国际普货',
  772. C2: '手机、充电器',
  773. C3: '特',
  774. C4: '5',
  775. C5: '2',
  776. C6: '理货',
  777. C7: 'A13',
  778. C8: '通过',
  779. C9: '2022/9/10 10:01',
  780. C10: 'ZH5466',
  781. C11: '2022/9/10 16:01',
  782. C12: '3',
  783. })),
  784. InternationalArrivalWaybillGoods: Array.from({ length: 4 }, () => ({
  785. C0: 'CA1001',
  786. C1: '56888829',
  787. C2: 'Y',
  788. C3: 'Y',
  789. C4: 'Y',
  790. C5: 'A203-未通过-15:40',
  791. C6: 'A203-未通过-15:40',
  792. C7: 'A203-未通过-15:40',
  793. C8: 'A203-未通过-15:40',
  794. C9: 'A203-未通过-15:40',
  795. C10: 'A203-未通过-15:40',
  796. C11: 'A203-未通过-15:40',
  797. })),
  798. InternationalArrivalGoodsFlight: Array.from({ length: 3 }, () => ({
  799. C0: 'CA1001',
  800. C1: '2022/9/10',
  801. C2: 'SZX-11:35',
  802. C3: 'PEK-14:35',
  803. C4: '机下交接',
  804. C5: 'A03',
  805. C6: 'A区03闸口',
  806. C7: '2022/09/10 07:10',
  807. C8: '通过',
  808. C9: '人工扫描',
  809. C10: '56',
  810. C11: '张伯伦',
  811. C12: 'B12',
  812. C13: '货站B12闸口',
  813. })),
  814. }
  815. export default function useTable(
  816. tableName: string,
  817. dataContent?: CommonValue[]
  818. ) {
  819. const tableColumns = ref<CommonTableColumn[]>([])
  820. const tableData = ref<CommonData[]>([])
  821. const getTableColumns = () => {
  822. tableColumns.value = tableColumnsMap[tableName].map(column => ({
  823. columnDescribe: '',
  824. dataType: '',
  825. listqueryTemplateID: null,
  826. needCount: null,
  827. needFilters: null,
  828. needGroup: null,
  829. needSearch: null,
  830. needShow: 1,
  831. needSort: null,
  832. orderNumber: null,
  833. queryTemplateColumnSetID: null,
  834. queryTemplateID: null,
  835. ...column,
  836. }))
  837. }
  838. const getTableData = async () => {
  839. try {
  840. const {
  841. code,
  842. returnData: { listValues },
  843. message,
  844. } = await Query<CommonData>({
  845. id: idGetter(tableName),
  846. dataContent,
  847. })
  848. if (Number(code) !== 0) {
  849. throw new Error(message || '失败')
  850. }
  851. tableData.value = listValues
  852. } catch (error) {
  853. console.error(error)
  854. }
  855. }
  856. const getSimulateTableData = () => {
  857. tableData.value = simulateTableDataMap[tableName]
  858. }
  859. onMounted(() => {
  860. if (tableColumnsMap[tableName]) {
  861. getTableColumns()
  862. getTableData()
  863. // getSimulateTableData()
  864. }
  865. })
  866. return {
  867. tableColumns,
  868. tableData,
  869. }
  870. }