|
@@ -60,7 +60,7 @@
|
|
|
</ScrollRefresh>
|
|
|
|
|
|
<!-- 签收 -->
|
|
|
- <van-popup position="bottom" v-model="receiving" style="width: 100%; height: 90%;">
|
|
|
+ <van-popup position="bottom" v-model="receiving" style="width: 100%; height: 93%;">
|
|
|
<div style="font-size: 20px; text-align: center; margin-top: 12px;">派件签收</div>
|
|
|
<van-form @submit="onReceipt">
|
|
|
<van-field name="expressNo" label="运单号" :value="onReceivingVlaue.expressNo" readonly />
|
|
@@ -94,7 +94,7 @@
|
|
|
|
|
|
<!-- 设为滞留 -->
|
|
|
<van-popup position="bottom" v-model="retention" style="width: 100%; height: 85%;">
|
|
|
- <div style="font-size: 20px; text-align: center; ">派件滞留</div>
|
|
|
+ <div style="font-size: 20px; text-align: center; margin-top: 12px;">派件滞留</div>
|
|
|
<van-form @submit="onSetRetention">
|
|
|
<van-field name="expressNo" label="运单号" :value="onSureRetentionVlaue.expressNo" readonly />
|
|
|
<van-field label="快件类型" :value="onSureRetentionVlaue.expressType" readonly />
|
|
@@ -105,8 +105,8 @@
|
|
|
<van-field label="楼层" :value="onSureRetentionVlaue.floorNum" readonly />
|
|
|
<van-field label="联系方式" :value="onSureRetentionVlaue.phone" readonly />
|
|
|
|
|
|
- <van-field readonly clickable name="picker" :value="selectedRetention" label="滞留原因" placeholder="点击签收类型"
|
|
|
- @click="showRetention = true" />
|
|
|
+ <van-field readonly clickable name="picker" :value="selectedRetention" label="滞留原因"
|
|
|
+ placeholder="请输入滞留原因" @click="showRetention = true" />
|
|
|
<van-popup v-model="showRetention" position="bottom">
|
|
|
<van-picker show-toolbar :columns="Retention" @confirm="onRetention"
|
|
|
@cancel="showRetention = false" />
|
|
@@ -205,7 +205,10 @@ export default {
|
|
|
},
|
|
|
// 确定滞留
|
|
|
async onSetRetention(value) {
|
|
|
- console.log(value)
|
|
|
+ if (value.picker == '') {
|
|
|
+ this.$toast('请输入滞留原因')
|
|
|
+ return
|
|
|
+ }
|
|
|
let params = {
|
|
|
expressNo: value.expressNo,
|
|
|
sendRemark: value.picker
|