sunChengjie hace 1 año
padre
commit
08953cca23
Se han modificado 2 ficheros con 6 adiciones y 3 borrados
  1. 4 2
      src/pages/components/Waitsent.vue
  2. 2 1
      src/pages/new/scannerResult.vue

+ 4 - 2
src/pages/components/Waitsent.vue

@@ -16,7 +16,7 @@
                     </div>
                     <!-- 各个运单 -->
                     <div class="batchss"
-                        :style="{ overflow: item.openCard ? 'auto' : 'hidden', minMeight: item.openCard ? 'auto' : '140px', }">
+                        :style="{ overflow: item.openCard ? 'auto' : 'hidden', height: item.openCard ? 'auto' : '140px', }">
                         <div class="batch-middel" v-for="(unfold, index) in item.list" :key="index">
                             <div class="batch-middel-text">
                                 <div class="batch-middel-text-style"
@@ -284,7 +284,9 @@ export default {
     font-size: 12px;
 }
 
-
+.batchss {
+    min-height: 140px;
+}
 
 .container {
     height: 100%;

+ 2 - 1
src/pages/new/scannerResult.vue

@@ -12,7 +12,8 @@
             <van-cell title="收件人座位" :value="list.sendSeat" />
             <van-cell title="快件类型" :value="list.expressType" />
             <van-cell title="快件数量" :value="list.expressQuantity" />
-            <van-cell title="快件状态" :value="list.isIncludeChldren == 1 ? '待派送' : '已派送'" />
+            <van-cell title="快件状态"
+                :value="list.expressStatus == 0 ? '已入库' : `${list.expressStatus == 1 ? '派送中' : `${list.expressStatus == 2 ? '已签收' : '滞留件'}`}`" />
             <van-cell title="货架信息" :value="list.shelfInformation" />
             <van-cell title="是否到付" :value="list.isPayOnDelivery" />
             <van-cell title="到付费用" :value="list.payMoney" />