From 4b90690fc6715504b9df5f9e4d76a7aea849ed7d Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@smartai.com> Date: 星期日, 28 八月 2022 23:14:50 +0800 Subject: [PATCH] 添加排查标记. 修正饼图提示 --- src/views/GB28181/components/SettingBox.vue | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/views/GB28181/components/SettingBox.vue b/src/views/GB28181/components/SettingBox.vue index 0815666..fcf1cca 100644 --- a/src/views/GB28181/components/SettingBox.vue +++ b/src/views/GB28181/components/SettingBox.vue @@ -27,9 +27,18 @@ </div> </div> - <FormArea @close="$emit('close')" v-if="activeTab === 0"></FormArea> - <TableArea v-if="activeTab === 1"></TableArea> - <TreeArea @close="$emit('close')" v-if="activeTab === 2"></TreeArea> + <FormArea + :id="id" + @close="$emit('close')" + v-if="activeTab === 0" + ></FormArea> + <TableArea :id="id" v-if="activeTab === 1"></TableArea> + <TreeArea + :id="id" + :nodeList="nodeList" + @close="$emit('close')" + v-if="activeTab === 2" + ></TreeArea> </div> </div> </template> @@ -45,6 +54,10 @@ TableArea, TreeArea, }, + props: { + id: {}, + nodeList: {}, + }, data() { return { activeTab: 0, -- Gitblit v1.8.0