index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. <template>
  2. <view class="app-content">
  3. <!-- <img src="../../static/beijing.png" alt="" class="tuku"> -->
  4. <Navs :navname="navname" @fall="fall"></Navs>
  5. <view class="content">
  6. <view class="content_top">
  7. <view class="craid" v-if="cap">
  8. <view class="craid_data">
  9. <p>{{cap.carrierFlights}}</p>
  10. <span>{{cap.carrierFlightsDate}}</span>
  11. </view>
  12. <view class="craid_data">
  13. <p>{{cap.outAirport}}</p>
  14. <!-- <span>{{cap.time2}}</span> -->
  15. </view>
  16. <view class="aircraft"></view>
  17. <view class="craid_data">
  18. <p>{{cap.landAirport}}</p>
  19. <!-- <span>{{cap.time3}}</span> -->
  20. </view>
  21. </view>
  22. <view class="craids" v-if="!cap">
  23. <p>暂无航班信息</p>
  24. </view>
  25. <view class="scanning">
  26. <view class="scanning_cd">
  27. <input class="input" v-model.trim="capluggageNum" disabled type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;" placeholder="请扫描机票信息"/>
  28. <view class="log_l"></view>
  29. <view class="log" @tap="scan('1')"></view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="content_top">
  34. <view class="craid" v-if="caps">
  35. <view class="craid_data">
  36. <p>{{caps.carrierFlights}}</p>
  37. <span>{{caps.carrierFlightsDate}}</span>
  38. </view>
  39. <view class="craid_data">
  40. <p>{{caps.outAirport}}</p>
  41. <!-- <span>{{caps.time2}}</span> -->
  42. </view>
  43. <view class="aircraft"></view>
  44. <view class="craid_data">
  45. <p>{{caps.landAirport}}</p>
  46. <!-- <span>{{caps.time3}}</span> -->
  47. </view>
  48. </view>
  49. <view class="craids" v-if="!caps">
  50. <p>暂无航班信息</p>
  51. </view>
  52. <view class="scanning">
  53. <view class="scanning_cd">
  54. <input class="input" v-model.trim="capsluggageNum" disabled type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;" placeholder="请扫描行李牌号"/>
  55. <view class="log_l"></view>
  56. <view class="log" @tap="scan('2')"></view>
  57. </view>
  58. <view class="gao" v-if="!isMatch">*行李信息不一致,请上报处理</view>
  59. </view>
  60. </view>
  61. <view class="footer">
  62. <button form-type="submit" class="switchBtndel" @tap="abnormal()">异常处理</button>
  63. <button form-type="submit" class="btnyes" v-if="isSend" @tap="sendData()">确认提取</button>
  64. </view>
  65. </view>
  66. </view>
  67. </template>
  68. <script>
  69. import Navs from '../../components/header/navs.vue'
  70. import maskModel from '../../components/mask-model/mask-model.vue'
  71. import {
  72. Format
  73. } from '@/components/utils/validate'
  74. export default {
  75. data() {
  76. return {
  77. isShow: true,
  78. input: '',
  79. navname: '提取',
  80. cap:null,
  81. caps:null,
  82. luggageNum:null,
  83. capluggageNum:null,
  84. capsluggageNum:null,
  85. isMatch:true,
  86. isSend:false,
  87. }
  88. },
  89. created(option) {
  90. },
  91. onLoad(option){
  92. // this.navname = JSON.parse(decodeURIComponent(option.item))
  93. // if (this.navname == '分拣') {
  94. // this.tabname = '航班'
  95. // }
  96. },
  97. onUnload() {
  98. uni.$off("scancodemsg");
  99. },
  100. onShow() {
  101. uni.$on("scancodemsg", (data) => {
  102. if (data.msg.length > 9) {
  103. this.luggageNum = data.msg.trim()
  104. // this.luggageNum = 3784730658
  105. this.getDetial(this.luggageNum)
  106. }
  107. });
  108. },
  109. onHide() {
  110. uni.$off("scancodemsg");
  111. },
  112. mounted() {
  113. // this.$refs.showMask.show();
  114. // console.log(this.stratvalue.length)
  115. },
  116. computed: {
  117. // getFooterClass () {
  118. // return this.cap.luggageNum ? 'scanning_cds' : 'scanning_cd'
  119. // },
  120. // getlooterClasser () {
  121. // return this.caps.luggageNum ? 'scanning_cds' : 'scanning_cd'
  122. // }
  123. },
  124. components: {
  125. Navs,
  126. maskModel:maskModel,
  127. },
  128. methods: {
  129. scan(type){
  130. let that = this
  131. uni.scanCode({
  132. onlyFromCamera: true,
  133. success: function (res) {
  134. that.luggageNum = Number(res.result)
  135. // this.luggageNum = 3784730658
  136. that.getDetial(Number(res.result))
  137. }
  138. });
  139. },
  140. datatime() {
  141. let dataTime = Format("yyyy-MM-dd hh:mm:ss", new Date());
  142. return dataTime
  143. },
  144. async getDetial(num) {
  145. let data = {
  146. "serviceId": 3002,
  147. "page": 1,
  148. "pageSize": 1,
  149. "dataContent": {
  150. "luggageNum": num, //行李号
  151. },
  152. "event": "0"
  153. }
  154. await this.$http.httpPost('/openApi/query', data).then(res => {
  155. if (res.code == "0" && res.returnData.length>0) {
  156. if(!this.cap){
  157. this.cap = res.returnData[0]
  158. this.capluggageNum = this.luggageNum
  159. }
  160. else if(this.cap&&!this.caps){
  161. this.caps = res.returnData[0]
  162. this.capsluggageNum = this.luggageNum
  163. }
  164. else if(this.cap&&this.caps){
  165. this.cap = null
  166. this.caps = null
  167. this.capluggageNum = null
  168. this.capsluggageNum = null
  169. this.cap = res.returnData[0]
  170. this.capluggageNum = this.luggageNum
  171. this.isSend = false
  172. }
  173. if(this.caps.luggageNum == this.cap.luggageNum){
  174. this.isSend = true
  175. this.isMatch = true
  176. }
  177. if(!this.caps){
  178. this.isSend = false
  179. this.isMatch = true
  180. }
  181. if(this.caps&&this.caps.luggageNum != this.cap.luggageNum){
  182. this.isSend = false
  183. this.isMatch = false
  184. }
  185. }
  186. else{
  187. this.$scanAudio.src = "../../static/hqxl.mp3"
  188. this.$scanAudio.play()
  189. uni.showToast({
  190. icon:'none',
  191. title: "未查询到该行李信息",
  192. duration: 5000
  193. });
  194. }
  195. })
  196. },
  197. async sendData(){
  198. this.caps.nodeCode = "extract"
  199. this.caps.nodeName = "提取"
  200. this.caps.processing_time = this.datatime();
  201. this.caps.sourceAirport = this.$storage.get('airportName');
  202. this.caps.ID = null;
  203. this.caps.dataType = "BPM";
  204. this.caps.agentNumber = this.$storage.getJson("users").user_name;
  205. this.caps.device_ID = uni.getDeviceInfo().deviceId;
  206. let data = {
  207. "serviceId": 3005,
  208. "dataContent": [
  209. this.caps
  210. ],
  211. "event": "0"
  212. }
  213. await this.$http.httpPost('/openApi/query', data).then(res => {
  214. if (res.code == "0") {
  215. uni.showToast({
  216. icon:'none',
  217. title: "操作提取成功",
  218. duration: 5000
  219. });
  220. }
  221. else{
  222. this.$scanAudio.src = "../../static/czsb.mp3"
  223. this.$scanAudio.play()
  224. uni.showToast({
  225. icon:'none',
  226. title: "操作失败",
  227. duration: 5000
  228. });
  229. }
  230. })
  231. },
  232. abnormal(){
  233. if(this.luggageNum){
  234. uni.navigateTo({
  235. url: "/pages/baggagecheck/index?luggageNum="+this.luggageNum
  236. })
  237. }
  238. else{
  239. uni.navigateTo({
  240. url: "/pages/baggagecheck/index?luggageNum="
  241. })
  242. }
  243. },
  244. fall () {
  245. uni.switchTab({
  246. url: "/pages/index/index"
  247. })
  248. }
  249. },
  250. }
  251. </script>
  252. <style lang="scss" scoped>
  253. .app-content{
  254. position: relative;
  255. background: rgb(49, 85, 99);
  256. >.content{
  257. width: 100%;
  258. height: calc(100vh - 4.625rem);
  259. position: relative;
  260. // overflow: hidden;
  261. // background: rgb(49, 85, 99);
  262. >.content_top{
  263. width: 100%;
  264. // background: rgb(49, 85, 99);
  265. padding-bottom: 1.3125rem;
  266. >.craid{
  267. // width: 100%;
  268. height: 5.625rem;
  269. padding: 0 2.5625rem 0 2.5625rem;
  270. display: flex;
  271. justify-content: space-between;
  272. flex-wrap: wrap;
  273. align-items: center;
  274. >.craid_data{
  275. display: flex;
  276. flex-direction: column;
  277. justify-content: center;
  278. align-items: start;
  279. >p{
  280. color: rgb(255, 255, 255);
  281. font-family: Noto Sans SC;
  282. font-size: 18px;
  283. font-weight: 700;
  284. }
  285. >span{
  286. color: rgb(255, 255, 255);
  287. font-family: Noto Sans SC;
  288. font-size: 13px;
  289. font-weight: 500;
  290. }
  291. }
  292. >.aircraft{
  293. width: 1.75rem;
  294. height: 1.75rem;
  295. background: url('../../static/hang.png') no-repeat;
  296. background-size: 100% 100%;
  297. }
  298. }
  299. >.craids{
  300. height: 5.625rem;
  301. padding: 0 2.5625rem 0 2.5625rem;
  302. display: flex;
  303. justify-content: center;
  304. align-items: center;
  305. >p{
  306. color: rgb(189, 214, 231);
  307. font-family: Noto Sans SC;
  308. font-size: 13px;
  309. font-weight: 500;
  310. }
  311. }
  312. >.scanning{
  313. // height: 12rem;
  314. padding: 0 1.5rem 0 1.5rem;
  315. opacity: 1;
  316. transition: all 3s;
  317. >.gao{
  318. color: yellow;
  319. }
  320. .scanning_cd{
  321. width: 100%;
  322. height: 3rem;
  323. opacity: 1;
  324. transition: all 3s;
  325. background: rgb(59, 103, 123);
  326. margin-top: 1rem;
  327. margin-bottom: .5rem;
  328. border-radius: 4px;
  329. display: flex;
  330. justify-content: center;
  331. align-items: center;
  332. color: rgb(255, 255, 255);
  333. font-family: Noto Sans SC;
  334. font-size: 16px;
  335. >.log{
  336. width: .875rem;
  337. height: .875rem;
  338. background: url('../../static/saoma.png') no-repeat;
  339. background-size: 100% 100%;
  340. margin-left: 1rem;
  341. }
  342. >.log_l{
  343. width: .125rem;
  344. height: 1.3125rem;
  345. margin-left: 4rem;
  346. background: rgb(255, 255, 255);
  347. }
  348. }
  349. .scanning_cds{
  350. width: 100%;
  351. height: 3rem;
  352. opacity: 1;
  353. transition: all 3s;
  354. background: rgb(51, 161, 165);
  355. margin-top: 1rem;
  356. margin-bottom: .5rem;
  357. border-radius: 4px;
  358. display: flex;
  359. justify-content: center;
  360. align-items: center;
  361. color: rgb(255, 255, 255);
  362. font-family: Noto Sans SC;
  363. font-size: 16px;
  364. >.log{
  365. width: .875rem;
  366. height: .875rem;
  367. background: url('../../static/saoma.png') no-repeat;
  368. background-size: 100% 100%;
  369. margin-left: 1rem;
  370. }
  371. >.log_l{
  372. width: .125rem;
  373. height: 1.3125rem;
  374. margin-left: 4rem;
  375. background: rgb(255, 255, 255);
  376. }
  377. }
  378. }
  379. }
  380. >.content_bootom{
  381. width: 100%;
  382. // height: calc(100vh - 20.9375rem - 4.375rem);
  383. padding-bottom: 0;
  384. position: absolute;
  385. bottom: 0;
  386. top: 20.75rem;
  387. border-radius: 6px 6px 0px 0px;
  388. overflow: hidden;
  389. background: rgb(255, 255, 255);
  390. >.choice{
  391. width: 100%;
  392. height: 2.5rem;
  393. display: flex;
  394. background: rgb(240, 241, 243);
  395. >.handle{
  396. width: 50%;
  397. display: flex;
  398. align-items: center;
  399. justify-content: center;
  400. color: rgb(0, 0, 0);
  401. font-family: Noto Sans SC;
  402. font-size: 15px;
  403. font-weight: 700;
  404. border-radius: 6px 6px 0px 0px;
  405. background: rgb(255, 255, 255);
  406. }
  407. >.handles{
  408. width: 50%;
  409. display: flex;
  410. align-items: center;
  411. justify-content: center;
  412. color: rgb(0, 0, 0);
  413. font-family: Noto Sans SC;
  414. font-size: 15px;
  415. font-weight: 700;
  416. }
  417. }
  418. .up{
  419. width: 100%;
  420. display: flex;
  421. align-items: center;
  422. margin-left: 1rem;
  423. border-bottom: 1px solid rgb(238, 238, 238);
  424. // transform: all 3s;
  425. >.down_up{
  426. width: .875rem;
  427. height: .875rem;
  428. background: url('../../static/xia.png') no-repeat;
  429. background-size: 100% 100%;
  430. }
  431. >.list{
  432. width: 97%;
  433. position: relative;
  434. height: 3.75rem;
  435. display: flex;
  436. align-items: center;
  437. transform: all 3s;
  438. right: 0;
  439. color: rgb(0, 0, 0);
  440. font-family: Noto Sans SC;
  441. font-size: 13px;
  442. font-weight: 500;
  443. }
  444. >.delete{
  445. width: 3.75rem;
  446. height: 3.75rem;
  447. background: rgb(237, 101, 101);
  448. display: flex;
  449. align-items: center;
  450. justify-content: center;
  451. position: relative;
  452. right: -3.75rem;
  453. transform: all 3s;
  454. >.log{
  455. width: .875rem;
  456. height: .875rem;
  457. background: url('../../static/vector@1x.png') no-repeat;
  458. background-size: 100% 100%;
  459. }
  460. }
  461. }
  462. .ups{
  463. width: 100%;
  464. display: flex;
  465. align-items: center;
  466. margin-left: 1rem;
  467. border-bottom: 1px solid rgb(238, 238, 238);
  468. // transform: all 3s;
  469. >.down_up{
  470. width: .875rem;
  471. height: .875rem;
  472. position: relative;
  473. right: 1.875rem;
  474. background: url('../../static/xia.png') no-repeat;
  475. background-size: 100% 100%;
  476. }
  477. >.list{
  478. width: 97%;
  479. position: relative;
  480. height: 3.75rem;
  481. display: flex;
  482. align-items: center;
  483. right: 3.75rem;
  484. // right: 0;
  485. color: rgb(0, 0, 0);
  486. font-family: Noto Sans SC;
  487. font-size: 13px;
  488. font-weight: 500;
  489. transform: all 3s;
  490. }
  491. >.delete{
  492. width: 3.75rem;
  493. height: 3.75rem;
  494. background: rgb(237, 101, 101);
  495. display: flex;
  496. align-items: center;
  497. justify-content: center;
  498. position: relative;
  499. right: 1rem;
  500. transform: all 3s;
  501. // right: -3.75rem;
  502. >.log{
  503. width: .875rem;
  504. height: .875rem;
  505. background: url('../../static/vector@1x.png') no-repeat;
  506. background-size: 100% 100%;
  507. }
  508. }
  509. }
  510. .scroll-Y {
  511. height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  512. }
  513. .but{
  514. width: 20.5625rem;
  515. height: 2.75rem;
  516. 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%);
  517. border-radius: .25rem;
  518. color: rgb(255, 255, 255);
  519. font-family: Noto Sans SC;
  520. font-size: 1rem;
  521. margin: 0 auto;
  522. display: flex;
  523. align-items: center;
  524. justify-content: center;
  525. margin-top: 2.25rem;
  526. margin-bottom: 2.25rem;
  527. }
  528. }
  529. >.footer{
  530. width: 100%;
  531. height: 7.4375rem;
  532. position: absolute;
  533. bottom: 0;
  534. display: flex;
  535. align-items: center;
  536. justify-content: center;
  537. >.switchBtndel{
  538. width: 9.4375rem;
  539. height: 2.75rem;
  540. box-sizing: border-box;
  541. background: rgb(243, 253, 255);
  542. border: 1px solid rgb(172, 218, 230);
  543. border-radius:
  544. 4px;
  545. color: rgb(59, 150, 159);
  546. font-family: Noto Sans SC;
  547. font-size: 16px;
  548. font-weight: 700;
  549. }
  550. >.btnyes{
  551. width: 9.4375rem;
  552. height: 2.75rem;
  553. 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%);
  554. border-radius:
  555. 4px;
  556. color: rgb(255, 255, 255);
  557. font-family: Noto Sans SC;
  558. font-size: 16px;
  559. font-weight: 700;
  560. }
  561. >.unbtnyes{
  562. width: 9.4375rem;
  563. height: 2.75rem;
  564. background: rgb(126, 138, 143);
  565. border-radius:
  566. 4px;
  567. color: rgb(255, 255, 255);
  568. font-family: Noto Sans SC;
  569. font-size: 16px;
  570. font-weight: 700;
  571. }
  572. }
  573. }
  574. }
  575. </style>