123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444 |
- <template>
- <view class="app-content">
- <img :src="icon" alt="" class="tuku">
- <Navs :navname.sync="navname" @fall="fall"></Navs>
- <view class="fight">
- <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="fight_center">
- <view class="type">
- {{flightDetail.normalState}}
- </view>
- <view class="aircraft"></view>
- </view>
- <view class="fight_card">
- <p>{{flightDetail.landAirport}}</p>
- <span>{{flightDetail.scheduleLandInTime?flightDetail.scheduleLandInTime:"-"}}</span>
- </view>
- </view>
- <view class="content">
- <view class="content_bootom" style="top:0">
- <scroll-view scroll-y="true" class="scroll-Y">
- <view class="up" v-for="(item, index) in listdata" :key="index">
- <view class="list" @tap="toDetail(item.luggageNum)">
- <p>{{ item.luggageNum }}</p>
- </view>
- <view class="normal">
- {{item.specialType!=null?specialTypeList[item.specialType]:" "}}
- </view>
- <view :class="item.exception_type != null?'error':'normal'">
- {{item.exception_type!=null?exceptionList[item.exception_type]:"正常"}}
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import Navs from '../../components/header/navs.vue'
- import {
- Format
- } from '@/components/utils/validate'
- export default {
- data() {
- return {
- flightDetail: null,
- input: '',
- main: null,
- poll: null,
- filter: null,
- pusher: null,
- intentServer: null,
- timeShow: true,
- arr: [],
- navname: '航班详情',
- icon: 'static/beijing.png',
- newData: '',
- newDataday: '',
- listdata:[],
- exceptionList:{
- "DPR":"破损",
- "AHL":"少收",
- "OHD":"多收"
- },
- specialTypeList:{
- "AVIH":"装笼动物",
- "CREW":"机组行李",
- "RFAG":"易碎行李",
- "HVY":"重型行李",
- "PRIO":"优先行李",
- "RUSH":"无人行李",
- "SCON":"急转行李",
- "SPEQ":"运动装备",
- "VIP":"VIP行李",
- "WCHR":"轮椅",
- "WFAP":"武器枪支",
- "SJ05":"到港行李破损",
- "SJ34":"超大柜台接收",
- }
- }
- },
- created(option) {},
- onLoad() {
- this.flightDetail = this.$storage.getJson('searchData')
- this.getluggageList()
- },
- onUnload() {uni.$off("scancodemsg");},
- onShow() {
- uni.$on("scancodemsg", (data) => {
- if (data.msg.length > 9) {
- uni.navigateTo({
- url: "/pages/detail/index?luggageNum=" + data.msg
- })
- }
- });
- if(this.flightDetail){
- this.getluggageList()
- }
- },
- mounted() {
- },
- beforeDestroy() {
- },
- components: {
- Navs
- },
- methods: {
- fall() {
- uni.navigateBack({
- delta:1
- })
- },
- async getluggageList() {
- let data = {
- "serviceId": 3001,
- "page": 1,
- "pageSize": 999,
- "dataContent": {
- "carrierFlights": this.flightDetail.carrierFlights,
- "carrierFlightsDate": this.flightDetail.carrierFlightsDate,
- "outAirport":this.flightDetail.outAirport,
- "landAirport":this.flightDetail.landAirport
- },
- "event": "0"
- }
- await this.$http.httpPost('/openApi/query', data).then(res => {
- if (res.code == "0") {
- this.listdata = res.returnData;
- }
- })
- },
- toDetail(luggageNum){
- this.currentLuggageNum = luggageNum;
- uni.navigateTo({
- url: "/pages/detail/index?luggageNum="+this.currentLuggageNum
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .app-content {
- position: relative;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- >.tuku {
- position: absolute;
- z-index: -1;
- width: 100%;
- top: -250px;
- let:20px;
- }
- >.fight {
- padding: 0 1.75rem 5rem 1.75rem;
- // height: 3.75rem;
- display: flex;
- align-items: center;
- justify-content: space-around;
- margin-top: 1.375rem;
-
- .fight_center {
- width: 3rem;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 16px;
- line-height: 24px;
- font-weight: 700;
- >.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: 3.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 {
- width: 100%;
- height: calc(100vh - 10rem);
- position: relative;
-
- // overflow: hidden;
- // background: rgb(49, 85, 99);
- >.content_top {
- width: 100%;
- // background: rgb(49, 85, 99);
- padding-bottom: 1.3125rem;
- >.craid {
- // width: 100%;
- height: 5.625rem;
- padding: 0 2.5625rem 0 2.5625rem;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: center;
- >.craid_data {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: start;
- >p {
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 18px;
- font-weight: 700;
- }
- >span {
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 13px;
- font-weight: 500;
- }
- }
- >.aircraft {
- width: 1.75rem;
- height: 1.75rem;
- background: url('../../static/hang.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- >.scanning {
- height: 12rem;
- padding: 0 1.5rem 0 1.5rem;
- opacity: 1;
- transition: all 3s;
- .scanning_cd {
- width: 100%;
- height: 3rem;
- opacity: 1;
- transition: all 3s;
- background: rgb(59, 103, 123);
- margin-top: 1rem;
- margin-bottom: .5rem;
- border-radius: 4px;
- display: flex;
- justify-content: center;
- align-items: center;
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 16px;
- >.log {
- width: .875rem;
- height: .875rem;
- background: url('../../static/saoma.png') no-repeat;
- background-size: 100% 100%;
- margin-left: 1rem;
- }
- >.log_l {
- width: .125rem;
- height: 1.3125rem;
- margin-left: 4rem;
- background: rgb(255, 255, 255);
- }
- }
- .scanning_cds {
- width: 100%;
- height: 3rem;
- opacity: 1;
- transition: all 3s;
- background: rgb(51, 161, 165);
- margin-top: 1rem;
- margin-bottom: .5rem;
- border-radius: 4px;
- display: flex;
- justify-content: center;
- align-items: center;
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 16px;
- >.log {
- width: .875rem;
- height: .875rem;
- background: url('../../static/saoma.png') no-repeat;
- background-size: 100% 100%;
- margin-left: 1rem;
- }
- >.log_l {
- width: .125rem;
- height: 1.3125rem;
- margin-left: 4rem;
- background: rgb(255, 255, 255);
- }
- }
- }
- }
- >.content_bootom {
- width: 100%;
- // height: calc(100vh - 20.9375rem - 4.375rem);
- padding-bottom: 0;
- position: absolute;
- bottom: 0;
- top: 20.75rem;
- // border-radius: 6px 6px 0px 0px;
- overflow: hidden;
- background: rgb(255, 255, 255);
- padding: 0 10px;
- box-sizing: border-box;
- .up {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-left: 1rem;
- border-bottom: 1px solid rgb(238, 238, 238);
-
- // transform: all 3s;
- >.down_up {
- width: .875rem;
- height: .875rem;
- background: url('../../static/xia.png') no-repeat;
- background-size: 100% 100%;
- }
-
- >.error{
- width: 80px;
- color:red
- }
- >.normal{
- width: 80px;
- color:#4682b4
- }
- >.list {
- position: relative;
- height: 3rem;
- display: flex;
- align-items: center;
- transform: all 3s;
- right: 0;
- color: rgb(0, 0, 0);
- font-family: Noto Sans SC;
- font-size: 16px;
- font-weight: 500;
- }
-
- >.delete {
- width: 3.75rem;
- height: 3.75rem;
- background: rgb(237, 101, 101);
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- right: -3.75rem;
- transform: all 3s;
-
- >.log {
- width: .875rem;
- height: .875rem;
- background: url('../../static/vector@1x.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- }
-
- .scroll-Y {
- // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
- height: calc(100% - 2.5rem - 2.75rem);
- }
- .but {
- width: 20.5625rem;
- height: 2.5rem;
- 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%);
- border-radius: .25rem;
- color: rgb(255, 255, 255);
- font-family: Noto Sans SC;
- font-size: 1rem;
- margin: 0 auto;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 0.25rem;
- margin-bottom: 2.25rem;
- }
- }
- }
- }
- </style>
|