diff --git a/dubbo-admin-frontend/src/api/menu.js b/dubbo-admin-frontend/src/api/menu.js index c94bb4202b0bddb208eec3763dc9dc31584046a4..9cc25bdeddfad0cd07aed9bed79cec0e1f6df77e 100644 --- a/dubbo-admin-frontend/src/api/menu.js +++ b/dubbo-admin-frontend/src/api/menu.js @@ -12,15 +12,8 @@ const Menu = [ { title: 'Load Balance', path: '/governance/loadbalance' } ] }, - { title: 'QoS', path: '/qos', icon: 'computer' }, - { - title: 'Service Info', - icon: 'info', - group: 'info', - items: [ - { title: 'Version', path: '/info/version' } - ] - } + { title: 'Service Test', path: '/test', icon: 'computer', badge: 'feature' }, + { title: 'Service Mock', path: '/mock', icon: 'computer', badge: 'feature' }, ] export default Menu diff --git a/dubbo-admin-frontend/src/components/public/Drawer.vue b/dubbo-admin-frontend/src/components/public/Drawer.vue index f463dba24c1a1833227cce353a81ea68289f9448..3d22df87c519da237e2526da5a3afe34c685af9d 100644 --- a/dubbo-admin-frontend/src/components/public/Drawer.vue +++ b/dubbo-admin-frontend/src/components/public/Drawer.vue @@ -46,6 +46,9 @@ {{ subItem.title }} + + {{subItem.badge}} + @@ -55,6 +58,9 @@ {{ item.icon }} {{ item.title }} + + {{item.badge}} + @@ -83,3 +89,10 @@ } } + +