|
|
|
@ -199,6 +199,10 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view v-if="assignedWorker" style="margin-top: 20rpx; color: #ff5722; font-size: 24rpx; background: #fff5f5; padding: 10rpx 20rpx; border-radius: 10rpx;"> |
|
|
|
<uni-icons type="info" size="12" color="#ff5722"></uni-icons> |
|
|
|
如果有多件物品或超重/超大,建议提前与配送员沟通 |
|
|
|
</view> |
|
|
|
<view class="content-box" style="line-height: 200rpx;"> |
|
|
|
<view class="content-title"> |
|
|
|
订单备注 |
|
|
|
@ -561,6 +565,10 @@ |
|
|
|
shopAreaId = this.formData.pickupAddress ? this.formData.pickupAddress.areaId : ''; |
|
|
|
} |
|
|
|
let putAreaId = this.formData.address ? this.formData.address.areaId : ''; |
|
|
|
if(shopAreaId == '' || putAreaId == ''){ |
|
|
|
this.tui.toast('请先选择取货和收货地址'); |
|
|
|
return; |
|
|
|
} |
|
|
|
if(this.isKuaidi){ |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/package1/index/deliveryPersonList?orderType=1&shopAreaId=${shopAreaId}&putAreaId=${putAreaId}` |
|
|
|
|