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

6

parent 896e5d89
......@@ -472,11 +472,14 @@ export default {
})
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("请选择订单")
return
}
feeApplicationBatch({
......@@ -484,7 +487,8 @@ export default {
...this.batchApplyDetailsInfoVO,
orderFeeDetailsVOList
},
copyUserId: this.selectedUsers
copyUserId: this.selectedUsers,
details: "-"
}).then((r) => {
if (r.code === 0) {
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