yangan
2024-07-24 13034e2d8761b79b925e058e267ade024c97fed7
pages/freight-forwarder-page/freightForwarder-index/freightForwarder-index.vue
@@ -75,7 +75,7 @@
            <u-empty mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png" textSize="30" iconSize="1000" v-if="orderPlanData.length == 0"></u-empty>
         </view> -->
         <view class="history-numbers">
            <combined-title title="历史提煤单"></combined-title>
            <combined-title title="历史收发单"></combined-title>
            <scroll-view :scroll-top="scrollTop"
               scroll-y="true"
               class="scroll-Y"
@@ -111,7 +111,7 @@
                        <view class="third-line_num">{{ item.carNumSurplus }}</view>
                     </view>
                     <view class="third-line">
                        <view class="third-line_text">提煤单个数:</view>
                        <view class="third-line_text">收发单个数:</view>
                        <view class="third-line_num">{{ item.tmCount }}</view>
                     </view>
                  </view>
@@ -199,7 +199,7 @@
         }
      },
      methods: {
         // 获取历史提煤单
         // 获取历史收发单
         getJhOrderPlanDataPage() {
            uni.showLoading({
               title: '加载中'
@@ -223,7 +223,7 @@
            this.pageCurrent++;
            this.getJhOrderPlanDataPage();
         },
         //fix 点击提煤单返回会增加重复数据
         //fix 点击收发单返回会增加重复数据
         ArrSet(Arr, id) {
            var obj = {};
            const arrays = Arr.reduce((setArr, item) => {
@@ -250,7 +250,7 @@
            //    }
            // });
            uni.navigateTo({
               url: `/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails?orderPlanId=${item.orderPlanId}&carNum=${item.carNum}`
               url: `/subPages/fayunPlanDetails?orderPlanId=${item.orderPlanId}&carNum=${item.carNum}`
            });
         },
         // 转发
@@ -259,10 +259,10 @@
               url: `/pages/public-page/forward/forward?orderPlanId=${value.orderPlanId}&carNumSurplusHuodai=${value.carNumSurplusHuodai}&carNum=${value.carNum}`
            });
         },
         // 点击历史提煤单一行获取详情
         // 点击历史收发单一行获取详情
         faYundetail(v) {
            uni.navigateTo({
               url: `/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanDetails?orderPlanId=${v.id}&cars2=${v.cars2}`
               url: `/subPages/fayunPlanDetails?orderPlanId=${v.id}&cars2=${v.cars2}`
            });
         }
      }