This commit is contained in:
lzh 2025-10-17 10:33:42 +08:00
parent 127da23d69
commit 226b170dce

View File

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