You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
965 B
TypeScript

/*
* @Author: donghao donghao@supervision.ltd
* @Date: 2024-01-12 14:35:28
* @LastEditors: donghao donghao@supervision.ltd
* @LastEditTime: 2024-02-26 14:45:54
* @FilePath: \General-AI-Platform-Web-Client\src\router\modules\workbench.ts
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
import { $t } from "@/plugins/i18n";
const Layout = () => import("@/layout/dataScreenIndex.vue");
export default {
path: "/",
name: "Workbench",
component: Layout,
redirect: "/workbench",
meta: {
title: $t("menus.dshome"),
icon: "homeIcon",
rank: 1
},
children: [
{
path: "/workbench",
name: "Workbench",
component: () => import("@/pages/dataScreen/views/home/homeIndex.vue"),
meta: {
title: "工作台",
roles: ["admin", "common"]
}
}
]
} as RouteConfigsTable;