qingyiay
2023-03-27 7986bc00e330411ffc73da24fdd168c6af8cf295
pages/freight-forwarder-page/freightForwarder-index/freightForwarder-index.vue
@@ -14,7 +14,7 @@
               <view class="right-top">
                  <view class="card-right-top-row">
                     <view>
                        <text>转发剩余:{{ item.carNumSurplusHuodai || '' }}</text>
                        <text>转发剩余:{{ item.carNumSurplusHuodai || 0 }}</text>
                     </view>
                     <view>
                        <text>{{ item.coalName || '' }}</text>
@@ -70,7 +70,7 @@
      // 转发
      forwardClick(value) {
         uni.navigateTo({
            url: `/pages/public-page/forward/forward?orderPlanId=${value.orderPlanId}&carNumSurplusHuodai=${value.carNumSurplusHuodai}`
            url: `/pages/public-page/forward/forward?orderPlanId=${value.orderPlanId}&carNumSurplusHuodai=${value.carNumSurplusHuodai}&carNum=${value.carNum}`
         });
      }
   }