|
@@ -1,35 +1,34 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
<!-- <img src="../../static/beijing.png" alt="" class="tuku"> -->
|
|
|
- <Nav :navname.sync="navname" @fall="fall"></Nav>
|
|
|
+ <Navs :navname.sync="navname" @fall="fall"></Navs>
|
|
|
<view class="content">
|
|
|
<view class="content_top">
|
|
|
<view class="craid">
|
|
|
- <view class="name">
|
|
|
- <p>航班号</p>
|
|
|
- <span>HU7412</span>
|
|
|
+ <view class="craid_data">
|
|
|
+ <p>HU7412</p>
|
|
|
+ <span>2023-02-17</span>
|
|
|
</view>
|
|
|
- <view class="name">
|
|
|
- <p>目的站</p>
|
|
|
- <span>CSX</span>
|
|
|
+ <view class="craid_data">
|
|
|
+ <p>CTU</p>
|
|
|
+ <span>12:00:00</span>
|
|
|
</view>
|
|
|
- <view class="name">
|
|
|
- <p>航班日期</p>
|
|
|
- <span>2023-2-17</span>
|
|
|
- </view>
|
|
|
- <view class="name">
|
|
|
- <p>预计起飞时间</p>
|
|
|
- <span>12:00:00</span>
|
|
|
+ <view class="aircraft"></view>
|
|
|
+ <view class="craid_data">
|
|
|
+ <p>CSX</p>
|
|
|
+ <span>14:23:00</span>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="scanning">
|
|
|
- <view class="scanning_cd">
|
|
|
+ <view :class="getFooterClass">
|
|
|
+ <input class="input" v-model.trim="stratvalue" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;" placeholder="请输入操作位置"/>
|
|
|
+ <view class="log_l"></view>
|
|
|
<view class="log"></view>
|
|
|
- <view class="name">初始位置{{startcode}}</view>
|
|
|
</view>
|
|
|
- <view class="scanning_cd">
|
|
|
+ <view :class="getlooterClass">
|
|
|
+ <input class="input" v-model.trim="endvalue" type="text" value="" placeholder-style="font-size:.8125rem;color:rgb(189, 214, 231);display:flex;justify-content: start;" placeholder="请输入行李号"/>
|
|
|
+ <view class="log_l"></view>
|
|
|
<view class="log"></view>
|
|
|
- <view class="name">结束位置{{stopcode}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -41,17 +40,20 @@
|
|
|
<scroll-view scroll-y="true" class="scroll-Y">
|
|
|
<view :class="item.types ? 'ups':'up'" v-for="(item, index) in listdate" :key="index" @touchstart="start" @touchend="(e)=>end(e,item)">
|
|
|
<view class="list">行李编号:{{ item.name }}</view>
|
|
|
+ <view class="down_up"></view>
|
|
|
<view class="delete"><view class="log" @click="()=>checkMore(item)"></view></view>
|
|
|
</view>
|
|
|
</scroll-view>
|
|
|
- <view class="but" @tap="clickOrder">手动登记</view>
|
|
|
+ <view class="but" v-if="!action" @tap="clickOrder">一键添加</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <mask-model 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 Navs from '../../components/header/navs.vue'
|
|
|
+ import maskModel from '../../components/mask-model/mask-model.vue'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -129,6 +131,9 @@
|
|
|
clientX: 0,
|
|
|
clientY: 0
|
|
|
},
|
|
|
+ stratvalue: '',//开始位置
|
|
|
+ endvalue: '',//结束位置
|
|
|
+ maskTitle:'该行李不属于当前航班,请选择处理方式。'
|
|
|
}
|
|
|
},
|
|
|
created(option) {
|
|
@@ -137,15 +142,33 @@
|
|
|
this.navname = JSON.parse(decodeURIComponent(option.item))
|
|
|
},
|
|
|
onUnload() {
|
|
|
+ // this.$refs.showMask.show();
|
|
|
},
|
|
|
onShow() {
|
|
|
},
|
|
|
mounted() {
|
|
|
+ // this.$refs.showMask.show();
|
|
|
+ // console.log(this.stratvalue.length)
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ getFooterClass () {
|
|
|
+ return this.stratvalue ? 'scanning_cds' : 'scanning_cd'
|
|
|
+ },
|
|
|
+ getlooterClass () {
|
|
|
+ return this.endvalue ? 'scanning_cds' : 'scanning_cd'
|
|
|
+ }
|
|
|
},
|
|
|
components: {
|
|
|
- Nav
|
|
|
+ Navs,
|
|
|
+ maskModel:maskModel,
|
|
|
},
|
|
|
methods: {
|
|
|
+ confirm:function(e){//确定按钮
|
|
|
+ console.log('您点击了确定按钮');
|
|
|
+ },
|
|
|
+ cancel:function(){//取消按钮
|
|
|
+ console.log('您点击了取消按钮');
|
|
|
+ },
|
|
|
clickOrder () {
|
|
|
uni.redirectTo({
|
|
|
url: "/pages/baggagecheck/index"
|
|
@@ -165,7 +188,7 @@
|
|
|
if (e.changedTouches[0].clientY/16 > 20.75) {
|
|
|
this.dataheight = 20.75 + 'rem'
|
|
|
} else if (e.changedTouches[0].clientY/16 < 7.3125) {
|
|
|
- this.dataheight = 7.3125 + 'rem'
|
|
|
+ this.dataheight = 6.3125 + 'rem'
|
|
|
}
|
|
|
},
|
|
|
start(e) {
|
|
@@ -203,43 +226,78 @@
|
|
|
// background: rgb(49, 85, 99);
|
|
|
padding-bottom: 1.3125rem;
|
|
|
>.craid{
|
|
|
- width: 100%;
|
|
|
- height: 40%;
|
|
|
+ // width: 100%;
|
|
|
+ height: 5.625rem;
|
|
|
+ padding: 0 2.5625rem 0 2.5625rem;
|
|
|
display: flex;
|
|
|
- justify-content: space-around;
|
|
|
+ justify-content: space-between;
|
|
|
flex-wrap: wrap;
|
|
|
- >.name{
|
|
|
- width: 50%;
|
|
|
+ align-items: center;
|
|
|
+ >.craid_data{
|
|
|
display: flex;
|
|
|
- align-items: flex-start;
|
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
|
+ align-items: start;
|
|
|
>p{
|
|
|
- margin-left: 3.125rem;
|
|
|
color: rgb(255, 255, 255);
|
|
|
font-family: Noto Sans SC;
|
|
|
- font-size: .875rem;
|
|
|
- margin-bottom: 10px;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 700;
|
|
|
}
|
|
|
>span{
|
|
|
- margin-left: 3.125rem;
|
|
|
color: rgb(255, 255, 255);
|
|
|
font-family: Noto Sans SC;
|
|
|
- font-size: 1.125rem;
|
|
|
+ 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{
|
|
|
+ .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: 5.5rem;
|
|
|
+ height: 3rem;
|
|
|
opacity: 1;
|
|
|
transition: all 3s;
|
|
|
- background: rgb(37, 121, 160);
|
|
|
+ background: rgb(51, 161, 165);
|
|
|
margin-top: 1rem;
|
|
|
margin-bottom: .5rem;
|
|
|
border-radius: 4px;
|
|
@@ -254,7 +312,13 @@
|
|
|
height: .875rem;
|
|
|
background: url('../../static/saoma.png') no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
- margin-right: .75rem;
|
|
|
+ margin-left: 1rem;
|
|
|
+ }
|
|
|
+ >.log_l{
|
|
|
+ width: .125rem;
|
|
|
+ height: 1.3125rem;
|
|
|
+ margin-left: 4rem;
|
|
|
+ background: rgb(255, 255, 255);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -300,11 +364,18 @@
|
|
|
.up{
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
+ align-items: center;
|
|
|
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%;
|
|
|
+ }
|
|
|
>.list{
|
|
|
- width: 100%;
|
|
|
+ width: 97%;
|
|
|
position: relative;
|
|
|
height: 3.75rem;
|
|
|
display: flex;
|
|
@@ -337,11 +408,20 @@
|
|
|
.ups{
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
+ align-items: center;
|
|
|
margin-left: 1rem;
|
|
|
border-bottom: 1px solid rgb(238, 238, 238);
|
|
|
// transform: all 3s;
|
|
|
+ >.down_up{
|
|
|
+ width: .875rem;
|
|
|
+ height: .875rem;
|
|
|
+ position: relative;
|
|
|
+ right: 1.875rem;
|
|
|
+ background: url('../../static/xia.png') no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
>.list{
|
|
|
- width: 100%;
|
|
|
+ width: 97%;
|
|
|
position: relative;
|
|
|
height: 3.75rem;
|
|
|
display: flex;
|
|
@@ -379,7 +459,7 @@
|
|
|
.but{
|
|
|
width: 20.5625rem;
|
|
|
height: 2.75rem;
|
|
|
- background: linear-gradient(177.56deg, rgba(54.04,157.79,205.96,1) -33.78%,rgba(59.83,102.58,194.93,1) 173%);
|
|
|
+ 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;
|