From 2e4133d2bbb0f4626cf336f3e456783b9fb7867e Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期四, 04 八月 2022 02:40:08 +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