1.查看物流信息

2.直播图片选择器修改
3.管理端隐藏会员详情
This commit is contained in:
chc
2024-12-25 10:35:40 +08:00
parent c5aaa2f3e2
commit 9c402a3878
4 changed files with 19 additions and 178 deletions

View File

@@ -571,8 +571,9 @@
</div>
</template>
<template slot="numSlot" slot-scope="{ row, index }">
<InputNumber :min="0" :max="row.___num - row.deliverNumber" v-model="data[index].canNum">
</InputNumber>
<InputNumber v-model="row.canNum" :disabled="!selectGroupShipGoods.find(item=>item.id === row.id)"
:max="row.___num - row.deliverNumber - row.returnNum" :min="0"
@on-change="changeNum($event,index)"></InputNumber>
</template>
</Table>
<div slot="footer">
@@ -872,6 +873,16 @@ export default {
}
});
},
changeNum(number, index) {
const current = this.data[index]
if (this.selectGroupShipGoods.length) {
this.selectGroupShipGoods.forEach(item => {
if (item.skuId === current.skuId) {
item.canNum = number
}
})
}
},
// 分包裹发货
confirmShipGroupGoods () {
this.$refs.groupOrderDeliveryForm.validate(async (valid) => {
@@ -1145,7 +1156,7 @@ export default {
})
},
toPrints () {
if (this.form.logisticsId != null && this.form.logisticsId != '') {
if (this.faceSheetForm.logisticsId != null && this.faceSheetForm.logisticsId != '') {
this.orderDeliverModal = false;
}
},