89 lines
3.0 KiB
Vue
89 lines
3.0 KiB
Vue
<template>
|
|
<DeviceDetailsHeader
|
|
:loading="loading"
|
|
:product="product"
|
|
:device="device"
|
|
@refresh="getDeviceData(id)"
|
|
/>
|
|
<el-col>
|
|
<el-tabs v-model="activeTab">
|
|
<el-tab-pane label="设备信息" name="info">
|
|
<DeviceDetailsInfo v-if="activeTab === 'info'" :product="product" :device="device" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="Topic 列表" />
|
|
<el-tab-pane label="物模型数据" name="model">
|
|
<DeviceDetailsModel v-if="activeTab === 'model'" :product="product" :device="device" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="子设备管理" v-if="product.deviceType === DeviceTypeEnum.GATEWAY" />
|
|
<el-tab-pane label="设备影子" />
|
|
<el-tab-pane label="设备日志" name="log">
|
|
<DeviceDetailsLog v-if="activeTab === 'log'" :device-key="device.deviceKey" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="模拟设备" name="simulator">
|
|
<DeviceDetailsSimulator
|
|
v-if="activeTab === 'simulator'"
|
|
:product="product"
|
|
:device="device"
|
|
/>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="设备配置" name="config">
|
|
<DeviceDetailConfig
|
|
v-if="activeTab === 'config'"
|
|
:device="device"
|
|
@success="getDeviceData"
|
|
/>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-col>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { useTagsViewStore } from '@/store/modules/tagsView'
|
|
import { DeviceApi, DeviceVO } from '@/api/iot/device/device'
|
|
import { DeviceTypeEnum, ProductApi, ProductVO } from '@/api/iot/product/product'
|
|
import DeviceDetailsHeader from './DeviceDetailsHeader.vue'
|
|
import DeviceDetailsInfo from './DeviceDetailsInfo.vue'
|
|
import DeviceDetailsModel from './DeviceDetailsModel.vue'
|
|
import DeviceDetailsLog from './DeviceDetailsLog.vue'
|
|
import DeviceDetailsSimulator from './DeviceDetailsSimulator.vue'
|
|
import DeviceDetailConfig from './DeviceDetailConfig.vue'
|
|
|
|
defineOptions({ name: 'IoTDeviceDetail' })
|
|
|
|
const route = useRoute()
|
|
const message = useMessage()
|
|
const id = route.params.id // 将字符串转换为数字
|
|
const loading = ref(true) // 加载中
|
|
const product = ref<ProductVO>({} as ProductVO) // 产品详情
|
|
const device = ref<DeviceVO>({} as DeviceVO) // 设备详情
|
|
const activeTab = ref('info') // 默认激活的标签页
|
|
|
|
/** 获取设备详情 */
|
|
const getDeviceData = async () => {
|
|
loading.value = true
|
|
try {
|
|
device.value = await DeviceApi.getDevice(id)
|
|
await getProductData(device.value.productId)
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
/** 获取产品详情 */
|
|
const getProductData = async (id: number) => {
|
|
product.value = await ProductApi.getProduct(id)
|
|
}
|
|
|
|
/** 初始化 */
|
|
const { delView } = useTagsViewStore() // 视图操作
|
|
const { currentRoute } = useRouter() // 路由
|
|
onMounted(async () => {
|
|
if (!id) {
|
|
message.warning('参数错误,产品不能为空!')
|
|
delView(unref(currentRoute))
|
|
return
|
|
}
|
|
await getDeviceData()
|
|
activeTab.value = (route.query.tab as string) || 'info'
|
|
})
|
|
</script>
|