From e37e45cfe1123928dba5d9c5a427b0ee497b7ad6 Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期二, 23 八月 2022 03:21:32 +0800
Subject: [PATCH] 修复算法配置的字段内容

---
 src/views/report/components/SettingBox.vue |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/src/views/report/components/SettingBox.vue b/src/views/report/components/SettingBox.vue
index ffc3f54..6b65a4f 100644
--- a/src/views/report/components/SettingBox.vue
+++ b/src/views/report/components/SettingBox.vue
@@ -3,7 +3,14 @@
     <div class="title">浜嬩欢鎺ㄩ�侀厤缃�</div>
     <div class="close iconfont" @click="$emit('close')">&#xe60f;</div>
     <div class="content">
-      <FormArea :id="id" @close="$emit('close')" v-if="activeTab === 0"></FormArea>
+      <FormArea
+        :id="id"
+        :node="nodeList"
+        :camera="camera"
+        :menu="menu"
+        @close="$emit('close')"
+        v-if="activeTab === 0"
+      ></FormArea>
     </div>
   </div>
 </template>
@@ -17,7 +24,9 @@
   },
   props: {
     id: {},
-    nodeList: {}
+    nodeList: {},
+    camera: {},
+    menu: {}
   },
   data() {
     return {
@@ -31,10 +40,10 @@
 .SettingBox {
   position: fixed;
   top: 50%;
-  left: 50%;
+  left: 60%;
   margin-top: -354px;
   margin-left: -500px;
-  width: 1000px;
+  width: 700px;
   height: 708px;
   background-color: #fff;
   box-shadow: 0px 2px 16px 0px rgba(0, 43, 106, 0.25);

--
Gitblit v1.8.0