diff --git a/pkg/types/app.go b/pkg/types/app.go index a6e33985..8bc1448f 100644 --- a/pkg/types/app.go +++ b/pkg/types/app.go @@ -10,6 +10,7 @@ type App struct { // AppCenter 应用中心结构 type AppCenter struct { + Icon string `json:"icon"` Name string `json:"name"` Description string `json:"description"` Slug string `json:"slug"` diff --git a/web/src/views/app/IndexView.vue b/web/src/views/app/IndexView.vue index f3cfb8fe..fec3f0c1 100644 --- a/web/src/views/app/IndexView.vue +++ b/web/src/views/app/IndexView.vue @@ -25,7 +25,7 @@ const columns: any = [ render(row: any) { return h(TheIcon, { icon: row.icon, - size: 24 + size: 26 }) } },