fix: 增加设备详情页
This commit is contained in:
parent
42d18f687b
commit
b9d6ca5854
|
@ -71,6 +71,10 @@ export default [
|
|||
path: '/device/Instance',
|
||||
component: () => import('@/views/device/Instance/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/device/Instance/detail/:id',
|
||||
component: () => import('@/views/device/Instance/detail.vue')
|
||||
},
|
||||
// link 运维管理
|
||||
{
|
||||
path: '/link/log',
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
<template>
|
||||
<Metadata
|
||||
type="device"
|
||||
></Metadata>
|
||||
</template>
|
||||
<script setup lang="ts" name="InstanceDetail">
|
||||
import Metadata from '@/views/device/components/Metadata/index.vue'
|
||||
</script>
|
||||
<style scoped lang="less"></style>
|
Loading…
Reference in New Issue