第二代仪评指标联识别接口
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user