Skip to content

Commit

Permalink
fix: 账单筛选 参与者筛选变量错误
Browse files Browse the repository at this point in the history
  • Loading branch information
aweikalee committed Sep 18, 2024
1 parent f64485e commit cfefa82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Bill/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ export default class BillIndex extends Vue {
currency.includes(item.currency) &&
pay_mode.includes(item.pay_mode) &&
item.payer.find((p) => payer.includes(p)) &&
item.participant.find((p) => payer.includes(p))
item.participant.find((p) => participant.includes(p))
)
}).forEach((item) => {
const time = ts.toUTCZeroClock(item.create_time)
Expand Down

0 comments on commit cfefa82

Please sign in to comment.