Commit 0cb9b185 authored by zs嵩's avatar zs嵩

6

parent 896e5d89
...@@ -472,11 +472,14 @@ export default { ...@@ -472,11 +472,14 @@ export default {
}) })
let orderFeeDetailsVOList = this.batchApplyDetailsInfoVO.orderFeeDetailsVOList.filter((item) => { let orderFeeDetailsVOList = this.batchApplyDetailsInfoVO.orderFeeDetailsVOList.filter((item) => {
return new Set(this.ids).has(item.id) console.log(new Set(this.ids), item.orderId)
})
return new Set(this.ids).has(item.orderId)
})
if(!orderFeeDetailsVOList.length) { if (!orderFeeDetailsVOList.length) {
this.$message.error("请选择订单") this.$message.error("请选择订单")
return
} }
feeApplicationBatch({ feeApplicationBatch({
...@@ -484,7 +487,8 @@ export default { ...@@ -484,7 +487,8 @@ export default {
...this.batchApplyDetailsInfoVO, ...this.batchApplyDetailsInfoVO,
orderFeeDetailsVOList orderFeeDetailsVOList
}, },
copyUserId: this.selectedUsers copyUserId: this.selectedUsers,
details: "-"
}).then((r) => { }).then((r) => {
if (r.code === 0) { if (r.code === 0) {
this.$message.success(this.$t("添加成功")) this.$message.success(this.$t("添加成功"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment