index.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <view class="app-content">
  3. <img :src="icon" alt="" class="tuku">
  4. <Nav :navname.sync="navname" :navtype="false" :index="index" @clear="clear" :flightNo = "searchFlightNo"></Nav>
  5. <view class="fight" v-if="flightDetail">
  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="times">
  26. <p>{{ newData }}</p>{{ newDataday }}
  27. </view>
  28. <view class="content">
  29. <view class="card" v-if="APP_SORT" @tap="clickOrder('SORT')">
  30. <p>分拣</p>
  31. </view>
  32. <view class="card" v-if="APP_LOAD" @tap="clickOrder('LOAD')">
  33. <p>装车</p>
  34. </view>
  35. <view class="card" v-if="APP_INFL" @tap="clickOrder('INFL')">
  36. <p>装机</p>
  37. </view>
  38. <view class="card" v-if="APP_UNLOAD" @tap="clickOrder('UNLOAD')">
  39. <p>卸机</p>
  40. </view>
  41. <view class="card" v-if="APP_ARRIVED" @tap="clickOrder('ARRIVED')">
  42. <p>到达</p>
  43. </view>
  44. <view class="card" v-if="APP_EXTRACT" @tap="clickOrder('extract')">
  45. <p>提取</p>
  46. </view>
  47. <view class="card" v-if="APP_Abnormal" @tap="clickOrder('abnormal')">
  48. <p>异常登记</p>
  49. </view>
  50. <view class="card_no">
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. import Nav from '../../components/header/nav.vue'
  57. import {
  58. Format
  59. } from '@/components/utils/validate'
  60. export default {
  61. data() {
  62. return {
  63. APP_SORT:false,
  64. APP_LOAD:false,
  65. APP_INFL:false,
  66. APP_UNLOAD:false,
  67. APP_ARRIVED:false,
  68. APP_EXTRACT:false,
  69. APP_Abnormal:false,
  70. input: '',
  71. main: null,
  72. poll: null,
  73. filter: null,
  74. pusher: null,
  75. intentServer: null,
  76. timeShow: true,
  77. arr: [],
  78. navname: '首页',
  79. icon: 'static/beijing.png',
  80. newData: '',
  81. newDataday: '',
  82. index: 0,
  83. flightDetail: null,
  84. flightNO: null,
  85. airportName:null,
  86. flightDate:null,
  87. searchFlightNo:""
  88. }
  89. },
  90. created(option) {
  91. let authList = this.$storage.getJson('authList');
  92. authList.map(item => {
  93. switch (item.auth_ident){
  94. case "APP_SORT":
  95. this.APP_SORT = true;
  96. break;
  97. case "APP_LOAD":
  98. this.APP_LOAD = true;
  99. break;
  100. case "APP_INFL":
  101. this.APP_INFL = true;
  102. break;
  103. case "APP_UNLOAD":
  104. this.APP_UNLOAD = true;
  105. break;
  106. case "APP_ARRIVED":
  107. this.APP_ARRIVED = true;
  108. break;
  109. case "APP_EXTRACT":
  110. this.APP_EXTRACT = true;
  111. break;
  112. case "APP_Abnormal_registration":
  113. this.APP_Abnormal = true;
  114. break;
  115. default:
  116. break;
  117. }
  118. })
  119. },
  120. onLoad(option) {
  121. },
  122. onUnload() {},
  123. onShow() {
  124. uni.$on("scancodemsg", (data) => {
  125. if (data.msg.length > 9) {
  126. uni.navigateTo({
  127. url: "/pages/detail/index?luggageNum=" + data.msg
  128. // url: "/pages/detail/index?luggageNum=3999483183"
  129. })
  130. }
  131. });
  132. if (this.$storage.get('airport')) {
  133. this.index = this.$storage.get('airport')
  134. }
  135. if (this.$storage.get('flightDate')) {
  136. this.flightDate = this.$storage.get('flightDate')
  137. }
  138. if (this.$storage.getJson('searchData')) {
  139. this.flightDetail = this.$storage.getJson('searchData')
  140. this.flightNO = this.flightDetail.carrierFlights
  141. this.searchFlightNo = this.flightDetail.carrierFlights
  142. this.flightDate = this.flightDetail.carrierFlightsDate
  143. // this.getFlightData()
  144. }
  145. },
  146. onHide() {
  147. uni.$off("scancodemsg");
  148. },
  149. mounted() {
  150. this.datatime()
  151. },
  152. beforeDestroy() {
  153. // console.log(this.arr[0],this.arr[1])
  154. },
  155. components: {
  156. Nav
  157. },
  158. methods: {
  159. clear(){
  160. this.$storage.remove('searchData')
  161. this.flightDetail = null
  162. this.flightNO = null
  163. this.searchFlightNo = ""
  164. this.flightDate = null
  165. },
  166. datatime() {
  167. setInterval(() => {
  168. this.newDataday = Format("yyyy/MM/dd", new Date());
  169. this.newData = Format("hh:mm", new Date());
  170. }, 1000);
  171. },
  172. clickOrder(data) {
  173. if(data == "extract"){//提取
  174. uni.navigateTo({
  175. url: "/pages/extract/index"
  176. })
  177. }
  178. else if(data == "abnormal"){//异常行李
  179. uni.navigateTo({
  180. url: "/pages/abnormal/index?airport="+this.airportName
  181. })
  182. }
  183. else{
  184. uni.navigateTo({
  185. url: "/pages/sorting/index?item=" + data +"&flightNO="+this.flightNO+"&date="+this.flightDate
  186. })
  187. }
  188. }
  189. },
  190. }
  191. </script>
  192. <style lang="scss" scoped>
  193. .app-content {
  194. position: relative;
  195. >.tuku {
  196. position: absolute;
  197. z-index: -1;
  198. width: 100%;
  199. top: 0;
  200. }
  201. >.fight {
  202. padding: 0 1.75rem 0 1.75rem;
  203. // height: 3.75rem;
  204. display: flex;
  205. align-items: center;
  206. justify-content: space-around;
  207. margin-top: 1.375rem;
  208. .fight_center{
  209. width: 3rem;
  210. display: flex;
  211. flex-direction: column;
  212. align-items: center;
  213. justify-content: center;
  214. color: rgb(255, 255, 255);
  215. font-family: Noto Sans SC;
  216. font-size: 16px;
  217. line-height: 24px;
  218. font-weight: 700;
  219. >.aircraft {
  220. width: 1.75rem;
  221. height: 1.75rem;
  222. background: url('../../static/hang.png') no-repeat;
  223. background-size: 100% 100%;
  224. }
  225. }
  226. >.fight_card {
  227. display: flex;
  228. flex-direction: column;
  229. align-items: start;
  230. justify-content: center;
  231. >p {
  232. color: rgb(255, 255, 255);
  233. font-family: Noto Sans SC;
  234. font-size: 16px;
  235. line-height: 24px;
  236. font-weight: 700;
  237. }
  238. >span {
  239. color: rgb(255, 255, 255);
  240. font-family: Noto Sans SC;
  241. font-size: 11px;
  242. font-weight: 500;
  243. }
  244. }
  245. }
  246. >.times {
  247. width: 100%;
  248. height: 2.6875rem;
  249. display: flex;
  250. align-items: center;
  251. justify-content: center;
  252. color: rgb(255, 255, 255);
  253. font-family: Noto Sans SC;
  254. font-size: 18px;
  255. font-weight: 700;
  256. margin-top: 10px;
  257. p {
  258. margin-right: .625rem;
  259. }
  260. }
  261. .content {
  262. padding: 0 1.5rem 0 1.5rem;
  263. display: flex;
  264. justify-content: space-around;
  265. flex-wrap: wrap;
  266. .card {
  267. width: 7.5rem;
  268. height: 5.5rem;
  269. /* 卡片渐变 */
  270. background: linear-gradient(188.06deg, rgba(65.49, 109.04, 128.64, 1.00) 3.551%, rgba(38, 68.32, 81.96, 1.00) 110.878%);
  271. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  272. border-radius: 4px;
  273. margin-bottom: 2rem;
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: center;
  277. align-items: center;
  278. >p {
  279. color: rgb(255, 255, 255);
  280. font-family: Noto Sans SC;
  281. font-size: 18px;
  282. font-weight: 700;
  283. margin-bottom: .375rem;
  284. line-height: 1.6875rem;
  285. }
  286. >span {
  287. color: rgb(255, 255, 255);
  288. font-family: Noto Sans SC;
  289. font-size: 13px;
  290. font-weight: 500;
  291. line-height: 1.1875rem;
  292. }
  293. }
  294. .card_no {
  295. width: 7.5rem;
  296. height: 7.5rem;
  297. }
  298. }
  299. }
  300. </style>