Jelajahi Sumber

Revert "收货-组合商品调整文案"

This reverts commit 1d366ccbc31fb99ddb3f4cb9d36ef0e132951bbc.
zhaohuanhuan 2 minggu lalu
induk
melakukan
92b1eab7bf

+ 5 - 5
src/views/inbound/takeDelivery/components/BarcodeCombine.vue

@@ -2,20 +2,20 @@
   <div class="goods">
     <van-dialog v-model:show="goodsTrueFalseBy"
                 :beforeClose="beforeClose"
-                title="组合商品收货"
+                title="组合商品包含"
                 show-cancel-button>
         <div style="width:100%;max-height:150px;overflow:auto">
           <div v-for="(item,index) in matchedSkuList" :key="index">
             <van-cell center :title="item.matchedJson.barcode" :label="item.matchedJson.skuName">
               <template #value>
-                <div>{{ item.matchedJson.quantity }}件/套</div>
-                <div class="goods-tips">待收货:{{ (item.expectedQuantity || 0) - (item.receivedQuantity || 0) }}件</div>
+                <div>{{ item.matchedJson.quantity }}件</div>
+                <div class="goods-tips">预期数量:{{ (item.expectedQuantity || 0) - (item.receivedQuantity || 0) }}件</div>
               </template>
             </van-cell>
           </div>
         </div>
-        <div class="goods-number">可收货套数:{{ maxCount }}</div>
-        <van-field label="收货套数" type="number" class="code-input" v-model="count" ref="countRef" placeholder="收货套数" />
+        <div class="goods-number">应收数量:{{ maxCount }}</div>
+        <van-field label="收数" type="number" class="code-input" v-model="count" ref="countRef" placeholder="收数" />
     </van-dialog>
   </div>
 </template>