From c08415fc3427e92114a8701ebd4fd55cae910c58 Mon Sep 17 00:00:00 2001 From: zpc Date: Wed, 4 Feb 2026 02:41:06 +0800 Subject: [PATCH] 231 --- honey_box/pages/infinite/bonus_house_details.vue | 2 +- .../admin-web/src/views/business/statistics/box-profit.vue | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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) {