|
|
@@ -11,13 +11,13 @@ const iot = {
|
|
|
children: [
|
|
|
{
|
|
|
path: '/dashboard',
|
|
|
- name: '首页',
|
|
|
+ name: '系统概览',
|
|
|
icon: 'DashboardOutlined',
|
|
|
component: () => import('@/pages/iot/dashboard/deviceAccess/index.vue')
|
|
|
},
|
|
|
{
|
|
|
path: '/product',
|
|
|
- name: '产品',
|
|
|
+ name: '产品模型',
|
|
|
redirect: '/product/index',
|
|
|
icon: 'AppstoreOutlined',
|
|
|
children: [
|
|
|
@@ -41,7 +41,7 @@ const iot = {
|
|
|
},
|
|
|
{
|
|
|
path: '/device',
|
|
|
- name: '设备',
|
|
|
+ name: '设备管理',
|
|
|
redirect: '/device/index',
|
|
|
icon: 'RobotOutlined',
|
|
|
children: [
|
|
|
@@ -75,7 +75,7 @@ const iot = {
|
|
|
},
|
|
|
{
|
|
|
path: '/rule',
|
|
|
- name: '规则',
|
|
|
+ name: '数据规则',
|
|
|
redirect: '/rule/forward',
|
|
|
icon: 'AimOutlined',
|
|
|
children: [
|
|
|
@@ -185,17 +185,26 @@ const iot = {
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/deviceDoc',
|
|
|
- name: '设备接入文档',
|
|
|
- component: () => import('@/pages/iot/doc/deviceDoc.vue'),
|
|
|
- icon: 'BookOutlined'
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/dataDoc',
|
|
|
- name: '数据服务文档',
|
|
|
- component: () => import('@/pages/iot/doc/dataDoc.vue'),
|
|
|
- icon: 'CoffeeOutlined'
|
|
|
+ path: '/doc',
|
|
|
+ name: '使用文档',
|
|
|
+ redirect: '',
|
|
|
+ icon: 'SnippetsOutlined',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/deviceDoc',
|
|
|
+ name: '设备接入文档',
|
|
|
+ component: () => import('@/pages/iot/doc/deviceDoc.vue'),
|
|
|
+ icon: 'BookOutlined'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/dataDoc',
|
|
|
+ name: '数据服务文档',
|
|
|
+ component: () => import('@/pages/iot/doc/dataDoc.vue'),
|
|
|
+ icon: 'CoffeeOutlined'
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
+
|
|
|
]
|
|
|
}
|
|
|
|