|
|
@@ -60,7 +60,8 @@
|
|
|
</scroll-view>
|
|
|
</view>
|
|
|
<view v-else class="empty-quotes-view">
|
|
|
- <text style="font-size:12upx;">正在获取运费...</text>
|
|
|
+ <text style="font-size:12upx;color:red;" v-if="$util.isEmpty(custom.long) || $util.isEmpty(custom.lat) || $util.isEmpty(custom.address)">请先完善客户地址</text>
|
|
|
+ <text style="font-size:12upx;" v-else>正在获取运费...</text>
|
|
|
</view>
|
|
|
|
|
|
<view class="select-item_box">
|
|
|
@@ -414,7 +415,7 @@ export default {
|
|
|
if (this.isAddressInvalid) {
|
|
|
return;
|
|
|
}
|
|
|
- this.getDeliveryQuotes();
|
|
|
+ this.getDeliveryQuotes()
|
|
|
}
|
|
|
},
|
|
|
totalShop: {
|
|
|
@@ -555,7 +556,9 @@ export default {
|
|
|
this.selectedDeliveryData = null;
|
|
|
} else {
|
|
|
if (this.openIntraCity == 1) {
|
|
|
- this.getDeliveryQuotes();
|
|
|
+ //将上次的跑腿选项清掉
|
|
|
+ this.deliveryQuotes = []
|
|
|
+ this.getDeliveryQuotes()
|
|
|
}
|
|
|
}
|
|
|
},
|