第二代仪评指标联识别接口

This commit is contained in:
BBIT-Kai
2025-09-30 13:48:59 +08:00
parent d71518931c
commit 3fb43c09f3
14 changed files with 323 additions and 36 deletions
@@ -7,7 +7,7 @@ const routes: RouteRecordRaw[] = [
{
meta: {
icon: 'ic:round-remove-red-eye',
authority: ['iva', 'sca', 'ysa'],
authority: ['iva', 'sca', 'ysa', 'ticket'],
keepAlive: true,
order: 2,
title: $t('计算机视觉'),
@@ -0,0 +1,67 @@
import type { RouteRecordRaw } from 'vue-router';
import { $t } from '#/locales';
const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView);
const routes: RouteRecordRaw[] = [
{
meta: {
icon: 'ic:round-handyman',
keepAlive: false,
authority: ['set'],
order: 2,
title: $t('控制后台'),
},
name: 'Set',
path: '/set',
children: [
{
name: 'Kong-set',
path: '/set/kong',
component: IFrameView,
meta: {
icon: 'mdi:server-network',
link: 'http://10.10.10.9:8002/',
keepAlive: true,
title: '网关控制后台',
},
},
{
name: 'Milvus-set',
path: '/set/kong',
component: IFrameView,
meta: {
icon: 'mdi:database',
link: 'http://10.10.10.9:3000/',
keepAlive: true,
title: 'Milvus Attu后台',
},
},
{
name: 'Milvus-webui',
path: '/set/kong',
component: IFrameView,
meta: {
icon: 'mdi:monitor-dashboard',
link: 'http://10.10.10.9:9091/webui',
keepAlive: true,
title: 'Milvus 自带后台',
},
},
{
name: 'RocketMQ-webui',
path: '/set/rocketMQ',
component: IFrameView,
meta: {
icon: 'mdi:server-network',
link: 'http://10.10.10.9:8082',
keepAlive: true,
title: 'RocketMQ可视化后台',
},
},
],
},
];
export default routes;