Browse Source

修改bug.wz

featrue/v4.3
wangzhen 5 years ago
parent
commit
ece85e35cf
1 changed files with 3 additions and 3 deletions
  1. 6
      pages/agent/order-item/index.wxml

6
pages/agent/order-item/index.wxml

@ -33,7 +33,7 @@
</wux-timeline-item>
<wux-timeline-item custom>
<text slot="dot" class="cuIcon-title" style="font-size: 16px;color:#999999"></text>
<view class="text-sm text-gray" style="text-align: right">{{orderNextStatus(orderItem.displayStatus)}}</view>
<view class="text-sm text-gray" style="text-align: right">{{orderNextStatus(orderItem.displayStatus,orderItem.activityOrderAuditPassnum)}}</view>
</wux-timeline-item>
</wux-timeline>
</view>
@ -71,7 +71,7 @@
<wxs module="orderNextStatus">
function orderNextStatus(status) {
function orderNextStatus(status,activityOrderAuditPassnum) {
if (status == 50) {
return '待送货'
} else if (status == 51) {
@ -79,7 +79,7 @@ function orderNextStatus(status) {
} else if (status == 52) {
return '结算中'
} else if (status == 53) {
return '已完成'
return activityOrderAuditPassnum==2?"待质检":"已完成"
} else if (status == 54) {
return ''
} else if (status == 55) {

Loading…
Cancel
Save