index.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. <template>
  2. <view class="app-content">
  3. <!-- <img src="../../static/beijing.png" alt="" class="tuku"> -->
  4. <Navs :navname.sync="navname" @fall="fall"></Navs>
  5. <view class="content">
  6. <view class="content_bootom" style="top:0">
  7. <scroll-view scroll-y="true" class="scroll-Y">
  8. <view class="up" v-for="(item, index) in listdata" :key="index">
  9. <view class="list" @tap="toDetail(item.luggageNum)">
  10. <p>行李编号:{{ item.luggageNum }}</p>
  11. </view>
  12. <view :class="item.exception_type != null?'error':'normal'">{{item.exception_type!=null?item.exception_name:"正常"}}</view>
  13. </view>
  14. </scroll-view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import Navs from '../../components/header/navs.vue'
  21. export default {
  22. data() {
  23. return {
  24. isShow: true,
  25. navname: '异常行李',
  26. action: true,
  27. listdata:[],
  28. exceptionList:[
  29. {
  30. "type":null,
  31. "name":"非异常行李"
  32. },
  33. {
  34. "type":"DPR",
  35. "name":"破损"
  36. },
  37. {
  38. "type":"AHL",
  39. "name":"少收"
  40. },
  41. {
  42. "type":"OHD",
  43. "name":"多收"
  44. }
  45. ],
  46. exceptionNameList:["非异常行李","破损","少收","多收"],
  47. airport:null
  48. }
  49. },
  50. created(option) {},
  51. onLoad(option) {
  52. this.airport = this.$storage.get("airportName")
  53. this.getluggageList(this.airport)
  54. },
  55. onUnload() {
  56. uni.$off("scancodemsg");
  57. },
  58. onShow() {
  59. if(this.airport){
  60. this.getluggageList(this.airport)
  61. }
  62. uni.$on("scancodemsg", (data) => {
  63. if (data.msg.length > 9) {
  64. uni.navigateTo({
  65. url: "/pages/baggagecheck/index?luggageNum="+data.msg
  66. })
  67. }
  68. });
  69. },
  70. onHide() {
  71. uni.$off("scancodemsg");
  72. },
  73. mounted() {
  74. },
  75. computed: {
  76. },
  77. components: {
  78. Navs,
  79. },
  80. methods: {
  81. async getluggageList(airport){
  82. let data = {
  83. "serviceId": 3006,
  84. "dataContent": [{
  85. "outAirport": airport
  86. }],
  87. "event": "0"
  88. }
  89. await this.$http.httpPost('/openApi/query', data).then(res => {
  90. console.log(res)
  91. if (res.code == "0") {
  92. res.returnData.map(item => {
  93. this.exceptionList.map(item2 => {
  94. if(item.exception_type == item2.type){
  95. item["exception_name"] = item2.name
  96. }
  97. })
  98. })
  99. this.listdata = res.returnData;
  100. }
  101. })
  102. },
  103. toDetail(luggageNum){
  104. this.currentLuggageNum = luggageNum;
  105. uni.navigateTo({
  106. url: "/pages/detail/index?luggageNum="+this.currentLuggageNum
  107. })
  108. },
  109. fall() {
  110. uni.navigateBack({
  111. delta:1
  112. })
  113. }
  114. },
  115. }
  116. </script>
  117. <style lang="scss" scoped>
  118. .app-content {
  119. position: relative;
  120. background: rgb(49, 85, 99);
  121. >.content {
  122. width: 100%;
  123. height: calc(100vh - 5.375rem);
  124. position: relative;
  125. // overflow: hidden;
  126. // background: rgb(49, 85, 99);
  127. >.content_top {
  128. width: 100%;
  129. // background: rgb(49, 85, 99);
  130. padding-bottom: 1.3125rem;
  131. >.craid {
  132. // width: 100%;
  133. height: 5.625rem;
  134. padding: 0 2.5625rem 0 2.5625rem;
  135. display: flex;
  136. justify-content: space-between;
  137. flex-wrap: wrap;
  138. align-items: center;
  139. >.craid_data {
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: center;
  143. align-items: start;
  144. >p {
  145. color: rgb(255, 255, 255);
  146. font-family: Noto Sans SC;
  147. font-size: 18px;
  148. font-weight: 700;
  149. }
  150. >span {
  151. color: rgb(255, 255, 255);
  152. font-family: Noto Sans SC;
  153. font-size: 13px;
  154. font-weight: 500;
  155. }
  156. }
  157. >.aircraft {
  158. width: 1.75rem;
  159. height: 1.75rem;
  160. background: url('../../static/hang.png') no-repeat;
  161. background-size: 100% 100%;
  162. }
  163. }
  164. >.scanning {
  165. height: 12rem;
  166. padding: 0 1.5rem 0 1.5rem;
  167. opacity: 1;
  168. transition: all 3s;
  169. .scanning_cd {
  170. width: 100%;
  171. height: 3rem;
  172. opacity: 1;
  173. transition: all 3s;
  174. background: rgb(59, 103, 123);
  175. margin-top: 1rem;
  176. margin-bottom: .5rem;
  177. border-radius: 4px;
  178. display: flex;
  179. justify-content: center;
  180. align-items: center;
  181. color: rgb(255, 255, 255);
  182. font-family: Noto Sans SC;
  183. font-size: 16px;
  184. >.log {
  185. width: .875rem;
  186. height: .875rem;
  187. background: url('../../static/saoma.png') no-repeat;
  188. background-size: 100% 100%;
  189. margin-left: 1rem;
  190. }
  191. >.log_l {
  192. width: .125rem;
  193. height: 1.3125rem;
  194. margin-left: 4rem;
  195. background: rgb(255, 255, 255);
  196. }
  197. }
  198. .scanning_cds {
  199. width: 100%;
  200. height: 3rem;
  201. opacity: 1;
  202. transition: all 3s;
  203. background: rgb(51, 161, 165);
  204. margin-top: 1rem;
  205. margin-bottom: .5rem;
  206. border-radius: 4px;
  207. display: flex;
  208. justify-content: center;
  209. align-items: center;
  210. color: rgb(255, 255, 255);
  211. font-family: Noto Sans SC;
  212. font-size: 16px;
  213. >.log {
  214. width: .875rem;
  215. height: .875rem;
  216. background: url('../../static/saoma.png') no-repeat;
  217. background-size: 100% 100%;
  218. margin-left: 1rem;
  219. }
  220. >.log_l {
  221. width: .125rem;
  222. height: 1.3125rem;
  223. margin-left: 4rem;
  224. background: rgb(255, 255, 255);
  225. }
  226. }
  227. }
  228. }
  229. >.content_bootom {
  230. width: 100%;
  231. // height: calc(100vh - 20.9375rem - 4.375rem);
  232. padding-bottom: 0;
  233. position: absolute;
  234. bottom: 0;
  235. top: 20.75rem;
  236. // border-radius: 6px 6px 0px 0px;
  237. overflow: hidden;
  238. background: rgb(255, 255, 255);
  239. padding: 0 10px;
  240. box-sizing: border-box;
  241. .up {
  242. width: 100%;
  243. display: flex;
  244. align-items: center;
  245. justify-content: space-between;
  246. margin-left: 1rem;
  247. border-bottom: 1px solid rgb(238, 238, 238);
  248. // transform: all 3s;
  249. >.down_up {
  250. width: .875rem;
  251. height: .875rem;
  252. background: url('../../static/xia.png') no-repeat;
  253. background-size: 100% 100%;
  254. }
  255. >.error{
  256. width: 60px;
  257. color:red
  258. }
  259. >.normal{
  260. width: 60px;
  261. color:#4682b4
  262. }
  263. >.list {
  264. width: 70%;
  265. position: relative;
  266. height: 3.75rem;
  267. display: flex;
  268. align-items: center;
  269. transform: all 3s;
  270. right: 0;
  271. color: rgb(0, 0, 0);
  272. font-family: Noto Sans SC;
  273. font-size: 13px;
  274. font-weight: 500;
  275. }
  276. >.delete {
  277. width: 3.75rem;
  278. height: 3.75rem;
  279. background: rgb(237, 101, 101);
  280. display: flex;
  281. align-items: center;
  282. justify-content: center;
  283. position: relative;
  284. right: -3.75rem;
  285. transform: all 3s;
  286. >.log {
  287. width: .875rem;
  288. height: .875rem;
  289. background: url('../../static/vector@1x.png') no-repeat;
  290. background-size: 100% 100%;
  291. }
  292. }
  293. }
  294. .scroll-Y {
  295. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  296. height: calc(100% - 2.5rem - 2.75rem);
  297. }
  298. .but {
  299. width: 20.5625rem;
  300. height: 2.5rem;
  301. 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%);
  302. border-radius: .25rem;
  303. color: rgb(255, 255, 255);
  304. font-family: Noto Sans SC;
  305. font-size: 1rem;
  306. margin: 0 auto;
  307. display: flex;
  308. align-items: center;
  309. justify-content: center;
  310. margin-top: 0.25rem;
  311. margin-bottom: 2.25rem;
  312. }
  313. }
  314. }
  315. }
  316. </style>