|
@@ -28,6 +28,14 @@
|
|
|
<view class="log_l"></view>
|
|
|
<view class="log"></view>
|
|
|
</view>
|
|
|
+ <view :class="getFooterClasser" v-if="navname == '装车'">
|
|
|
+ <input class="input" v-model.trim="stratvalue1" disabled="true" @tap="locationEntry" 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>
|
|
|
<view :class="getlooterClass">
|
|
|
<input class="input" v-model.trim="endvalue" disabled="true" @tap="baggageEntry" type="text"
|
|
|
value=""
|
|
@@ -145,6 +153,7 @@
|
|
|
clientY: 0
|
|
|
},
|
|
|
stratvalue: '', //开始位置
|
|
|
+ stratvalue1:'',
|
|
|
endvalue: '', //结束位置
|
|
|
maskTitle: '该行李不属于当前航班,请选择处理方式。',
|
|
|
tabname: '', //按钮名称
|
|
@@ -173,7 +182,10 @@
|
|
|
},
|
|
|
getlooterClass() {
|
|
|
return this.endvalue ? 'scanning_cds' : 'scanning_cd'
|
|
|
- }
|
|
|
+ },
|
|
|
+ getFooterClasser() {
|
|
|
+ return this.stratvalue1 ? 'scanning_cds' : 'scanning_cd'
|
|
|
+ },
|
|
|
},
|
|
|
components: {
|
|
|
Navs,
|