index.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. <template>
  2. <view class="app-content">
  3. <img :src="icon" alt="" class="tuku">
  4. <Navs :navname.sync="navname" @fall="fall"></Navs>
  5. <view class="fight">
  6. <view class="fight_card">
  7. <p>{{flightDetail.carrierFlights}}</p>
  8. <span>{{flightDetail.carrierFlightsDate}}</span>
  9. </view>
  10. <view class="fight_card">
  11. <p>{{flightDetail.outAirport}}</p>
  12. <span>{{flightDetail.scheduleTakeOffTime?flightDetail.scheduleTakeOffTime:"-"}}</span>
  13. </view>
  14. <view class="fight_center">
  15. <view class="type">
  16. {{flightDetail.normalState}}
  17. </view>
  18. <view class="aircraft"></view>
  19. </view>
  20. <view class="fight_card">
  21. <p>{{flightDetail.landAirport}}</p>
  22. <span>{{flightDetail.scheduleLandInTime?flightDetail.scheduleLandInTime:"-"}}</span>
  23. </view>
  24. </view>
  25. <view class="content">
  26. <view class="content_bootom" style="top:0">
  27. <scroll-view scroll-y="true" class="scroll-Y">
  28. <view class="up" v-for="(item, index) in listdata" :key="index">
  29. <view class="list" @tap="toDetail(item.luggageNum)">
  30. <p>{{ item.luggageNum }}</p>
  31. </view>
  32. <view class="normal">
  33. {{item.specialType!=null?specialTypeList[item.specialType]:" "}}
  34. </view>
  35. <view :class="item.exception_type != null?'error':'normal'">
  36. {{item.exception_type!=null?exceptionList[item.exception_type]:"正常"}}
  37. </view>
  38. </view>
  39. </scroll-view>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. import Navs from '../../components/header/navs.vue'
  46. import {
  47. Format
  48. } from '@/components/utils/validate'
  49. export default {
  50. data() {
  51. return {
  52. flightDetail: null,
  53. input: '',
  54. main: null,
  55. poll: null,
  56. filter: null,
  57. pusher: null,
  58. intentServer: null,
  59. timeShow: true,
  60. arr: [],
  61. navname: '航班详情',
  62. icon: 'static/beijing.png',
  63. newData: '',
  64. newDataday: '',
  65. listdata:[],
  66. exceptionList:{
  67. "DPR":"破损",
  68. "AHL":"少收",
  69. "OHD":"多收"
  70. },
  71. specialTypeList:{
  72. "AVIH":"装笼动物",
  73. "CREW":"机组行李",
  74. "RFAG":"易碎行李",
  75. "HVY":"重型行李",
  76. "PRIO":"优先行李",
  77. "RUSH":"无人行李",
  78. "SCON":"急转行李",
  79. "SPEQ":"运动装备",
  80. "VIP":"VIP行李",
  81. "WCHR":"轮椅",
  82. "WFAP":"武器枪支",
  83. "SJ05":"到港行李破损",
  84. "SJ34":"超大柜台接收",
  85. }
  86. }
  87. },
  88. created(option) {},
  89. onLoad() {
  90. this.flightDetail = this.$storage.getJson('searchData')
  91. this.getluggageList()
  92. },
  93. onUnload() {uni.$off("scancodemsg");},
  94. onShow() {
  95. uni.$on("scancodemsg", (data) => {
  96. if (data.msg.length > 9) {
  97. uni.navigateTo({
  98. url: "/pages/detail/index?luggageNum=" + data.msg
  99. })
  100. }
  101. });
  102. if(this.flightDetail){
  103. this.getluggageList()
  104. }
  105. },
  106. mounted() {
  107. },
  108. beforeDestroy() {
  109. },
  110. components: {
  111. Navs
  112. },
  113. methods: {
  114. fall() {
  115. uni.navigateBack({
  116. delta:1
  117. })
  118. },
  119. async getluggageList() {
  120. let data = {
  121. "serviceId": 3001,
  122. "page": 1,
  123. "pageSize": 999,
  124. "dataContent": {
  125. "carrierFlights": this.flightDetail.carrierFlights,
  126. "carrierFlightsDate": this.flightDetail.carrierFlightsDate,
  127. "outAirport":this.flightDetail.outAirport,
  128. "landAirport":this.flightDetail.landAirport
  129. },
  130. "event": "0"
  131. }
  132. await this.$http.httpPost('/openApi/query', data).then(res => {
  133. if (res.code == "0") {
  134. this.listdata = res.returnData;
  135. }
  136. })
  137. },
  138. toDetail(luggageNum){
  139. this.currentLuggageNum = luggageNum;
  140. uni.navigateTo({
  141. url: "/pages/detail/index?luggageNum="+this.currentLuggageNum
  142. })
  143. },
  144. },
  145. }
  146. </script>
  147. <style lang="scss" scoped>
  148. .app-content {
  149. position: relative;
  150. width: 100vw;
  151. height: 100vh;
  152. overflow: hidden;
  153. >.tuku {
  154. position: absolute;
  155. z-index: -1;
  156. width: 100%;
  157. top: -250px;
  158. let:20px;
  159. }
  160. >.fight {
  161. padding: 0 1.75rem 5rem 1.75rem;
  162. // height: 3.75rem;
  163. display: flex;
  164. align-items: center;
  165. justify-content: space-around;
  166. margin-top: 1.375rem;
  167. .fight_center {
  168. width: 3rem;
  169. display: flex;
  170. flex-direction: column;
  171. align-items: center;
  172. justify-content: center;
  173. color: rgb(255, 255, 255);
  174. font-family: Noto Sans SC;
  175. font-size: 16px;
  176. line-height: 24px;
  177. font-weight: 700;
  178. >.aircraft {
  179. width: 1.75rem;
  180. height: 1.75rem;
  181. background: url('../../static/hang.png') no-repeat;
  182. background-size: 100% 100%;
  183. }
  184. }
  185. >.fight_card {
  186. display: flex;
  187. flex-direction: column;
  188. align-items: start;
  189. justify-content: center;
  190. >p {
  191. color: rgb(255, 255, 255);
  192. font-family: Noto Sans SC;
  193. font-size: 16px;
  194. line-height: 24px;
  195. font-weight: 700;
  196. }
  197. >span {
  198. color: rgb(255, 255, 255);
  199. font-family: Noto Sans SC;
  200. font-size: 11px;
  201. font-weight: 500;
  202. }
  203. }
  204. }
  205. >.times {
  206. width: 100%;
  207. height: 3.6875rem;
  208. display: flex;
  209. align-items: center;
  210. justify-content: center;
  211. color: rgb(255, 255, 255);
  212. font-family: Noto Sans SC;
  213. font-size: 18px;
  214. font-weight: 700;
  215. p {
  216. margin-right: .625rem;
  217. }
  218. }
  219. .content {
  220. width: 100%;
  221. height: calc(100vh - 10rem);
  222. position: relative;
  223. // overflow: hidden;
  224. // background: rgb(49, 85, 99);
  225. >.content_top {
  226. width: 100%;
  227. // background: rgb(49, 85, 99);
  228. padding-bottom: 1.3125rem;
  229. >.craid {
  230. // width: 100%;
  231. height: 5.625rem;
  232. padding: 0 2.5625rem 0 2.5625rem;
  233. display: flex;
  234. justify-content: space-between;
  235. flex-wrap: wrap;
  236. align-items: center;
  237. >.craid_data {
  238. display: flex;
  239. flex-direction: column;
  240. justify-content: center;
  241. align-items: start;
  242. >p {
  243. color: rgb(255, 255, 255);
  244. font-family: Noto Sans SC;
  245. font-size: 18px;
  246. font-weight: 700;
  247. }
  248. >span {
  249. color: rgb(255, 255, 255);
  250. font-family: Noto Sans SC;
  251. font-size: 13px;
  252. font-weight: 500;
  253. }
  254. }
  255. >.aircraft {
  256. width: 1.75rem;
  257. height: 1.75rem;
  258. background: url('../../static/hang.png') no-repeat;
  259. background-size: 100% 100%;
  260. }
  261. }
  262. >.scanning {
  263. height: 12rem;
  264. padding: 0 1.5rem 0 1.5rem;
  265. opacity: 1;
  266. transition: all 3s;
  267. .scanning_cd {
  268. width: 100%;
  269. height: 3rem;
  270. opacity: 1;
  271. transition: all 3s;
  272. background: rgb(59, 103, 123);
  273. margin-top: 1rem;
  274. margin-bottom: .5rem;
  275. border-radius: 4px;
  276. display: flex;
  277. justify-content: center;
  278. align-items: center;
  279. color: rgb(255, 255, 255);
  280. font-family: Noto Sans SC;
  281. font-size: 16px;
  282. >.log {
  283. width: .875rem;
  284. height: .875rem;
  285. background: url('../../static/saoma.png') no-repeat;
  286. background-size: 100% 100%;
  287. margin-left: 1rem;
  288. }
  289. >.log_l {
  290. width: .125rem;
  291. height: 1.3125rem;
  292. margin-left: 4rem;
  293. background: rgb(255, 255, 255);
  294. }
  295. }
  296. .scanning_cds {
  297. width: 100%;
  298. height: 3rem;
  299. opacity: 1;
  300. transition: all 3s;
  301. background: rgb(51, 161, 165);
  302. margin-top: 1rem;
  303. margin-bottom: .5rem;
  304. border-radius: 4px;
  305. display: flex;
  306. justify-content: center;
  307. align-items: center;
  308. color: rgb(255, 255, 255);
  309. font-family: Noto Sans SC;
  310. font-size: 16px;
  311. >.log {
  312. width: .875rem;
  313. height: .875rem;
  314. background: url('../../static/saoma.png') no-repeat;
  315. background-size: 100% 100%;
  316. margin-left: 1rem;
  317. }
  318. >.log_l {
  319. width: .125rem;
  320. height: 1.3125rem;
  321. margin-left: 4rem;
  322. background: rgb(255, 255, 255);
  323. }
  324. }
  325. }
  326. }
  327. >.content_bootom {
  328. width: 100%;
  329. // height: calc(100vh - 20.9375rem - 4.375rem);
  330. padding-bottom: 0;
  331. position: absolute;
  332. bottom: 0;
  333. top: 20.75rem;
  334. // border-radius: 6px 6px 0px 0px;
  335. overflow: hidden;
  336. background: rgb(255, 255, 255);
  337. padding: 0 10px;
  338. box-sizing: border-box;
  339. .up {
  340. width: 100%;
  341. display: flex;
  342. align-items: center;
  343. justify-content: space-between;
  344. margin-left: 1rem;
  345. border-bottom: 1px solid rgb(238, 238, 238);
  346. // transform: all 3s;
  347. >.down_up {
  348. width: .875rem;
  349. height: .875rem;
  350. background: url('../../static/xia.png') no-repeat;
  351. background-size: 100% 100%;
  352. }
  353. >.error{
  354. width: 80px;
  355. color:red
  356. }
  357. >.normal{
  358. width: 80px;
  359. color:#4682b4
  360. }
  361. >.list {
  362. position: relative;
  363. height: 3rem;
  364. display: flex;
  365. align-items: center;
  366. transform: all 3s;
  367. right: 0;
  368. color: rgb(0, 0, 0);
  369. font-family: Noto Sans SC;
  370. font-size: 16px;
  371. font-weight: 500;
  372. }
  373. >.delete {
  374. width: 3.75rem;
  375. height: 3.75rem;
  376. background: rgb(237, 101, 101);
  377. display: flex;
  378. align-items: center;
  379. justify-content: center;
  380. position: relative;
  381. right: -3.75rem;
  382. transform: all 3s;
  383. >.log {
  384. width: .875rem;
  385. height: .875rem;
  386. background: url('../../static/vector@1x.png') no-repeat;
  387. background-size: 100% 100%;
  388. }
  389. }
  390. }
  391. .scroll-Y {
  392. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  393. height: calc(100% - 2.5rem - 2.75rem);
  394. }
  395. .but {
  396. width: 20.5625rem;
  397. height: 2.5rem;
  398. background: linear-gradient(179.10deg, rgba(51, 161, 165, 1.00) 11.326%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%);
  399. border-radius: .25rem;
  400. color: rgb(255, 255, 255);
  401. font-family: Noto Sans SC;
  402. font-size: 1rem;
  403. margin: 0 auto;
  404. display: flex;
  405. align-items: center;
  406. justify-content: center;
  407. margin-top: 0.25rem;
  408. margin-bottom: 2.25rem;
  409. }
  410. }
  411. }
  412. }
  413. </style>