From ff2fca16814fe89901bfa08d4ef00ef590a3ff28 Mon Sep 17 00:00:00 2001 From: Qiuxia Fan Date: Mon, 21 Mar 2022 14:27:56 +0800 Subject: [PATCH] update icons --- src/assets/icons/cloud_queue.svg | 17 +++++++++++++++++ src/assets/icons/language.svg | 17 +++++++++++++++++ src/assets/icons/linear_scale.svg | 17 +++++++++++++++++ src/layout/components/SideBar.vue | 2 +- src/router/browser.ts | 2 +- src/router/database.ts | 2 +- src/router/functions.ts | 2 +- src/router/selfObservability.ts | 2 +- src/router/serviceMesh.ts | 2 +- 9 files changed, 57 insertions(+), 6 deletions(-) create mode 100644 src/assets/icons/cloud_queue.svg create mode 100644 src/assets/icons/language.svg create mode 100644 src/assets/icons/linear_scale.svg diff --git a/src/assets/icons/cloud_queue.svg b/src/assets/icons/cloud_queue.svg new file mode 100644 index 00000000..4b1da735 --- /dev/null +++ b/src/assets/icons/cloud_queue.svg @@ -0,0 +1,17 @@ + + + + diff --git a/src/assets/icons/language.svg b/src/assets/icons/language.svg new file mode 100644 index 00000000..eab0146d --- /dev/null +++ b/src/assets/icons/language.svg @@ -0,0 +1,17 @@ + + + + diff --git a/src/assets/icons/linear_scale.svg b/src/assets/icons/linear_scale.svg new file mode 100644 index 00000000..6b739747 --- /dev/null +++ b/src/assets/icons/linear_scale.svg @@ -0,0 +1,17 @@ + + + + diff --git a/src/layout/components/SideBar.vue b/src/layout/components/SideBar.vue index 7ca76b93..31da52ca 100644 --- a/src/layout/components/SideBar.vue +++ b/src/layout/components/SideBar.vue @@ -67,7 +67,7 @@ limitations under the License. --> @click="changePage(menu)" v-else > - + = [ name: "Browser", meta: { title: "browser", - icon: "epic", + icon: "language", }, redirect: "/browser", component: Layout, diff --git a/src/router/database.ts b/src/router/database.ts index 199cbc14..ce566976 100644 --- a/src/router/database.ts +++ b/src/router/database.ts @@ -23,7 +23,7 @@ export const routesDatabase: Array = [ name: "Database", meta: { title: "database", - icon: "epic", + icon: "bar_chart", }, redirect: "/database", component: Layout, diff --git a/src/router/functions.ts b/src/router/functions.ts index a6b56edd..7ae9bed1 100644 --- a/src/router/functions.ts +++ b/src/router/functions.ts @@ -23,7 +23,7 @@ export const routesFunctions: Array = [ name: "Functions", meta: { title: "functions", - icon: "epic", + icon: "cloud_queue", }, redirect: "/functions", component: Layout, diff --git a/src/router/selfObservability.ts b/src/router/selfObservability.ts index 98a8be8a..1cf39360 100644 --- a/src/router/selfObservability.ts +++ b/src/router/selfObservability.ts @@ -24,7 +24,7 @@ export const routesSelf: Array = [ redirect: "/self/skyWalkingServer", meta: { title: "selfObservability", - icon: "bar_chart", + icon: "logo", hasGroup: true, }, component: Layout, diff --git a/src/router/serviceMesh.ts b/src/router/serviceMesh.ts index d0f1480b..946f1d1c 100644 --- a/src/router/serviceMesh.ts +++ b/src/router/serviceMesh.ts @@ -24,7 +24,7 @@ export const routesMesh: Array = [ redirect: "/mesh/services", meta: { title: "serviceMesh", - icon: "bar_chart", + icon: "epic", hasGroup: true, }, component: Layout,