修改明细导出传参方式

This commit is contained in:
Dragon
2024-03-25 17:31:28 +08:00
parent 7f16a7c4b3
commit 14d17603d8

View File

@@ -154,7 +154,7 @@ export default {
// 导出
exportDate() {
luckyGiftRewardRecordExport({
giftId: this.inquire.giftId,
giftId: this.inquire.giftId == null || this.inquire.giftId == "null"? null : this.inquire.giftId,
sendErBanNo: this.inquire.senUserId,
}).then();
},