123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <template>
- <view class="app-content">
- <img :src="icon" alt="" class="tuku">
- <Nav :navname.sync="navname" :navtype="false" :index="index" @scan="scan"></Nav>
- <view class="fight" v-if="flightDetail">
- <view class="fight_card">
- <p>{{flightDetail.carrierFlights}}</p>
- <span>{{flightDetail.carrierFlightsDate}}</span>
- </view>
- <view class="fight_card">
- <p>{{flightDetail.outAirport}}</p>
- <span>{{flightDetail.scheduleTakeOffTime?flightDetail.scheduleTakeOffTime:"-"}}</span>
- </view>
- <view class="aircraft"></view>
- <view class="fight_card">
- <p>{{flightDetail.landAirport}}</p>
- <span>{{flightDetail.scheduleLandInTime?flightDetail.scheduleLandInTime:"-"}}</span>
- </view>
- </view>
- <view class="times">
- <p>{{ newData }}</p>{{ newDataday }}
- </view>
- <view class="content">
- <view class="card" @tap="clickOrder('SORT')">
- <p>分拣</p>
- </view>
- <view class="card" @tap="clickOrder('LOAD')">
- <p>装车</p>
- </view>
- <view class="card" @tap="clickOrder('INFL')">
- <p>装机</p>
- </view>
- <view class="card" @tap="clickOrder('UNLOAD')">
- <p>卸机</p>
- </view>
- <view class="card" @tap="clickOrder('ARRIVED')">
- <p>到达</p>
- </view>
- <view class="card" @tap="clickOrder('extract')">
- <p>提取</p>
- </view>
- <view class="card" @tap="clickOrder('abnormal')">
- <p>异常登记</p>
- </view>
- <view class="card_no">
- </view>
- </view>
- </view>
- </template>
- <script>
- import Nav from '../../components/header/nav.vue'
- import {
- Format
- } from '@/components/utils/validate'
- export default {
- data() {
- return {
- input: '',
- main: null,
- poll: null,
- filter: null,
- pusher: null,
- intentServer: null,
- timeShow: true,
- arr: [],
- navname: '首页',
- icon: 'static/beijing.png',
- newData: '',
- newDataday: '',
- index: 0,
- flightDetail: null,
- flightNO: null,
- airportName:null,
- flightDate:null
- }
- },
- created(option) {
- // this.arr = allScan(this.main,this.poll,this.filter)
- // startScan(this.arr[0],this.arr[1],this.arr[2])
- },
- onLoad(option) {
- },
- onUnload() {},
- onShow() {
- uni.$on("scancodemsg", (data) => {
- if (data.msg.length > 9) {
- uni.navigateTo({
- url: "/pages/detail/index?luggageNum=" + data.msg
- // url: "/pages/detail/index?luggageNum=3999483183"
- })
- }
- });
- if (this.$storage.get('airport')) {
- this.index = this.$storage.get('airport')
- }
- if (this.$storage.get('flightDate')) {
- this.flightDate = this.$storage.get('flightDate')
- }
- if (this.$storage.getJson('searchData')) {
- this.flightDetail = this.$storage.getJson('searchData')
- this.flightNO = this.flightDetail.carrierFlights
- this.flightDate = this.flightDetail.carrierFlightsDate
- // this.getFlightData()
- }
-
- },
- onHide() {
- uni.$off("scancodemsg");
- },
- mounted() {
- this.datatime()
- },
- beforeDestroy() {
- // console.log(this.arr[0],this.arr[1])
- },
- components: {
- Nav
- },
- methods: {
- scan(){
- uni.scanCode({
- onlyFromCamera: true,
- success: function (res) {
- if (res.result.length > 9) {
- uni.navigateTo({
- url: "/pages/detail/index?luggageNum=" + res.result
- })
- }
- }
- });
- },
- datatime() {
- setInterval(() => {
- this.newDataday = Format("yyyy/MM/dd", new Date());
- this.newData = Format("hh:mm", new Date());
- }, 1000);
- },
- clickOrder(data) {
- if(data == "extract"){//提取
- uni.navigateTo({
- url: "/pages/extract/index"
- })
- }
- else if(data == "abnormal"){//异常行李
- uni.navigateTo({
- url: "/pages/abnormal/index?airport="+this.airportName
- })
- }
- else{
- uni.navigateTo({
- url: "/pages/sorting/index?item=" + data +"&flightNO="+this.flightNO+"&date="+this.flightDate
- })
- }
-
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .app-content {
- position: relative;
- >.tuku {
- position: absolute;
- z-index: -1;
- width: 100%;
- top: 0;
- }
- >.fight {
- padding: 0 1.75rem 0 1.75rem;
- // height: 3.75rem;
- display: flex;
- align-items: center;
- justify-content: space-around;
- margin-top: 1.375rem;
- >.aircraft {
- width: 1.75rem;
- height: 1.75rem;
- background: url('../../static/hang.png') no-repeat;
- background-size: 100% 100%;
- }
- >.fight_card {
- display: flex;
- flex-direction: column;
- align-items: start;
- justify-content: center;
- >p {
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 16px;
- line-height: 24px;
- font-weight: 700;
- }
- >span {
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 11px;
- font-weight: 500;
- }
- }
- }
- >.times {
- width: 100%;
- height: 2.6875rem;
- display: flex;
- align-items: center;
- justify-content: center;
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 18px;
- font-weight: 700;
- p {
- margin-right: .625rem;
- }
- }
- .content {
- padding: 0 1.5rem 0 1.5rem;
- display: flex;
- justify-content: space-around;
- flex-wrap: wrap;
- .card {
- width: 7.5rem;
- height: 5.5rem;
- /* 卡片渐变 */
- background: linear-gradient(188.06deg, rgba(65.49, 109.04, 128.64, 1.00) 3.551%, rgba(38, 68.32, 81.96, 1.00) 110.878%);
- box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
- border-radius: 4px;
- margin-bottom: 2rem;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- >p {
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 18px;
- font-weight: 700;
- margin-bottom: .375rem;
- line-height: 1.6875rem;
- }
- >span {
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 13px;
- font-weight: 500;
- line-height: 1.1875rem;
- }
- }
- .card_no {
- width: 7.5rem;
- height: 7.5rem;
- }
- }
- }
- </style>
|