Compare commits

..

2 Commits

Author SHA1 Message Date
lzh
4047d10ed4 Merge branch 'dev-lzh-0905' into dev 2025-10-17 10:33:59 +08:00
lzh
226b170dce 1 2025-10-17 10:33:42 +08:00

View File

@ -2,6 +2,7 @@ package bundle
import (
"context"
"encoding/json"
"errors"
"fmt"
"fonchain-fiee/api/bundle"
@ -394,5 +395,7 @@ func GetBalanceLayout(ctx *gin.Context) {
service.Error(ctx, err)
return
}
service.Success(ctx, res.Data)
var j any
json.Unmarshal([]byte(res.Data), &j)
service.Success(ctx, j)
}