【优化】调整用户售后商品初始数量为发货数量减去退货数量,不使用购买数量。

This commit is contained in:
jianweie code
2024-01-27 18:57:13 +08:00
parent a6e345a48b
commit 6c7da1661e
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
<text @click="goUserAgreementPage()">用户协议</text>
<text @click="goUserPrivacyPolicy()">隐私政策</text>
并授权使用您的{{shopName}}账号信息如昵称头像地址以便您统一管理
并授权使用您的{{shopName}}账号信息如昵称头像地址以便您统一管理
</view>
</view>
</view>

View File

@@ -59,7 +59,7 @@
</view>
<view class="goods-salesvolume coreshop-margin-top-10 coreshop-margin-bottom-10" v-if="!item.disabled">
<label>您要退货数量</label>
<input type="number" v-model="item.returnNums" @focus="onFocus(item,key)" @blur="updateNum(item,key)" class="inputStyle" ref="input" @click.stop />
<input type="number" v-model="item.sendNums - item.reshipNums" @focus="onFocus(item,key)" @blur="updateNum(item,key)" class="inputStyle" ref="input" @click.stop />
</view>
</view>
</view>