tianyi 3 weeks ago
parent
commit
3b9848aaea
  1. 8
      pages/index/index.vue

8
pages/index/index.vue

@ -336,7 +336,7 @@
<view class="empty-delivery-desc">可以切换分类或调整筛选条件新的校园订单会在这里出现</view>
</view>
<view class="list-1" v-for="(item,index) in deliveryItem" :key="index"
@tap="goDetail('search',item)">
@tap="productDetail(item)">
<view class="daoda-time">
送达时间{{item.mustFinishTime != null ? item.mustFinishTime : '' | formatHourMinute }}
</view>
@ -356,7 +356,7 @@
<view class="shangjia">
<text
style="font-weight: 700;">{{item.shopName != null ? item.shopName : ''}}</text>
<view @tap="productDetail(item)" v-if="item.deliveryType == 1"
<view v-if="item.deliveryType == 1"
style="width: 32rpx;height: 30rpx;font-weight: 700;font-size: 20rpx;color: #fff;text-align: center;background: #00BFFF;border-radius: 10rpx;margin: 20rpx 0 0 10rpx;line-height: 30rpx;">
</view>
@ -376,7 +376,7 @@
{{item.shopAddress != null ? item.shopAddress : ''}}
</view>
<view class="qu-right">
<img @tap="makeCall(item.contactPhone)"
<img @tap.stop="makeCall(item.shopPhone)"
src="https://jewel-shop.oss-cn-beijing.aliyuncs.com/869a7af6a1c24bf3a0d523c4a18b55c6.png"
alt="" style="width: 40rpx;height: 40rpx;" />
</view>
@ -392,7 +392,7 @@
{{item.receiverAddress != null ? item.receiverAddress : ''}}
</view>
<view class="qu-right">
<img @tap="makeCall(item.receiverPhone)"
<img @tap.stop="makeCall(item.receiverPhone)"
src="https://jewel-shop.oss-cn-beijing.aliyuncs.com/869a7af6a1c24bf3a0d523c4a18b55c6.png"
alt="" style="width: 40rpx;height: 40rpx;" />
</view>

Loading…
Cancel
Save