index.vue 8.5 KB

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