fix:修复限时秒杀折扣价修改功能

This commit is contained in:
hufflzp 2025-12-23 16:42:44 +08:00
parent c1220c0d27
commit 3bb8fb198b

View File

@ -189,7 +189,10 @@
async fetchData() {
this.listLoading = true
const { data } = await getActivityBuyItems(this.queryForm)
this.list = data.items[0].item
this.list = data.items
this.list.forEach((item,index) => {
item.item_number = data.items[index].item[index].item_number
});
this.total = data.records
this.listLoading = false
},