瀏覽代碼

新增路由 更多设备

yunxing 4 年之前
父節點
當前提交
56f28e952c
共有 2 個文件被更改,包括 43 次插入0 次删除
  1. 11 0
      src/router/index.ts
  2. 32 0
      src/views/equipmentFacilities/MoreEquipmentList.vue

+ 11 - 0
src/router/index.ts

@@ -66,6 +66,17 @@ const routes: Array<RouteConfig> = [
             hideNarBar: true,
         },
     },
+    // 设备设施 --> 更多设备卡片 跳转到的设备列表页面
+    {
+        path: '/moreEquipmentList',
+        name: 'MoreEquipmentList',
+        component: () => import(/* webpackChunkName: "equipmentList" */ '../views/equipmentFacilities/MoreEquipmentList.vue'),
+        meta: {
+            keepAlive: false,
+            showTabbar: false,
+            hideNarBar: true,
+        },
+    },
     // 设备设置 --> 机房平面布置图
     {
         path: '/engineRoomPicture',

+ 32 - 0
src/views/equipmentFacilities/MoreEquipmentList.vue

@@ -0,0 +1,32 @@
+<template> 
+  <div>
+    MoreEquipmentList
+  </div>
+</template>
+<script>
+export default {
+  name: '',
+  props: {
+    
+  },
+  data() {
+    return {
+      
+    }
+  },
+  components: {
+
+},
+  beforeMount() {
+  },
+  mounted() {
+    
+  },
+  methods: {
+
+  },
+}
+</script>
+<style lang='less' scoped>
+  
+</style>