index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  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.flightNo}}</p>
  10. <span>{{cap.flightDate}}</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.flightNo}}</p>
  37. <span>{{caps.flightDate}}</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. // this.$refs.showMask.show();
  99. },
  100. onShow() {
  101. uni.$on("scancodemsg", (data) => {
  102. if (data.msg.length > 9) {
  103. this.luggageNum = Number(data.msg)
  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. }
  172. if(this.caps.luggageNum == this.cap.luggageNum){
  173. this.isSend = true
  174. this.isMatch = true
  175. }
  176. if(!this.caps){
  177. this.isSend = false
  178. this.isMatch = true
  179. }
  180. if(this.caps&&this.caps.luggageNum != this.cap.luggageNum){
  181. this.isSend = false
  182. this.isMatch = true
  183. }
  184. }
  185. else{
  186. uni.showToast({
  187. icon:'none',
  188. title: "未查询到该行李信息",
  189. duration: 5000
  190. });
  191. }
  192. })
  193. },
  194. async sendData(){
  195. this.caps.nodeCode = "extract"
  196. this.caps.processing_time = this.datatime();
  197. this.caps.sourceAirport = this.$storage.get('airportName');
  198. let data = {
  199. "serviceId": 3005,
  200. "dataContent": [
  201. this.caps
  202. ],
  203. "event": "0"
  204. }
  205. await this.$http.httpPost('/openApi/query', data).then(res => {
  206. if (res.code == "0") {
  207. uni.showToast({
  208. icon:'none',
  209. title: "操作提取成功",
  210. duration: 5000
  211. });
  212. }
  213. else{
  214. uni.showToast({
  215. icon:'none',
  216. title: "操作失败",
  217. duration: 5000
  218. });
  219. }
  220. })
  221. },
  222. abnormal(){
  223. if(this.luggageNum){
  224. uni.navigateTo({
  225. url: "/pages/baggagecheck/index?luggageNum="+this.luggageNum
  226. })
  227. }
  228. else{
  229. uni.navigateTo({
  230. url: "/pages/baggagecheck/index?luggageNum="
  231. })
  232. }
  233. },
  234. fall () {
  235. uni.switchTab({
  236. url: "/pages/index/index"
  237. })
  238. }
  239. },
  240. }
  241. </script>
  242. <style lang="scss" scoped>
  243. .app-content{
  244. position: relative;
  245. background: rgb(49, 85, 99);
  246. >.content{
  247. width: 100%;
  248. height: calc(100vh - 4.625rem);
  249. position: relative;
  250. // overflow: hidden;
  251. // background: rgb(49, 85, 99);
  252. >.content_top{
  253. width: 100%;
  254. // background: rgb(49, 85, 99);
  255. padding-bottom: 1.3125rem;
  256. >.craid{
  257. // width: 100%;
  258. height: 5.625rem;
  259. padding: 0 2.5625rem 0 2.5625rem;
  260. display: flex;
  261. justify-content: space-between;
  262. flex-wrap: wrap;
  263. align-items: center;
  264. >.craid_data{
  265. display: flex;
  266. flex-direction: column;
  267. justify-content: center;
  268. align-items: start;
  269. >p{
  270. color: rgb(255, 255, 255);
  271. font-family: Noto Sans SC;
  272. font-size: 18px;
  273. font-weight: 700;
  274. }
  275. >span{
  276. color: rgb(255, 255, 255);
  277. font-family: Noto Sans SC;
  278. font-size: 13px;
  279. font-weight: 500;
  280. }
  281. }
  282. >.aircraft{
  283. width: 1.75rem;
  284. height: 1.75rem;
  285. background: url('../../static/hang.png') no-repeat;
  286. background-size: 100% 100%;
  287. }
  288. }
  289. >.craids{
  290. height: 5.625rem;
  291. padding: 0 2.5625rem 0 2.5625rem;
  292. display: flex;
  293. justify-content: center;
  294. align-items: center;
  295. >p{
  296. color: rgb(189, 214, 231);
  297. font-family: Noto Sans SC;
  298. font-size: 13px;
  299. font-weight: 500;
  300. }
  301. }
  302. >.scanning{
  303. // height: 12rem;
  304. padding: 0 1.5rem 0 1.5rem;
  305. opacity: 1;
  306. transition: all 3s;
  307. >.gao{
  308. color: yellow;
  309. }
  310. .scanning_cd{
  311. width: 100%;
  312. height: 3rem;
  313. opacity: 1;
  314. transition: all 3s;
  315. background: rgb(59, 103, 123);
  316. margin-top: 1rem;
  317. margin-bottom: .5rem;
  318. border-radius: 4px;
  319. display: flex;
  320. justify-content: center;
  321. align-items: center;
  322. color: rgb(255, 255, 255);
  323. font-family: Noto Sans SC;
  324. font-size: 16px;
  325. >.log{
  326. width: .875rem;
  327. height: .875rem;
  328. background: url('../../static/saoma.png') no-repeat;
  329. background-size: 100% 100%;
  330. margin-left: 1rem;
  331. }
  332. >.log_l{
  333. width: .125rem;
  334. height: 1.3125rem;
  335. margin-left: 4rem;
  336. background: rgb(255, 255, 255);
  337. }
  338. }
  339. .scanning_cds{
  340. width: 100%;
  341. height: 3rem;
  342. opacity: 1;
  343. transition: all 3s;
  344. background: rgb(51, 161, 165);
  345. margin-top: 1rem;
  346. margin-bottom: .5rem;
  347. border-radius: 4px;
  348. display: flex;
  349. justify-content: center;
  350. align-items: center;
  351. color: rgb(255, 255, 255);
  352. font-family: Noto Sans SC;
  353. font-size: 16px;
  354. >.log{
  355. width: .875rem;
  356. height: .875rem;
  357. background: url('../../static/saoma.png') no-repeat;
  358. background-size: 100% 100%;
  359. margin-left: 1rem;
  360. }
  361. >.log_l{
  362. width: .125rem;
  363. height: 1.3125rem;
  364. margin-left: 4rem;
  365. background: rgb(255, 255, 255);
  366. }
  367. }
  368. }
  369. }
  370. >.content_bootom{
  371. width: 100%;
  372. // height: calc(100vh - 20.9375rem - 4.375rem);
  373. padding-bottom: 0;
  374. position: absolute;
  375. bottom: 0;
  376. top: 20.75rem;
  377. border-radius: 6px 6px 0px 0px;
  378. overflow: hidden;
  379. background: rgb(255, 255, 255);
  380. >.choice{
  381. width: 100%;
  382. height: 2.5rem;
  383. display: flex;
  384. background: rgb(240, 241, 243);
  385. >.handle{
  386. width: 50%;
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. color: rgb(0, 0, 0);
  391. font-family: Noto Sans SC;
  392. font-size: 15px;
  393. font-weight: 700;
  394. border-radius: 6px 6px 0px 0px;
  395. background: rgb(255, 255, 255);
  396. }
  397. >.handles{
  398. width: 50%;
  399. display: flex;
  400. align-items: center;
  401. justify-content: center;
  402. color: rgb(0, 0, 0);
  403. font-family: Noto Sans SC;
  404. font-size: 15px;
  405. font-weight: 700;
  406. }
  407. }
  408. .up{
  409. width: 100%;
  410. display: flex;
  411. align-items: center;
  412. margin-left: 1rem;
  413. border-bottom: 1px solid rgb(238, 238, 238);
  414. // transform: all 3s;
  415. >.down_up{
  416. width: .875rem;
  417. height: .875rem;
  418. background: url('../../static/xia.png') no-repeat;
  419. background-size: 100% 100%;
  420. }
  421. >.list{
  422. width: 97%;
  423. position: relative;
  424. height: 3.75rem;
  425. display: flex;
  426. align-items: center;
  427. transform: all 3s;
  428. right: 0;
  429. color: rgb(0, 0, 0);
  430. font-family: Noto Sans SC;
  431. font-size: 13px;
  432. font-weight: 500;
  433. }
  434. >.delete{
  435. width: 3.75rem;
  436. height: 3.75rem;
  437. background: rgb(237, 101, 101);
  438. display: flex;
  439. align-items: center;
  440. justify-content: center;
  441. position: relative;
  442. right: -3.75rem;
  443. transform: all 3s;
  444. >.log{
  445. width: .875rem;
  446. height: .875rem;
  447. background: url('../../static/vector@1x.png') no-repeat;
  448. background-size: 100% 100%;
  449. }
  450. }
  451. }
  452. .ups{
  453. width: 100%;
  454. display: flex;
  455. align-items: center;
  456. margin-left: 1rem;
  457. border-bottom: 1px solid rgb(238, 238, 238);
  458. // transform: all 3s;
  459. >.down_up{
  460. width: .875rem;
  461. height: .875rem;
  462. position: relative;
  463. right: 1.875rem;
  464. background: url('../../static/xia.png') no-repeat;
  465. background-size: 100% 100%;
  466. }
  467. >.list{
  468. width: 97%;
  469. position: relative;
  470. height: 3.75rem;
  471. display: flex;
  472. align-items: center;
  473. right: 3.75rem;
  474. // right: 0;
  475. color: rgb(0, 0, 0);
  476. font-family: Noto Sans SC;
  477. font-size: 13px;
  478. font-weight: 500;
  479. transform: all 3s;
  480. }
  481. >.delete{
  482. width: 3.75rem;
  483. height: 3.75rem;
  484. background: rgb(237, 101, 101);
  485. display: flex;
  486. align-items: center;
  487. justify-content: center;
  488. position: relative;
  489. right: 1rem;
  490. transform: all 3s;
  491. // right: -3.75rem;
  492. >.log{
  493. width: .875rem;
  494. height: .875rem;
  495. background: url('../../static/vector@1x.png') no-repeat;
  496. background-size: 100% 100%;
  497. }
  498. }
  499. }
  500. .scroll-Y {
  501. height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  502. }
  503. .but{
  504. width: 20.5625rem;
  505. height: 2.75rem;
  506. 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%);
  507. border-radius: .25rem;
  508. color: rgb(255, 255, 255);
  509. font-family: Noto Sans SC;
  510. font-size: 1rem;
  511. margin: 0 auto;
  512. display: flex;
  513. align-items: center;
  514. justify-content: center;
  515. margin-top: 2.25rem;
  516. margin-bottom: 2.25rem;
  517. }
  518. }
  519. >.footer{
  520. width: 100%;
  521. height: 7.4375rem;
  522. position: absolute;
  523. bottom: 0;
  524. display: flex;
  525. align-items: center;
  526. justify-content: center;
  527. >.switchBtndel{
  528. width: 9.4375rem;
  529. height: 2.75rem;
  530. box-sizing: border-box;
  531. background: rgb(243, 253, 255);
  532. border: 1px solid rgb(172, 218, 230);
  533. border-radius:
  534. 4px;
  535. color: rgb(59, 150, 159);
  536. font-family: Noto Sans SC;
  537. font-size: 16px;
  538. font-weight: 700;
  539. }
  540. >.btnyes{
  541. width: 9.4375rem;
  542. height: 2.75rem;
  543. 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%);
  544. border-radius:
  545. 4px;
  546. color: rgb(255, 255, 255);
  547. font-family: Noto Sans SC;
  548. font-size: 16px;
  549. font-weight: 700;
  550. }
  551. >.unbtnyes{
  552. width: 9.4375rem;
  553. height: 2.75rem;
  554. background: rgb(126, 138, 143);
  555. border-radius:
  556. 4px;
  557. color: rgb(255, 255, 255);
  558. font-family: Noto Sans SC;
  559. font-size: 16px;
  560. font-weight: 700;
  561. }
  562. }
  563. }
  564. }
  565. </style>