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