1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

小程序端确认收货

This commit is contained in:
2023-04-17 23:15:43 +08:00
parent 3e822ba3a0
commit 918917868f
6 changed files with 90 additions and 3 deletions

View File

@@ -45,6 +45,8 @@
<view wx:if="{{order.cancelDate}}">订单取消时间:{{order.cancelDate}}</view>
<view wx:if="{{order.shipDate}}">订单发货时间:{{order.shipDate}}</view>
<view wx:if="{{order.deliverDate}}">确认收货时间:{{order.deliverDate}}</view>
<view wx:if="{{order.expressId}}">发货快递单号:{{order.expressId}}</view>
<view wx:if="{{order.comment}}">发货备注信息:{{order.comment}}</view>
</view>
<view class="good-list-title">订单详情</view>
@@ -86,10 +88,12 @@
<!-- Cancelled -->
<view wx:if="{{ orderStatusCode == 'Cancelled' }}" class="txt txt-disabled">❕无法操作已取消订单</view>
<!-- Processing -->
<view wx:if="{{ orderStatusCode == 'Processing' }}" class="txt txt-disabled">当前订单尚未发货,可以取消</view>
<view wx:if="{{ orderStatusCode == 'Processing' }}" class="btn btn-hollow" bindtap="cancelPayment">取消订单</view>
<!-- Shipped -->
<view wx:if="{{ orderStatusCode == 'Shipped' }}" class="txt txt-disabled">当前订单不可取消,请耐心等待</view>
<view wx:if="{{ orderStatusCode == 'Shipped' }}" class="btn btn-solid" bindtap="confirmReceipt">确认收货</view>
<!-- Delivered -->
<view wx:if="{{ orderStatusCode == 'Delivered' }}" class="txt txt-done">✅订单已送达</view>
</view>
</view>
</view>