Forráskód Böngészése

fix(*): logo 设备模拟器

wangxiao 2 éve
szülő
commit
0797e5489e

BIN
src/assets/logo/logo-blue-v2.png


BIN
src/assets/logo/logo-blue.png


+ 1 - 1
src/layout/navbar.vue

@@ -126,7 +126,7 @@ const changeRouter = (route: ROUTER.RoutesProps) => {
   justify-content: flex-start;
   align-items: center;
   img {
-    width: 50px;
+    width: 115px;
     height: 50px;
     display: block;
   }

+ 3 - 0
src/pages/Iot/device/simulator.vue

@@ -0,0 +1,3 @@
+<template>
+  <a-card></a-card>
+</template>

+ 11 - 6
src/router/index.ts

@@ -70,6 +70,11 @@ const iot = {
           path: '/device/analysis',
           name: '设备分析',
           component: () => import('@/pages/iot/device/analysis.vue')
+        },
+        {
+          path: '/device/simulator',
+          name: '设备模拟器',
+          component: () => import('@/pages/iot/device/simulator.vue')
         }
       ]
     },
@@ -251,13 +256,13 @@ const schedule = {
           component: () => import('@/pages/schedule/dataLake/dataTool/index.vue')
         }
       ]
+    },
+    {
+      path: '/APICenter',
+      name: '数据编排',
+      icon: 'ApiOutlined',
+      component: () => import('@/pages/schedule/APICenter/index.vue')
     }
-    // {
-    //   path: '/APICenter',
-    //   name: '数据服务',
-    //   icon: 'ApiOutlined',
-    //   component: () => import('@/pages/schedule/APICenter/index.vue')
-    // }
   ]
 }