index.vue 5.8 KB

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