This commit is contained in:
zpc 2026-02-04 02:41:06 +08:00
parent d11d61b4f1
commit c08415fc34
2 changed files with 6 additions and 1 deletions

View File

@ -4,7 +4,7 @@
style="width: 686rpx; height: 152rpx; background-color: #FFFFFF; border-radius: 16rpx; margin: 0 auto;">
<image style="width: 108rpx; height: 108rpx;position: absolute; left: 24rpx; top: 22rpx;"
:src="$img1('checkin/logo2.png')"></image>
:src="$img1('common/logo.jpg')"></image>
<text style="font-size: 24rpx; color: #333333; position: absolute; left: 146rpx; top: 34rpx;">{{
bonusData.title }}</text>

View File

@ -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) {