mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-17 11:13:11 +08:00
style: 修改名称
This commit is contained in:
parent
7747ac07ed
commit
a3ec971be2
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="go-edit-bottom">
|
||||
<History />
|
||||
<EditHistory />
|
||||
|
||||
<n-space class="bottom-ri">
|
||||
<!-- 快捷键提示 -->
|
||||
@ -60,7 +60,7 @@
|
||||
<script setup lang="ts">
|
||||
import { reactive, ref, toRefs, watchEffect } from 'vue'
|
||||
import { icon } from '@/plugins'
|
||||
import { History } from '../History/index'
|
||||
import { EditHistory } from '../EditHistory/index'
|
||||
import { useDesignStore } from '@/store/modules/designStore/designStore'
|
||||
const { LockClosedOutlineIcon, LockOpenOutlineIcon } = icon.ionicons5
|
||||
const { DicomOverlayIcon } = icon.carbon
|
||||
|
@ -0,0 +1,3 @@
|
||||
import EditHistory from './index.vue'
|
||||
|
||||
export { EditHistory }
|
@ -0,0 +1,3 @@
|
||||
import EditShapeBox from './index.vue'
|
||||
|
||||
export { EditShapeBox }
|
@ -1,3 +0,0 @@
|
||||
import History from './index.vue'
|
||||
|
||||
export { History }
|
@ -1,3 +0,0 @@
|
||||
import ShapeBox from './index.vue'
|
||||
|
||||
export { ShapeBox }
|
@ -14,7 +14,7 @@
|
||||
<!-- 展示 -->
|
||||
<EditRange ref="editRangeRef">
|
||||
<!-- 图表 -->
|
||||
<ShapeBox
|
||||
<EditShapeBox
|
||||
v-for="(item, index) in chartEditStore.getComponentList"
|
||||
:key="item.id"
|
||||
:data-id="item.id"
|
||||
@ -33,7 +33,7 @@
|
||||
:themeData="themeData"
|
||||
:style="useSizeStyle(item.attr)"
|
||||
/>
|
||||
</ShapeBox>
|
||||
</EditShapeBox>
|
||||
</EditRange>
|
||||
</div>
|
||||
<!-- 底部控制 -->
|
||||
@ -48,7 +48,7 @@ import { ref, onMounted, computed } from 'vue'
|
||||
import { ContentBox } from '../ContentBox/index'
|
||||
import { EditRange } from './components/EditRange'
|
||||
import { EditBottom } from './components/EditBottom'
|
||||
import { ShapeBox } from './components/ShapeBox/index'
|
||||
import { EditShapeBox } from './components/EditShapeBox/index'
|
||||
|
||||
import { useLayout } from './hooks/useLayout.hook'
|
||||
import { useAddKeyboard } from '../hooks/useKeyboard.hook'
|
||||
|
Loading…
x
Reference in New Issue
Block a user