From 67a6d5cea80270606a109d8450fa55de0093d815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Thu, 17 Oct 2024 21:22:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/types/app.go | 1 + web/src/views/app/IndexView.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 }) } },