Merge branch 'main' of ssh://18.167.251.121:10002/aidlab/FiDA_Front

This commit is contained in:
X1627315083@163.com
2026-03-31 15:58:42 +08:00
5 changed files with 20 additions and 18 deletions

View File

@@ -62,7 +62,6 @@
<threeModel :currentData="currentData" />
</template>
</baseModal>
<Assistant />
</template>
<script setup lang="ts">
@@ -70,7 +69,6 @@
import { computed, ref, watch, onMounted, nextTick, provide, onBeforeUnmount } from 'vue'
import { useLayout } from '@/utils/treeDiagram'
import { NODE_TYPE, NODE_COMPONENT } from './tools/index.d'
import Assistant from '@/components/Assistant/assistant.vue'
// 组件
import headerTools from './components/header-tools.vue'
import zoom from '../components/zoom.vue'

View File

@@ -11,6 +11,7 @@
>
<slot></slot>
<my-info />
<Assistant />
<div class="close-btn" @click="close">
<svg-icon name="back-white" color="#fff" size="18" />
</div>
@@ -20,6 +21,7 @@
<script setup lang="ts">
import { ref, watch } from 'vue'
import MyInfo from '@/components/MyInfo.vue'
import Assistant from '@/components/Assistant/assistant.vue'
const props = defineProps({
modelValue: { default: false, type: Boolean },
transitionTime: { default: 300, type: Number },