From accebdce93486d3b4f26e55ffdea047549cce20c Mon Sep 17 00:00:00 2001 From: cuijian <cuijian@xalxzn.com> Date: 星期一, 28 七月 2025 21:12:38 +0800 Subject: [PATCH] Merge branch 'master' of http://125.76.225.53:18448/r/xhj/vue_mdc_xhj --- src/views/mdc/base/DeviceLog.vue | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/src/views/mdc/base/DeviceLog.vue b/src/views/mdc/base/DeviceLog.vue new file mode 100644 index 0000000..45817e3 --- /dev/null +++ b/src/views/mdc/base/DeviceLog.vue @@ -0,0 +1,46 @@ +<template> + <a-card :bordered="false"> + <div style="width: 100%; height: 100%;overflow: hidden"> + <a-row type="flex" :gutter="16"> + <a-col :md="5" :sm="24"> + <base-tree @getCurrSelected="changeSelectionNode"></base-tree> + </a-col> + <a-col :md="24-5" :sm="24"> + <log-info :equipment="selectEquipment"></log-info> + </a-col> + </a-row> + </div> + </a-card> +</template> + +<script> + import { JeecgListMixin } from '@/mixins/JeecgListMixin' + import BaseTree from '../common/BaseTree' + import LogInfo from './modules/DeviceLog/LogInfo' + + export default { + name: 'DeviceLog', + components: { + BaseTree, + LogInfo, + }, + data() { + return { + description: '璁惧淇℃伅', + selectEquipment:{}, + equipmentStatisticsInfo:{}, + url:{ + equipmentStatistics:"/mdc/equipment/equipmentStatistics" + } + } + }, + created() { + }, + methods: { + changeSelectionNode(val){ + this.selectEquipment = val + } + } + + } +</script> -- Gitblit v1.9.3