|
|
@@ -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>
|