fix:bug

feat:new border
This commit is contained in:
Free-sss 2025-08-27 10:01:26 +08:00
parent 12f617036c
commit a42398c669
11 changed files with 492 additions and 57 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="go-iframe-container" :style="{ width: w + 'px', height: h + 'px' }"> <div class="go-iframe-container" :style="{ width: w + 'px', height: h + 'px' }">
<iframe ref="iframeRef" class="iframe-content" src="/public/static/index.html"></iframe> <iframe ref="iframeRef" class="iframe-content" src="/static/index.html"></iframe>
</div> </div>
</template> </template>

View File

@ -3,44 +3,18 @@ import { PieCircleCommenConfig } from './index'
import { CreateComponentType } from '@/packages/index.d' import { CreateComponentType } from '@/packages/index.d'
import cloneDeep from 'lodash/cloneDeep' import cloneDeep from 'lodash/cloneDeep'
import dataJson from './data.json' import dataJson from './data.json'
export const includes = [] export const includes = ['legend']
// dataJson:{
// "dimensions": ["name", "value"],
// "source": [
// {
// "name": "分类一",
// "value": 94
// },
// {
// "name": "分类二",
// "value": 82
// },
// {
// "name": "分类三",
// "value": 78
// },
// {
// "name": "分类四",
// "value": 60
// }
// ]
// }
const otherConfig = { const otherConfig = {
// 轮播动画 // 轮播动画
isCarousel: false, isCarousel: false,
color: ['#3B72E8', '#45B5E3', '#50D4A8', '#F8B55B'],
} }
// ECharts配置 // ECharts配置
const option = { export const option = {
...otherConfig, ...otherConfig,
color: ['#3B72E8', '#45B5E3', '#50D4A8', '#F8B55B'],
// 使用dataset关联数据
dataset: {
...dataJson
},
tooltip: { tooltip: {
trigger: 'item', trigger: 'item',
formatter: '{b}: {c} ({d}%)' formatter: '{b}: {c} ({d}%)'
@ -96,7 +70,7 @@ const option = {
series: [ series: [
{ {
name: '总数', // name: '总数',
type: 'pie', type: 'pie',
radius: ['50%', '70%'], radius: ['50%', '70%'],
center: ['30%', '50%'], center: ['30%', '50%'],
@ -113,7 +87,8 @@ const option = {
show: false show: false
} }
} }
] ], // 使用dataset关联数据
dataset: { ...dataJson }
}; };
export default class Config extends PublicConfigClass implements CreateComponentType { export default class Config extends PublicConfigClass implements CreateComponentType {

View File

@ -1,21 +1,26 @@
<template> <template>
<div>
<!-- 基础配置可以复用PieCommon的配置面板 -->
<CollapseItem name="基础配置" :expanded="true">
<SettingItemBox name="图例">
<SettingItem name="显示">
<n-switch v-model:value="optionData.legend.show" size="small" />
</SettingItem>
</SettingItemBox>
</CollapseItem>
</div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { PropType, computed } from 'vue' import { PropType } from 'vue'
// //
import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting' import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
import { GlobalThemeJsonType } from '@/settings/chartThemes' import { option } from './config'
const props = defineProps({ defineProps({
optionData: { optionData: {
type: Object as PropType<GlobalThemeJsonType>, type: Object as PropType<typeof option>,
required: true required: true
} }
}) })
const config = computed(() => {
return props.optionData
})
</script> </script>

View File

@ -1,7 +1,9 @@
{ {
"dimensions": [ "dimensions": [
"name", "name",
"value" "value",
"itemColor",
"borderColor"
], ],
"source": [ "source": [
{ {

View File

@ -8,6 +8,6 @@ export const PieCircleCommenConfig: ConfigType = {
category: 'ConfinedSpace', category: 'ConfinedSpace',
categoryName: '有限空间', categoryName: '有限空间',
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
chartFrame: ChartFrameEnum.COMMON, chartFrame: ChartFrameEnum.ECHARTS,
image: 'PieCircleCommen.png' image: 'PieCircleCommen.png'
} }

View File

@ -1,5 +1,8 @@
<template> <template>
<v-chart ref="vChartRef" :theme="themeColor" :init-options="initOptions" :option="option" autoresize> </v-chart> <div class="go-border-box">
<v-chart ref="vChartRef" :theme="themeColor" :init-options="initOptions" :option="option" autoresize> </v-chart>
</div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@ -13,23 +16,16 @@ import { mergeTheme } from '@/packages/public/chart'
import config, { includes } from './config' import config, { includes } from './config'
import { useChartDataFetch } from '@/hooks' import { useChartDataFetch } from '@/hooks'
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
import { import {
DatasetComponent, DatasetComponent,
GridComponent, GridComponent,
TooltipComponent, TooltipComponent,
LegendComponent, LegendComponent,
TitleComponent TitleComponent, GraphicComponent
} from 'echarts/components' } from 'echarts/components'
use([
DatasetComponent,
CanvasRenderer,
PieChart,
GridComponent,
TooltipComponent,
LegendComponent,
TitleComponent
])
const props = defineProps({ const props = defineProps({
themeSetting: { themeSetting: {
@ -47,7 +43,16 @@ const props = defineProps({
}) })
const initOptions = useCanvasInitOptions(props.chartConfig.option, props.themeSetting) const initOptions = useCanvasInitOptions(props.chartConfig.option, props.themeSetting)
use([
DatasetComponent,
CanvasRenderer,
PieChart,
GridComponent,
TooltipComponent,
LegendComponent,
TitleComponent,
GraphicComponent
])
const option = computed(() => { const option = computed(() => {
return mergeTheme(props.chartConfig.option, props.themeSetting, includes) return mergeTheme(props.chartConfig.option, props.themeSetting, includes)
}) })
@ -126,3 +131,7 @@ onMounted(() => {
}) })
</script> </script>
<style lang="scss" scoped>
@include go(border-box) {}
</style>

View File

@ -0,0 +1,17 @@
import { PublicConfigClass } from '@/packages/public'
import { CreateComponentType } from '@/packages/index.d'
import { SmallBorder01Config } from './index'
import cloneDeep from 'lodash/cloneDeep'
export const option = {
colors: ['#1089ff', '#0000ff'],
backgroundColor: '#00000000'
}
export default class Config extends PublicConfigClass implements CreateComponentType {
public key = SmallBorder01Config.key
public chartConfig = cloneDeep(SmallBorder01Config)
public option = cloneDeep(option)
}

View File

@ -0,0 +1,54 @@
<template>
<CollapseItem name="边框" :expanded="true">
<SettingItemBox
:name="`颜色-${index + 1}`"
v-for="(item, index) in optionData.colors"
:key="index"
>
<SettingItem name="颜色">
<n-color-picker
size="small"
:modes="['hex']"
v-model:value="optionData.colors[index]"
></n-color-picker>
</SettingItem>
<SettingItem>
<n-button
size="small"
@click="optionData.colors[index] = option.colors[index]"
>
恢复默认
</n-button>
</SettingItem>
</SettingItemBox>
</CollapseItem>
<CollapseItem name="背景" :expanded="true">
<SettingItemBox name="颜色">
<SettingItem>
<n-color-picker
size="small"
:modes="['hex']"
v-model:value="optionData.backgroundColor"
></n-color-picker>
</SettingItem>
</SettingItemBox>
</CollapseItem>
</template>
<script setup lang="ts">
import { PropType } from 'vue'
import {
CollapseItem,
SettingItemBox,
SettingItem
} from '@/components/Pages/ChartItemSetting'
import { option } from './config'
const props = defineProps({
optionData: {
type: Object as PropType<typeof option>,
required: true
}
})
</script>

View File

@ -0,0 +1,17 @@
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
// import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
// 曲线图
export const SmallBorder01Config: ConfigType = {
key: 'SmallBorder01',
chartKey: 'VSmallBorder01',
conKey: 'VCSmallBorder01',
title: '带标题小边框+',
category: 'MyComponents',
categoryName: '自定义组件',
package: 'Charts',
chartFrame: ChartFrameEnum.COMMON,
image: "SmallBorder.png",
}
// 默认导出配置对象
// export default SmallBorder01Config

File diff suppressed because one or more lines are too long

View File

@ -10,6 +10,7 @@ import { LineGraph01 } from './LineGraph01/index'
import { LineGraph02Config } from './LineGraph02/index' import { LineGraph02Config } from './LineGraph02/index'
import { MaxTrimConfig } from './MaxTrim/index' import { MaxTrimConfig } from './MaxTrim/index'
import { SmallBorderConfig } from './SmallBorder/index' import { SmallBorderConfig } from './SmallBorder/index'
import { SmallBorder01Config } from './SmallBorder01/index'
export default [ export default [
@ -25,5 +26,6 @@ export default [
MaxTrimConfig, MaxTrimConfig,
LineGraph01, LineGraph01,
LineGraph02Config, LineGraph02Config,
SmallBorderConfig SmallBorderConfig,
SmallBorder01Config
] ]