feat: 新增设备补点模块
parent
0d2be75237
commit
3cb0bd2d4f
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* @Author: donghao donghao@supervision.ltd
|
||||
* @Date: 2024-08-02 10:50:24
|
||||
* @LastEditors: donghao donghao@supervision.ltd
|
||||
* @LastEditTime: 2024-08-02 10:57:01
|
||||
* @FilePath: \General-AI-Platform-Web-Client\src\router\modules\deviceSetting.ts
|
||||
* @Description: 设备布点路由模块
|
||||
*/
|
||||
import { $t } from "@/plugins/i18n";
|
||||
|
||||
export default {
|
||||
path: "/deviceSetting",
|
||||
meta: {
|
||||
title: $t("menus.hsdeviceSetting"),
|
||||
icon: "icon-shebeiguanli-weixuan",
|
||||
// showLink: false,
|
||||
bodyClass: "deviceSetting_page",
|
||||
rank: 8,
|
||||
roles: ["admin", "common"]
|
||||
},
|
||||
component: () => import("@/views/deviceSetting/index.vue"),
|
||||
name: "DeviceSetting"
|
||||
} as RouteConfigsTable;
|
Loading…
Reference in New Issue