tableforms.vue 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  1. <template>
  2. <div class="data-table">
  3. <div
  4. element-loading-text="拼命加载中"
  5. element-loading-spinner="el-icon-loading"
  6. element-loading-background="rgba(0, 0, 0, 0.8)"
  7. class="data-table-content"
  8. >
  9. <template v-if="tableList.length && action == 0">
  10. <el-table
  11. :data="tableList"
  12. style="width: 100%"
  13. :row-style="rowStyle"
  14. :style="dataTableContentStyle"
  15. height="calc(100vh - 190px)"
  16. max-height="calc(100vh - 190px)"
  17. :stripe="tableProps.stripe"
  18. :border="tableProps.border"
  19. :row-key="tableProps.rowKey"
  20. :highlight-current-row="tableProps.highlightCurrentRow"
  21. :header-cell-class-name="tableProps.headerCellClassName"
  22. :tooltip-effect="tableProps.tooltipEffect"
  23. :show-summary="tableProps.showSummary"
  24. >
  25. <el-table-column
  26. prop="indexs"
  27. label="序号"
  28. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  29. >
  30. </el-table-column>
  31. <el-table-column
  32. prop="dat"
  33. label="时间"
  34. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  35. >
  36. </el-table-column>
  37. <el-table-column
  38. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  39. prop="weight"
  40. label="重量(吨)"
  41. >
  42. </el-table-column>
  43. </el-table>
  44. </template>
  45. <template v-if="tableList.length && action == 1">
  46. <el-table
  47. :data="tableList"
  48. style="width: 100%"
  49. :row-style="rowStyle"
  50. :style="dataTableContentStyle"
  51. height="calc(100vh - 190px)"
  52. max-height="calc(100vh - 190px)"
  53. :stripe="tableProps.stripe"
  54. :border="tableProps.border"
  55. :row-key="tableProps.rowKey"
  56. :highlight-current-row="tableProps.highlightCurrentRow"
  57. :header-cell-class-name="tableProps.headerCellClassName"
  58. :tooltip-effect="tableProps.tooltipEffect"
  59. :show-summary="tableProps.showSummary"
  60. >
  61. <el-table-column
  62. prop="indexs"
  63. label="序号"
  64. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  65. >
  66. </el-table-column>
  67. <el-table-column
  68. prop="dat"
  69. label="时间"
  70. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  71. >
  72. </el-table-column>
  73. <el-table-column
  74. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  75. prop="flightNum"
  76. label="重量(吨)"
  77. >
  78. </el-table-column>
  79. </el-table>
  80. </template>
  81. <template v-if="tableList.length && action == 2">
  82. <el-table
  83. :data="tableList"
  84. style="width: 100%"
  85. :row-style="rowStyle"
  86. :style="dataTableContentStyle"
  87. height="calc(100vh - 190px)"
  88. max-height="calc(100vh - 190px)"
  89. :stripe="tableProps.stripe"
  90. :border="tableProps.border"
  91. :row-key="tableProps.rowKey"
  92. :highlight-current-row="tableProps.highlightCurrentRow"
  93. :header-cell-class-name="tableProps.headerCellClassName"
  94. :tooltip-effect="tableProps.tooltipEffect"
  95. :show-summary="tableProps.showSummary"
  96. >
  97. <el-table-column
  98. prop="indexs"
  99. label="序号"
  100. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  101. >
  102. </el-table-column>
  103. <el-table-column
  104. prop="dat"
  105. label="时间"
  106. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  107. >
  108. </el-table-column>
  109. <el-table-column
  110. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  111. prop="flightNum"
  112. label="运单数(单)"
  113. >
  114. </el-table-column>
  115. <el-table-column
  116. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  117. prop="weight"
  118. label="重量(吨)"
  119. >
  120. </el-table-column>
  121. </el-table>
  122. </template>
  123. <template v-if="tableList.length && action == 3">
  124. <el-table
  125. :data="tableList"
  126. style="width: 100%"
  127. :row-style="rowStyle"
  128. :style="dataTableContentStyle"
  129. height="calc(100vh - 190px)"
  130. max-height="calc(100vh - 190px)"
  131. :stripe="tableProps.stripe"
  132. :border="tableProps.border"
  133. :row-key="tableProps.rowKey"
  134. :highlight-current-row="tableProps.highlightCurrentRow"
  135. :header-cell-class-name="tableProps.headerCellClassName"
  136. :tooltip-effect="tableProps.tooltipEffect"
  137. :show-summary="tableProps.showSummary"
  138. >
  139. <el-table-column
  140. prop="indexs"
  141. label="序号"
  142. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  143. >
  144. </el-table-column>
  145. <el-table-column
  146. prop="fdt"
  147. label="时间"
  148. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  149. >
  150. </el-table-column>
  151. <el-table-column
  152. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  153. prop="weight"
  154. label="重量(吨)"
  155. >
  156. </el-table-column>
  157. </el-table>
  158. </template>
  159. <template v-if="tableList.length && action == 4">
  160. <el-table
  161. :data="tableList"
  162. style="width: 100%"
  163. :row-style="rowStyle"
  164. :style="dataTableContentStyle"
  165. height="calc(100vh - 190px)"
  166. max-height="calc(100vh - 190px)"
  167. :stripe="tableProps.stripe"
  168. :border="tableProps.border"
  169. :row-key="tableProps.rowKey"
  170. :highlight-current-row="tableProps.highlightCurrentRow"
  171. :header-cell-class-name="tableProps.headerCellClassName"
  172. :tooltip-effect="tableProps.tooltipEffect"
  173. :show-summary="tableProps.showSummary"
  174. :summary-method="totalOutPrice"
  175. >
  176. <el-table-column
  177. prop="indexs"
  178. label="序号"
  179. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  180. >
  181. </el-table-column>
  182. <el-table-column
  183. prop="flightdate"
  184. label="日期"
  185. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  186. >
  187. </el-table-column>
  188. <el-table-column
  189. prop="flightNo"
  190. label="航班号"
  191. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  192. >
  193. </el-table-column>
  194. <el-table-column
  195. prop="line"
  196. label="航线"
  197. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  198. >
  199. </el-table-column>
  200. <el-table-column
  201. prop="stand"
  202. label="机位"
  203. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  204. >
  205. </el-table-column>
  206. <el-table-column
  207. prop="totalWeight"
  208. label="货物总重 (KG)"
  209. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  210. >
  211. </el-table-column>
  212. <el-table-column
  213. prop="pullWeight"
  214. label="拉货 (KG)"
  215. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  216. >
  217. </el-table-column>
  218. <!-- <el-table-column
  219. prop="dat"
  220. label="时间"
  221. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  222. >
  223. </el-table-column>
  224. <el-table-column
  225. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  226. prop="pullFlightNum"
  227. label="航班量(班)"
  228. >
  229. </el-table-column>
  230. <el-table-column
  231. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  232. prop="pullWeight"
  233. label="重量(吨)"
  234. >
  235. </el-table-column> -->
  236. </el-table>
  237. </template>
  238. <template v-if="tableList.length && action == 5">
  239. <el-table
  240. :data="tableList"
  241. style="width: 100%"
  242. :row-style="rowStyle"
  243. :style="dataTableContentStyle"
  244. height="calc(100vh - 190px)"
  245. max-height="calc(100vh - 190px)"
  246. :stripe="tableProps.stripe"
  247. :border="tableProps.border"
  248. :row-key="tableProps.rowKey"
  249. :highlight-current-row="tableProps.highlightCurrentRow"
  250. :header-cell-class-name="tableProps.headerCellClassName"
  251. :tooltip-effect="tableProps.tooltipEffect"
  252. :summary-method="totalOutPrice"
  253. >
  254. <el-table-column
  255. prop="indexs"
  256. label="序号"
  257. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  258. >
  259. </el-table-column>
  260. <el-table-column
  261. prop="IATACode"
  262. label="航司"
  263. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  264. >
  265. </el-table-column>
  266. <el-table-column
  267. prop="flightNO"
  268. label="航班号"
  269. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  270. >
  271. </el-table-column>
  272. <el-table-column
  273. prop="flightDate"
  274. label="执飞日期"
  275. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  276. >
  277. </el-table-column>
  278. <el-table-column
  279. prop="planLandingTime"
  280. label="计划降落时间"
  281. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  282. >
  283. </el-table-column>
  284. <el-table-column
  285. prop="acLandingTime"
  286. label="实际降落时间"
  287. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  288. >
  289. </el-table-column>
  290. <el-table-column
  291. prop="target"
  292. label="航程"
  293. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  294. >
  295. </el-table-column>
  296. <el-table-column
  297. prop="unLoadTime"
  298. label="卸机时间"
  299. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  300. >
  301. </el-table-column>
  302. <el-table-column
  303. prop="planeDownTime_IN"
  304. label="库区到达时间"
  305. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  306. >
  307. </el-table-column>
  308. <el-table-column
  309. prop="depotJoinTime_IN"
  310. label="货站交接时间"
  311. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  312. >
  313. </el-table-column>
  314. <el-table-column
  315. prop="tallyTime_in"
  316. label="理货时间"
  317. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  318. >
  319. </el-table-column>
  320. </el-table>
  321. </template>
  322. <template v-if="tableList.length && action == 6">
  323. <el-table
  324. :data="tableList"
  325. style="width: 100%"
  326. :row-style="rowStyle"
  327. :style="dataTableContentStyle"
  328. height="calc(100vh - 190px)"
  329. max-height="calc(100vh - 190px)"
  330. :stripe="tableProps.stripe"
  331. :border="tableProps.border"
  332. :row-key="tableProps.rowKey"
  333. :highlight-current-row="tableProps.highlightCurrentRow"
  334. :header-cell-class-name="tableProps.headerCellClassName"
  335. :tooltip-effect="tableProps.tooltipEffect"
  336. :summary-method="totalOutPrice"
  337. :show-summary="tableProps.showSummary"
  338. >
  339. <el-table-column
  340. prop="indexs"
  341. label="序号"
  342. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  343. >
  344. </el-table-column>
  345. <el-table-column
  346. prop="flightDate"
  347. label="执飞日期"
  348. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  349. >
  350. </el-table-column>
  351. <el-table-column
  352. prop="planFlightNum"
  353. label="计划航班数"
  354. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  355. >
  356. </el-table-column>
  357. <el-table-column
  358. prop="finishFlightNum"
  359. label="已完成航班数"
  360. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  361. >
  362. </el-table-column>
  363. <el-table-column
  364. prop="ygmNum"
  365. label="一个码航班数"
  366. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  367. >
  368. </el-table-column>
  369. <el-table-column
  370. prop="speNum"
  371. label="特货航班数"
  372. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  373. >
  374. </el-table-column>
  375. <el-table-column
  376. prop="receiveSureNum"
  377. label="收运核单航班数"
  378. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  379. >
  380. </el-table-column>
  381. <el-table-column
  382. prop="securityNum"
  383. label="安检放行航班数"
  384. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  385. >
  386. </el-table-column>
  387. <el-table-column
  388. prop="addCargoNum"
  389. label="加货航班数"
  390. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  391. >
  392. </el-table-column>
  393. <el-table-column
  394. prop="stowageNum"
  395. label="预配载航班数"
  396. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  397. >
  398. </el-table-column>
  399. <el-table-column
  400. prop="depotJoinNum"
  401. label="交接复核航班数"
  402. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  403. >
  404. </el-table-column>
  405. <el-table-column
  406. prop="planeDownNum"
  407. label="机下交接航班数"
  408. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  409. >
  410. </el-table-column>
  411. <el-table-column
  412. prop="pullNum"
  413. label="拉下航班数"
  414. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  415. >
  416. </el-table-column>
  417. <el-table-column
  418. prop="pullSureNum"
  419. label="拉回确认航班数"
  420. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  421. >
  422. </el-table-column>
  423. </el-table>
  424. </template>
  425. <template v-if="tableList.length && action == 7">
  426. <el-table
  427. :data="tableList"
  428. style="width: 100%"
  429. :row-style="rowStyle"
  430. :style="dataTableContentStyle"
  431. height="calc(100vh - 190px)"
  432. max-height="calc(100vh - 190px)"
  433. :stripe="tableProps.stripe"
  434. :border="tableProps.border"
  435. :row-key="tableProps.rowKey"
  436. :highlight-current-row="tableProps.highlightCurrentRow"
  437. :header-cell-class-name="tableProps.headerCellClassName"
  438. :tooltip-effect="tableProps.tooltipEffect"
  439. :summary-method="totalOutPrice"
  440. :show-summary="tableProps.showSummary"
  441. >
  442. <el-table-column
  443. prop="indexs"
  444. label="序号"
  445. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  446. >
  447. </el-table-column>
  448. <el-table-column
  449. prop="flightDate"
  450. label="执飞日期"
  451. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  452. >
  453. </el-table-column>
  454. <el-table-column
  455. prop="planFlightNum"
  456. label="计划航班数"
  457. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  458. >
  459. </el-table-column>
  460. <el-table-column
  461. prop="finishFlightNum"
  462. label="已完成航班数"
  463. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  464. >
  465. </el-table-column>
  466. <el-table-column
  467. prop="speNum"
  468. label="特货航班数"
  469. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  470. >
  471. </el-table-column>
  472. <el-table-column
  473. prop="unLoadNum"
  474. label="卸机航班数"
  475. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  476. >
  477. </el-table-column>
  478. <el-table-column
  479. prop="arriveNum"
  480. label="库区到达航班数"
  481. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  482. >
  483. </el-table-column>
  484. <el-table-column
  485. prop="depotJoinNum"
  486. label="货站交接航班数"
  487. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  488. >
  489. </el-table-column>
  490. <el-table-column
  491. prop="tallyNum"
  492. label="理货航班数"
  493. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  494. >
  495. </el-table-column>
  496. <el-table-column
  497. prop="outWarehouseNum"
  498. label="出库航班数"
  499. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  500. >
  501. </el-table-column>
  502. </el-table>
  503. </template>
  504. <template v-if="tableList.length && action == 8">
  505. <el-table
  506. :data="tableList"
  507. style="width: 100%"
  508. :row-style="rowStyle"
  509. :style="dataTableContentStyle"
  510. height="calc(100vh - 190px)"
  511. max-height="calc(100vh - 190px)"
  512. :stripe="tableProps.stripe"
  513. :border="tableProps.border"
  514. :row-key="tableProps.rowKey"
  515. :highlight-current-row="tableProps.highlightCurrentRow"
  516. :header-cell-class-name="tableProps.headerCellClassName"
  517. :tooltip-effect="tableProps.tooltipEffect"
  518. :summary-method="totalOutPrice"
  519. :show-summary="tableProps.showSummary"
  520. >
  521. <el-table-column
  522. prop="indexs"
  523. label="序号"
  524. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  525. >
  526. </el-table-column>
  527. <el-table-column
  528. prop="flightDate"
  529. label="执飞日期"
  530. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  531. >
  532. </el-table-column>
  533. <el-table-column
  534. prop="planFlightNum"
  535. label="计划航班数"
  536. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  537. >
  538. </el-table-column>
  539. <el-table-column
  540. prop="finishFlightNum"
  541. label="已完成航班数"
  542. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  543. >
  544. </el-table-column>
  545. <el-table-column
  546. prop="speNum"
  547. label="特货航班数"
  548. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  549. >
  550. </el-table-column>
  551. <el-table-column
  552. prop="enterParkNum"
  553. label="入园航班数"
  554. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  555. >
  556. </el-table-column>
  557. <el-table-column
  558. prop="enterCustomsNum"
  559. label="海关放行航班数"
  560. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  561. >
  562. </el-table-column>
  563. <el-table-column
  564. prop="toStationNum"
  565. label="运抵货站航班数"
  566. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  567. >
  568. </el-table-column>
  569. <el-table-column
  570. prop="securityNum"
  571. label="安检放行航班数"
  572. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  573. >
  574. </el-table-column>
  575. <el-table-column
  576. prop="receiveSureNum"
  577. label="收运核单航班数"
  578. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  579. >
  580. </el-table-column>
  581. <el-table-column
  582. prop="tallyNum"
  583. label="理货航班数"
  584. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  585. >
  586. </el-table-column>
  587. <el-table-column
  588. prop="requestDepotJoinNum"
  589. label="发起货站交接航班数"
  590. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  591. >
  592. </el-table-column>
  593. <el-table-column
  594. prop="resureNum"
  595. label="交接复核航班数"
  596. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  597. >
  598. </el-table-column>
  599. <el-table-column
  600. prop="planeDownNum"
  601. label="机下交接航班数"
  602. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  603. >
  604. </el-table-column>
  605. <el-table-column
  606. prop="pullregisterNum"
  607. label="拉下登记航班数"
  608. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  609. >
  610. </el-table-column>
  611. <el-table-column
  612. prop="stowageNum"
  613. label="实配航班数"
  614. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  615. >
  616. </el-table-column>
  617. </el-table>
  618. </template>
  619. <template v-if="tableList.length && action == 9">
  620. <el-table
  621. :data="tableList"
  622. style="width: 100%"
  623. :row-style="rowStyle"
  624. :style="dataTableContentStyle"
  625. height="calc(100vh - 190px)"
  626. max-height="calc(100vh - 190px)"
  627. :stripe="tableProps.stripe"
  628. :border="tableProps.border"
  629. :row-key="tableProps.rowKey"
  630. :highlight-current-row="tableProps.highlightCurrentRow"
  631. :header-cell-class-name="tableProps.headerCellClassName"
  632. :tooltip-effect="tableProps.tooltipEffect"
  633. :summary-method="totalOutPrice"
  634. :show-summary="tableProps.showSummary"
  635. >
  636. <el-table-column
  637. prop="indexs"
  638. label="序号"
  639. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  640. >
  641. </el-table-column>
  642. <el-table-column
  643. prop="flightDate"
  644. label="执飞日期"
  645. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  646. >
  647. </el-table-column>
  648. <el-table-column
  649. prop="planFlightNum"
  650. label="计划航班数"
  651. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  652. >
  653. </el-table-column>
  654. <el-table-column
  655. prop="finishFlightNum"
  656. label="已完成航班数"
  657. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  658. >
  659. </el-table-column>
  660. <el-table-column
  661. prop="speNum"
  662. label="特货航班数"
  663. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  664. >
  665. </el-table-column>
  666. <el-table-column
  667. prop="unloadNum"
  668. label="卸机航班数"
  669. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  670. >
  671. </el-table-column>
  672. <el-table-column
  673. prop="planeDownTimeNum"
  674. label="机下交接航班数"
  675. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  676. >
  677. </el-table-column>
  678. <el-table-column
  679. prop="depotJoinNum"
  680. label="货站交接航班数"
  681. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  682. >
  683. </el-table-column>
  684. <el-table-column
  685. prop="tallyNum"
  686. label="理货航班数"
  687. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  688. >
  689. </el-table-column>
  690. <el-table-column
  691. prop="passCustomsNum"
  692. label="海关放行航班数"
  693. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  694. >
  695. </el-table-column>
  696. <el-table-column
  697. prop="outWarehouseNum"
  698. label="出库航班数"
  699. :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
  700. >
  701. </el-table-column>
  702. </el-table>
  703. </template>
  704. </div>
  705. </div>
  706. </template>
  707. <script>
  708. export default {
  709. props: {
  710. tableList: {
  711. type: Array,
  712. default: () => [],
  713. },
  714. action: {
  715. type: Number,
  716. default: 0,
  717. },
  718. set: {
  719. type: Number,
  720. default: "",
  721. },
  722. },
  723. data() {
  724. return {
  725. loading: false,
  726. rowStyle: {
  727. height: "50px",
  728. fontSize: "14px",
  729. color: "#101116",
  730. },
  731. tableProps: {
  732. height: "100%",
  733. maxHeight: "100%",
  734. stripe: true,
  735. border: true,
  736. highlightCurrentRow: false,
  737. rowClassName: "rowClass",
  738. headerCellClassName: "headerCell",
  739. tooltipEffect: "light",
  740. showSummary: true,
  741. rowKey: "",
  742. },
  743. tableColumnProperty: {
  744. width: "",
  745. fixed: "",
  746. sortable: false,
  747. showOverflowTooltip: true,
  748. align: "center",
  749. headerAlign: "",
  750. },
  751. };
  752. },
  753. watch: {
  754. tableList: {
  755. handler(val) {
  756. // console.log(val, "111111111");
  757. },
  758. deep: true,
  759. immediate: true,
  760. },
  761. },
  762. computed: {
  763. dataTableContentStyle() {
  764. const style = {};
  765. if (this.minHeight) {
  766. style["min-height"] = this.minHeight;
  767. }
  768. if (this.tableHeight) {
  769. style["height"] = this.tableHeight;
  770. }
  771. return style;
  772. },
  773. },
  774. methods: {
  775. totalOutPrice(param) {
  776. const { columns, data } = param;
  777. const sums = [];
  778. columns.forEach((column, index) => {
  779. if (index === 0) {
  780. sums[index] = "合计";
  781. return;
  782. }
  783. const values = data.map((item) => Number(item[column.property]));
  784. if (
  785. column.property != "stand" &&
  786. column.property != "flightdate" &&
  787. column.property != "indexs" &&
  788. column.property != "flightNo" &&
  789. column.property != "line"
  790. ) {
  791. sums[index] = values.reduce((prev, curr) => {
  792. const value = Number(curr);
  793. if (!isNaN(value)) {
  794. return prev + curr;
  795. } else {
  796. return prev;
  797. }
  798. }, 0);
  799. sums[index];
  800. }
  801. });
  802. return sums;
  803. },
  804. //滚动分页加载
  805. // load () {
  806. // this.$emit("load", true);
  807. // };
  808. },
  809. };
  810. </script>
  811. <style lang="scss" scoped>
  812. .el-table {
  813. display: flex;
  814. flex-direction: column;
  815. }
  816. .infinite-list {
  817. // height: 300px;
  818. padding: 0;
  819. margin: 0;
  820. list-style: none;
  821. }
  822. .infinite-list .infinite-list-item {
  823. display: flex;
  824. align-items: center;
  825. justify-content: center;
  826. height: 50px;
  827. background: var(--el-color-primary-light-9);
  828. margin: 10px;
  829. color: var(--el-color-primary);
  830. }
  831. .infinite-list .infinite-list-item + .list-item {
  832. margin-top: 10px;
  833. }
  834. :deep.el-table {
  835. .rowClass {
  836. height: 40px;
  837. font-size: 14px;
  838. color: #101116;
  839. }
  840. .el-table__header .el-table__cell {
  841. height: 40px;
  842. background: #ffffff;
  843. font-size: 14px;
  844. font-weight: bold;
  845. color: #101116;
  846. }
  847. .editBtn {
  848. background: #ffffff;
  849. border: 1px solid #f79ec6;
  850. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  851. border-radius: 4px;
  852. font-size: 12px;
  853. font-weight: 400;
  854. color: #ac014d;
  855. }
  856. .delBtn {
  857. background: #eb2f3b;
  858. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  859. border-radius: 4px;
  860. font-size: 12px;
  861. font-weight: 400;
  862. color: #ffffff;
  863. border: none;
  864. }
  865. .child-list {
  866. font-size: 14px;
  867. font-family: Helvetica;
  868. font-weight: 400;
  869. color: #101116;
  870. }
  871. .btn-all {
  872. justify-content: center;
  873. .btn-list {
  874. margin-right: 10px;
  875. &:last-child {
  876. margin-right: 0;
  877. }
  878. }
  879. }
  880. .el-table__body .el-table__cell {
  881. &.el-table-column--selection > .cell {
  882. display: block;
  883. text-align: center;
  884. }
  885. &.cell-click {
  886. color: #2d67e3;
  887. cursor: pointer;
  888. }
  889. }
  890. }
  891. :deep.el-table--striped
  892. .el-table__body
  893. tr.el-table__row--striped
  894. td.el-table__cell {
  895. background-color: #f0f3f7;
  896. }
  897. .tableStatus {
  898. font-size: 14px;
  899. .icon {
  900. width: 14px;
  901. height: 14px;
  902. background: #2d67e3;
  903. border-radius: 2px;
  904. display: inline-block;
  905. vertical-align: middle;
  906. position: relative;
  907. top: -2px;
  908. }
  909. .status0 {
  910. position: relative;
  911. top: 5px;
  912. }
  913. .status1 {
  914. position: relative;
  915. top: 5px;
  916. .icon {
  917. background-color: #afb4bf;
  918. }
  919. }
  920. .status2 {
  921. position: relative;
  922. top: 5px;
  923. .icon {
  924. background-color: #eb2f3b;
  925. }
  926. }
  927. }
  928. </style>