123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <template>
- <view class="app-content">
- <view class="nav">
- <liu-search @fall="fall" :historyList="historyList" @input="input" @change="change"
- @changes='changes'></liu-search>
- </view>
- <view class="content" v-if="flightList.length">
- <!-- <button v-for="(item, index) in flightList" :key="index" @tap="input(1)">11111111</button> -->
- <button class="craid" v-for="(item,index) in flightList" :key="index" @tap="toIndex(item)">
- <view class="craid_data">
- <p>{{item.carrierFlights}}</p>
- <span>{{item.carrierFlightsDate}}</span>
- </view>
- <view class="craid_data">
- <p>{{item.outAirport}}</p>
- <span>{{item.scheduleTakeOffTime}}</span>
- </view>
- <view class="aircraft">To</view>
- <view class="craid_data">
- <p>{{item.landAirport}}</p>
- <span>{{item.scheduleLandInTime}}</span>
- </view>
- </button>
- </view>
- <!-- 提示信息和下拉弹窗 -->
- <mask-model :headername="headername" :typeShow="typeShow" :tabname="tabname" ref="showMask" btnType="1"
- @confirm="confirm" @cancel="cancel" titleColoe="#666666" cancelColor="#666666" confirmColor="#007AFF"
- :maskTitle="maskTitle"></mask-model>
- </view>
- </template>
- <script>
- import Nav from '../../components/header/nav.vue'
- import maskModel from '../../components/mask-model/mask-model.vue'
- export default {
- data() {
- return {
- historyList: [],
- maskTitle: '请核对录入的航班号或行李号是否正确',
- tabname: '', //按钮名称
- typeShow: true,
- headername: '请核对信息',
- value:null,
- flightList:[]
- }
- },
- created(option) {},
- onLoad() {},
- onUnload() {},
- onShow() {
- uni.$on("scancodemsg", (data) => {
- if (data.msg.length > 9) {
- uni.navigateTo({
- url: "/pages/detail/index?luggageNum=" + Number(data.msg)
- })
- }
- });
- },
- mounted() {
- uni.$off("scancodemsg");
-
- },
- components: {
- Nav
- },
- methods: {
- toIndex(item){
- console.log(item)
- this.$storage.setJson('searchData',item);
- // this.$storage.set('flightDate',item.carrierFlightsDate);
- uni.switchTab({
- url: "/pages/index/index"
- })
- },
- fall() {
- uni.navigateBack({
- delta: 1
- })
- },
- changes() {
- // uni.redirectTo({
- // url: "/pages/myrecords/index"
- // })
- },
- //搜索内容
- change(e) {
- this.value = e
- this.typeShow = false
- this.maskTitle = '请核对录入的航班号或行李号是否正确'
- this.headername = '请核对信息'
- this.$refs.showMask.show();
- },
- confirm: function() { //确定按钮
- if(this.value.length>9){
- uni.navigateTo({
- url: "/pages/detail/index?luggageNum=" + Number(this.value)
- })
- }
- else{
- this.getFlightData(this.value)
- this.cancel()
- }
- },
- async getFlightData(num) {
- let data = {
- "serviceId": 3000,
- "page": 1,
- "pageSize": 10,
- "dataContent": [{
- "carrierFlights":num
- }],
- "event": "0"
- }
- await this.$http.httpPost('/openApi/query', data).then(res => {
- if (res.code == "0" && res.returnData.length>0) {
- this.$storage.remove('searchData')
- this.$storage.remove('flightDate');
- if(res.returnData.length==1){
- if(res.returnData[0].scheduleTakeOffTime){
- res.returnData[0].scheduleTakeOffTime = res.returnData[0].scheduleTakeOffTime.split("T")[1]
- }
- if(res.returnData[0].scheduleLandInTime){
- res.returnData[0].scheduleLandInTime = res.returnData[0].scheduleLandInTime.split("T")[1]
- }
- this.$storage.setJson('searchData',res.returnData[0]);
- uni.switchTab({
- url: "/pages/index/index"
- })
- }
- else {
- this.flightList = res.returnData
- this.flightList.map(item => {
- if(item.scheduleTakeOffTime){
- item.scheduleTakeOffTime = item.scheduleTakeOffTime.split("T")[1]
- }
- else{
- item.scheduleTakeOffTime = "-"
- }
- if(item.scheduleLandInTime){
- item.scheduleLandInTime = item.scheduleLandInTime.split("T")[1]
- }
- else{
- item.scheduleLandInTime = "-"
- }
- })
- }
- }
- else{
- uni.showToast({
- icon:'none',
- title: "无此航班号信息,请确认航班号",
- duration: 5000
- });
- }
- })
- },
-
- cancel(){},
- //input事件
- input(e) {
- console.log('搜索框输入的内容:' + e)
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .app-content {
- >.nav {
- width: 100%;
- position: relative;
- display: flex;
- margin-top: 1.875rem;
- height: 10rem;
- >.log {
- width: .375rem;
- height: .75rem;
- font-size: .75rem;
- position: absolute;
- left: 1.5rem;
- background: url('../../static/ico@1x.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- >.content{
- height: calc(100vh - 13rem);
- overflow-x: hidden;
- overflow-y: auto;
- >.craid {
- // width: 100%;
- border-radius: 0;
- border: none;
- z-index: 10;
- height: 5.625rem;
- padding: 0 2.5625rem 0 2.5625rem;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: center;
- border-bottom: 1px solid #000;
- >.craid_data {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: start;
-
- >p {
- color: rgb(0, 0, 0);
- font-family: Noto Sans SC;
- font-size: 18px;
- font-weight: 700;
- }
-
- >span {
- color: rgb(0, 0, 0);
- 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%;
- }
- }
- }
-
- }
- </style>
|