index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. <template>
  2. <div class="station scroll-y">
  3. <div class="station-head">
  4. <div class="station-head-title">运单基本信息</div>
  5. <div class="station-head-content flex">
  6. <div v-for="item in dataInfo" :key="item.id">{{item.name}}:{{item.value}}</div>
  7. </div>
  8. </div>
  9. <div class="station-status flex">
  10. <div class="station-status-info flex-wrap">
  11. <div class="manageTitle">运单跟踪信息</div>
  12. <div class="status">正常</div>
  13. </div>
  14. <div class="station-status-search">
  15. <Search @clear="clear" @search="search" />
  16. </div>
  17. </div>
  18. <div class="station-list flex-wrap">
  19. <div class="station-list-left">
  20. <div class="title flex-wrap">
  21. <div class="title-list">航班号CA1001</div>
  22. <div class="title-list">出港: 深圳机场</div>
  23. </div>
  24. <Steps :datas="datas" />
  25. </div>
  26. </div>
  27. <div class="station-list flex-wrap">
  28. <div class="station-list-left">
  29. <div class="title flex-wrap">
  30. <div class="title-list">航班号CA1001</div>
  31. <div class="title-list">出港: 深圳机场</div>
  32. </div>
  33. <Steps :datas="datas" />
  34. </div>
  35. </div>
  36. <div class="station-table">
  37. <Table height="calc(100vh - 700px)" :tableHeader="tableHeader" :tableData="tableData" />
  38. </div>
  39. </div>
  40. </template>
  41. <script setup lang="ts">
  42. import Search from "@/components/search/index.vue";
  43. import Steps from "@/components/steps/index.vue";
  44. import Table from "@/components/tableTemp/index.vue";
  45. import { ElMessage } from "element-plus";
  46. const dataInfo = [
  47. {
  48. id: 0,
  49. name: "运单",
  50. value: "FA56888829",
  51. },
  52. {
  53. id: 1,
  54. name: "运单类型",
  55. value: "国际普货",
  56. },
  57. {
  58. id: 2,
  59. name: "货代公司",
  60. value: "深圳市联运通货有限公司",
  61. },
  62. {
  63. id: 3,
  64. name: "品名",
  65. value: "电路板、手机外壳",
  66. },
  67. {
  68. id: 4,
  69. name: "特货信息",
  70. value: "特",
  71. },
  72. {
  73. id: 5,
  74. name: "始发机场",
  75. value: "SZX",
  76. },
  77. {
  78. id: 6,
  79. name: "目的机场",
  80. value: "CTU",
  81. },
  82. ];
  83. const datas = [
  84. {
  85. id: 1,
  86. name: "收货核单",
  87. flag: true,
  88. labelWidth: 100,
  89. children: ["A32", "534件", "通过", "10:25"],
  90. },
  91. {
  92. id: 2,
  93. name: "安检",
  94. flag: true,
  95. children: ["A32", "534件", "通过", "10:25"],
  96. },
  97. {
  98. id: 3,
  99. name: "安检",
  100. flag: true,
  101. children: ["A32", "534件", "通过", "10:25"],
  102. },
  103. {
  104. id: 4,
  105. name: "安检",
  106. flag: true,
  107. children: ["A32", "534件", "通过", "10:25"],
  108. },
  109. {
  110. id: 5,
  111. name: "安检",
  112. flag: true,
  113. children: ["A32", "534件", "通过", "10:25"],
  114. },
  115. {
  116. id: 6,
  117. name: "安检",
  118. flag: false,
  119. children: ["A32", "534件", "通过", "10:25"],
  120. },
  121. {
  122. id: 7,
  123. name: "安检安检",
  124. flag: false,
  125. labelWidth: 100,
  126. children: ["A32", "534件", "通过", "10:25"],
  127. },
  128. ];
  129. const datas1 = [
  130. {
  131. id: 1,
  132. name: "收货核单",
  133. flag: true,
  134. labelWidth: 100,
  135. children: ["A32", "534件", "通过", "10:25"],
  136. },
  137. {
  138. id: 2,
  139. name: "安检",
  140. flag: true,
  141. children: ["A32", "534件", "通过", "10:25"],
  142. },
  143. {
  144. id: 3,
  145. name: "安检",
  146. flag: true,
  147. children: ["A32", "534件", "通过", "10:25"],
  148. },
  149. {
  150. id: 4,
  151. name: "安检",
  152. flag: false,
  153. children: ["A32", "534件", "通过", "10:25"],
  154. },
  155. ];
  156. const tableHeader = [
  157. { label: "航班号", key: "fightNo" },
  158. { label: "货物编码", key: "goodsNo" },
  159. { label: "中转", key: "dwon1" },
  160. { label: "退运", key: "containerNo" },
  161. { label: "海关异常", key: "return" },
  162. {
  163. label: "卸机",
  164. key: "receipt",
  165. lableClass: "scoreColumn",
  166. columnClassName: "scoreColumn",
  167. },
  168. {
  169. label: "机下交接",
  170. key: "securityCheck",
  171. lableClass: "scoreColumn",
  172. columnClassName: "scoreColumn",
  173. },
  174. {
  175. label: "货站交接",
  176. key: "tally",
  177. lableClass: "scoreColumn",
  178. columnClassName: "scoreColumn",
  179. },
  180. {
  181. label: "理货",
  182. key: "dwon2",
  183. lableClass: "scoreColumn",
  184. columnClassName: "scoreColumn",
  185. },
  186. {
  187. label: "海关",
  188. key: "waitingArea",
  189. lableClass: "scoreColumn",
  190. columnClassName: "scoreColumn",
  191. },
  192. {
  193. label: "出库",
  194. key: "goodSstation1",
  195. lableClass: "scoreColumn",
  196. columnClassName: "scoreColumn",
  197. },
  198. {
  199. label: "退运",
  200. key: "offBoard1",
  201. lableClass: "scoreColumn",
  202. columnClassName: "scoreColumn",
  203. },
  204. ];
  205. const tableData = [
  206. {
  207. id: 1,
  208. fightNo: "CA1001",
  209. containerNo: "Y",
  210. goodsNo: "56888829",
  211. dwon1: "Y",
  212. return: "Y",
  213. receipt: "A203-未通过-15:40",
  214. securityCheck: "A203-未通过-15:40",
  215. tally: "A203-未通过-15:40",
  216. dwon2: "A203-未通过-15:40",
  217. waitingArea: "A203-未通过-15:40",
  218. goodSstation1: "A203-未通过-15:40",
  219. offBoard1: "A203-未通过-15:40",
  220. installEquipment: "A203-未通过-15:40",
  221. unloading: "A203-未通过-15:40",
  222. offBoard2: "A203-未通过-15:40",
  223. goodSstation2: "A203-未通过-15:40",
  224. extract: "A203-未通过-15:40",
  225. },
  226. {
  227. id: 2,
  228. fightNo: "CA1001",
  229. containerNo: "Y",
  230. goodsNo: "56888829",
  231. dwon1: "Y",
  232. return: "Y",
  233. receipt: "A203-未通过-15:40",
  234. securityCheck: "A203-未通过-15:40",
  235. tally: "A203-未通过-15:40",
  236. dwon2: "A203-未通过-15:40",
  237. waitingArea: "A203-未通过-15:40",
  238. goodSstation1: "A203-未通过-15:40",
  239. offBoard1: "A203-未通过-15:40",
  240. installEquipment: "A203-未通过-15:40",
  241. unloading: "A203-未通过-15:40",
  242. offBoard2: "A203-未通过-15:40",
  243. goodSstation2: "A203-未通过-15:40",
  244. extract: "A203-未通过-15:40",
  245. },
  246. {
  247. id: 3,
  248. fightNo: "CA1001",
  249. containerNo: "Y",
  250. goodsNo: "56888829",
  251. dwon1: "Y",
  252. return: "Y",
  253. receipt: "A203-未通过-15:40",
  254. securityCheck: "A203-未通过-15:40",
  255. tally: "A203-未通过-15:40",
  256. dwon2: "A203-未通过-15:40",
  257. waitingArea: "A203-未通过-15:40",
  258. goodSstation1: "A203-未通过-15:40",
  259. offBoard1: "A203-未通过-15:40",
  260. installEquipment: "A203-未通过-15:40",
  261. unloading: "A203-未通过-15:40",
  262. offBoard2: "A203-未通过-15:40",
  263. goodSstation2: "A203-未通过-15:40",
  264. extract: "A203-未通过-15:40",
  265. },
  266. {
  267. id: 4,
  268. fightNo: "CA1001",
  269. containerNo: "Y",
  270. goodsNo: "56888829",
  271. dwon1: "Y",
  272. return: "Y",
  273. receipt: "A203-未通过-15:40",
  274. securityCheck: "A203-未通过-15:40",
  275. tally: "A203-未通过-15:40",
  276. dwon2: "A203-未通过-15:40",
  277. waitingArea: "A203-未通过-15:40",
  278. goodSstation1: "A203-未通过-15:40",
  279. offBoard1: "A203-未通过-15:40",
  280. installEquipment: "A203-未通过-15:40",
  281. unloading: "A203-未通过-15:40",
  282. offBoard2: "A203-未通过-15:40",
  283. goodSstation2: "A203-未通过-15:40",
  284. extract: "A203-未通过-15:40",
  285. },
  286. ];
  287. const search = (val) => {
  288. ElMessage.success(`搜索成功:${val}`);
  289. };
  290. const clear = () => {
  291. ElMessage.success(`清除`);
  292. };
  293. </script>
  294. <style lang="scss" scoped>
  295. .station {
  296. &-head {
  297. height: 144px;
  298. background: #410425;
  299. padding: 24px 30px;
  300. color: #ffffff;
  301. &-title {
  302. font-size: 18px;
  303. font-family: Microsoft YaHei;
  304. font-weight: bold;
  305. margin-bottom: 40px;
  306. }
  307. }
  308. &-status {
  309. margin: 24px 0;
  310. line-height: 32px;
  311. .status {
  312. font-size: 16px;
  313. font-family: Microsoft YaHei;
  314. font-weight: bold;
  315. color: #519f6b;
  316. }
  317. }
  318. &-list {
  319. margin-bottom: 8px;
  320. &:last-child {
  321. margin-bottom: 0;
  322. }
  323. .title {
  324. font-size: 16px;
  325. font-family: Microsoft YaHei;
  326. font-weight: bold;
  327. color: #101116;
  328. margin-bottom: 10px;
  329. &-list {
  330. margin-right: 50px;
  331. }
  332. }
  333. &-left {
  334. background: #ffffff;
  335. padding: 24px 24px 12px 24px;
  336. flex: 1;
  337. }
  338. &-right {
  339. flex: 1;
  340. background: #ffffff;
  341. padding: 24px 24px 12px 24px;
  342. }
  343. }
  344. :deep &-table {
  345. margin-top: 16px;
  346. .scoreColumn {
  347. background: #eef3d6 !important;
  348. }
  349. .scoreColumn2 {
  350. background: #d6e6f3 !important;
  351. }
  352. }
  353. }
  354. </style>