diff --git a/honey_box/pages/infinite/bonus_house_details.vue b/honey_box/pages/infinite/bonus_house_details.vue
index 4c7671a0..8e2b6452 100644
--- a/honey_box/pages/infinite/bonus_house_details.vue
+++ b/honey_box/pages/infinite/bonus_house_details.vue
@@ -4,7 +4,7 @@
style="width: 686rpx; height: 152rpx; background-color: #FFFFFF; border-radius: 16rpx; margin: 0 auto;">
+ :src="$img1('common/logo.jpg')">
{{
bonusData.title }}
diff --git a/server/HoneyBox/src/HoneyBox.Admin/admin-web/src/views/business/statistics/box-profit.vue b/server/HoneyBox/src/HoneyBox.Admin/admin-web/src/views/business/statistics/box-profit.vue
index 94416e3d..ecdc729d 100644
--- a/server/HoneyBox/src/HoneyBox.Admin/admin-web/src/views/business/statistics/box-profit.vue
+++ b/server/HoneyBox/src/HoneyBox.Admin/admin-web/src/views/business/statistics/box-profit.vue
@@ -276,8 +276,13 @@ async function loadData() {
}
const res = await getBoxProfitList(params) as any
+ console.log('box-profit-list 响应:', res)
+ console.log('res.data:', res.data)
+ console.log('res.data 类型:', typeof res.data)
+ console.log('res.data 是否数组:', Array.isArray(res.data))
if (res.code === 0) {
tableData.value = res.data
+ console.log('tableData 赋值后:', tableData.value)
pagination.total = res.count
}
} catch (error) {