style: 修改小象位置
This commit is contained in:
@@ -62,6 +62,7 @@
|
|||||||
<threeModel :currentData="currentData" />
|
<threeModel :currentData="currentData" />
|
||||||
</template>
|
</template>
|
||||||
</baseModal>
|
</baseModal>
|
||||||
|
<Assistant />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
@@ -69,6 +70,7 @@
|
|||||||
import { computed, ref, watch, onMounted, nextTick, provide, onBeforeUnmount } from 'vue'
|
import { computed, ref, watch, onMounted, nextTick, provide, onBeforeUnmount } from 'vue'
|
||||||
import { useLayout } from '@/utils/treeDiagram'
|
import { useLayout } from '@/utils/treeDiagram'
|
||||||
import { NODE_TYPE, NODE_COMPONENT } from './tools/index.d'
|
import { NODE_TYPE, NODE_COMPONENT } from './tools/index.d'
|
||||||
|
import Assistant from '@/components/Assistant/assistant.vue'
|
||||||
// 组件
|
// 组件
|
||||||
import headerTools from './components/header-tools.vue'
|
import headerTools from './components/header-tools.vue'
|
||||||
import zoom from '../components/zoom.vue'
|
import zoom from '../components/zoom.vue'
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
>
|
>
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
<my-info />
|
<my-info />
|
||||||
<Assistant />
|
|
||||||
<div class="close-btn" @click="close">
|
<div class="close-btn" @click="close">
|
||||||
<svg-icon name="back-white" color="#fff" size="18" />
|
<svg-icon name="back-white" color="#fff" size="18" />
|
||||||
</div>
|
</div>
|
||||||
@@ -21,7 +20,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, watch } from 'vue'
|
import { ref, watch } from 'vue'
|
||||||
import MyInfo from '@/components/MyInfo.vue'
|
import MyInfo from '@/components/MyInfo.vue'
|
||||||
import Assistant from '@/components/Assistant/assistant.vue'
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: { default: false, type: Boolean },
|
modelValue: { default: false, type: Boolean },
|
||||||
transitionTime: { default: 300, type: Number },
|
transitionTime: { default: 300, type: Number },
|
||||||
|
|||||||
Reference in New Issue
Block a user