From a58ef20fab74a3536ac5f402660846c9357ceccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=94=E5=BF=B5?= <12574910+72wo@users.noreply.github.com> Date: Wed, 15 Apr 2026 00:19:21 +0800 Subject: [PATCH] 1 --- modules/config/service/shiny.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/config/service/shiny.go b/modules/config/service/shiny.go index 4b0788fb3..aefb921bf 100644 --- a/modules/config/service/shiny.go +++ b/modules/config/service/shiny.go @@ -21,7 +21,11 @@ func NewShinyService() *ShinyService { &cool.Service{ Model: model.NewColorfulSkin(), ListQueryOp: &cool.QueryOp{ - FieldEQ: []string{"is_enable"}, + Where: func(ctx context.Context) []g.Array { + return []g.Array{ + {"is_enable", 1}, + } + }, }, InsertParam: func(ctx context.Context) g.MapStrAny { admin := cool.GetAdmin(ctx)