Commit 0ba290c3a9689a93fea90a928748cddad8f39e11
1 parent
c601aa5c
订单列表中组团中的bug优化
Showing
2 changed files
with
4 additions
and
1 deletions
pages/user/order_detail/order_detail.js
pages/user/order_list/order_list.wxml
... | ... | @@ -41,7 +41,7 @@ |
41 | 41 | <!-- 商品评价状态 --> |
42 | 42 | <view class="flex-center c-r"> |
43 | 43 | <!-- 订单状态 --> |
44 | - <view wx:if="{{item.pt_status==1}}">组团中</view> | |
44 | + <view wx:if="{{item.pt_status==1 && item.pt_prom_id>0}}">组团中</view> | |
45 | 45 | <view wx:if="{{(item.order_status==0&&item.pay_status==0)}}">未支付</view> |
46 | 46 | <block wx:if="{{!(item.is_all_return_status==0 || item.is_all_return_status==1)}}"> |
47 | 47 | <view wx:if="{{(item.order_status==1&&item.pay_status==1&&item.shipping_status==0)}}">待发货</view> | ... | ... |