确认列表过滤

This commit is contained in:
lzh 2025-06-23 16:17:10 +08:00
parent 320e110f8c
commit beb0ab72ab

View File

@ -6,6 +6,7 @@ import (
"fonchain-fiee/api/bundle"
"fonchain-fiee/api/cast"
"fonchain-fiee/pkg/service"
"strconv"
bundleModel "fonchain-fiee/pkg/model/bundle"
"fonchain-fiee/pkg/model/login"
@ -127,6 +128,8 @@ func GetToBeComfirmedWorks(c *gin.Context) {
service.Error(c, err)
return
}
userInfo := login.GetUserInfoFromC(c)
req.ArtistUuid = strconv.Itoa(int(userInfo.ID))
res, err := service.BundleProvider.ToBeComfirmedWorks(context.Background(), &req)
if err != nil {
service.Error(c, err)