index.vue 7.3 KB

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