index.vue 9.1 KB

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