mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
Merge branch 'master-fetch-dev' into master-fetch
This commit is contained in:
commit
5f15d2432b
1331
pnpm-lock.yaml
generated
1331
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
BIN
src/assets/images/chart/charts/bar_line.png
Normal file
BIN
src/assets/images/chart/charts/bar_line.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
BIN
src/assets/images/chart/decorates/fullScreen.png
Normal file
BIN
src/assets/images/chart/decorates/fullScreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.0 KiB |
BIN
src/assets/images/chart/informations/inputs_pagination.png
Normal file
BIN
src/assets/images/chart/informations/inputs_pagination.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
src/assets/images/chart/tables/tables_basic.png
Normal file
BIN
src/assets/images/chart/tables/tables_basic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
@ -95,7 +95,7 @@ export const useChartDataFetch = (
|
|||||||
fetchFn()
|
fetchFn()
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
immediate: false,
|
immediate: true,
|
||||||
deep: true
|
deep: true
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -48,10 +48,10 @@ export const useLifeHandler = (chartConfig: CreateComponentType | CreateComponen
|
|||||||
try {
|
try {
|
||||||
return new Function(`
|
return new Function(`
|
||||||
return (
|
return (
|
||||||
async function(mouseEvent){
|
async function(components,mouseEvent){
|
||||||
${fnStr}
|
${fnStr}
|
||||||
}
|
}
|
||||||
)`)()
|
)`)().bind(undefined,components)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error)
|
console.error(error)
|
||||||
}
|
}
|
||||||
|
75
src/packages/components/Charts/Bars/BarLine/config.ts
Normal file
75
src/packages/components/Charts/Bars/BarLine/config.ts
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public'
|
||||||
|
import { BarLineConfig } from './index'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
import dataJson from './data.json'
|
||||||
|
|
||||||
|
export const includes = ['legend', 'xAxis', 'yAxis', 'grid']
|
||||||
|
// 柱状折线组合图 分别定义series
|
||||||
|
// 写死name可以定义legend显示的名称
|
||||||
|
export const barSeriesItem = {
|
||||||
|
type: 'bar',
|
||||||
|
barWidth: 15,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: 'top',
|
||||||
|
color: '#fff',
|
||||||
|
fontSize: 12
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: null,
|
||||||
|
borderRadius: 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const lineSeriesItem = {
|
||||||
|
type: 'line',
|
||||||
|
symbol: 'circle',
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: 'top',
|
||||||
|
color: '#fff',
|
||||||
|
fontSize: 12
|
||||||
|
},
|
||||||
|
symbolSize: 5, //设定实心点的大小
|
||||||
|
itemStyle: {
|
||||||
|
color: '#FFE47A',
|
||||||
|
borderWidth: 1
|
||||||
|
},
|
||||||
|
lineStyle: {
|
||||||
|
type: 'solid',
|
||||||
|
width: 3,
|
||||||
|
color: null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const option = {
|
||||||
|
tooltip: {
|
||||||
|
show: true,
|
||||||
|
trigger: 'axis',
|
||||||
|
axisPointer: {
|
||||||
|
show: true,
|
||||||
|
type: 'shadow'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
data: null
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
show: true,
|
||||||
|
type: 'category'
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
show: true,
|
||||||
|
type: 'value'
|
||||||
|
},
|
||||||
|
dataset: { ...dataJson },
|
||||||
|
series: [barSeriesItem, lineSeriesItem]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||||
|
public key = BarLineConfig.key
|
||||||
|
public chartConfig = cloneDeep(BarLineConfig)
|
||||||
|
// 图表配置项
|
||||||
|
public option = echartOptionProfixHandle(option, includes)
|
||||||
|
}
|
93
src/packages/components/Charts/Bars/BarLine/config.vue
Normal file
93
src/packages/components/Charts/Bars/BarLine/config.vue
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
<template>
|
||||||
|
<!-- Echarts 全局设置 -->
|
||||||
|
<global-setting :optionData="optionData"></global-setting>
|
||||||
|
<CollapseItem
|
||||||
|
v-for="(item, index) in seriesList"
|
||||||
|
:key="index"
|
||||||
|
:name="`${item.type == 'bar' ? '柱状图' : '折线图'}`"
|
||||||
|
:expanded="true"
|
||||||
|
>
|
||||||
|
<SettingItemBox name="图形" v-if="item.type == 'bar'">
|
||||||
|
<SettingItem name="宽度">
|
||||||
|
<n-input-number
|
||||||
|
v-model:value="item.barWidth"
|
||||||
|
:min="1"
|
||||||
|
:max="100"
|
||||||
|
size="small"
|
||||||
|
placeholder="自动计算"
|
||||||
|
></n-input-number>
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="圆角">
|
||||||
|
<n-input-number v-model:value="item.itemStyle.borderRadius" :min="0" size="small"></n-input-number>
|
||||||
|
</SettingItem>
|
||||||
|
</SettingItemBox>
|
||||||
|
<SettingItemBox name="线条" v-if="item.type == 'line'">
|
||||||
|
<SettingItem name="宽度">
|
||||||
|
<n-input-number
|
||||||
|
v-model:value="item.lineStyle.width"
|
||||||
|
:min="1"
|
||||||
|
:max="100"
|
||||||
|
size="small"
|
||||||
|
placeholder="自动计算"
|
||||||
|
></n-input-number>
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="类型">
|
||||||
|
<n-select v-model:value="item.lineStyle.type" size="small" :options="lineConf.lineStyle.type"></n-select>
|
||||||
|
</SettingItem>
|
||||||
|
</SettingItemBox>
|
||||||
|
<SettingItemBox name="实心点" v-if="item.type == 'line'">
|
||||||
|
<SettingItem name="大小">
|
||||||
|
<n-input-number
|
||||||
|
v-model:value="item.symbolSize"
|
||||||
|
:min="1"
|
||||||
|
:max="100"
|
||||||
|
size="small"
|
||||||
|
placeholder="自动计算"
|
||||||
|
></n-input-number>
|
||||||
|
</SettingItem>
|
||||||
|
</SettingItemBox>
|
||||||
|
<setting-item-box name="标签">
|
||||||
|
<setting-item>
|
||||||
|
<n-space>
|
||||||
|
<n-switch v-model:value="item.label.show" size="small" />
|
||||||
|
<n-text>展示标签</n-text>
|
||||||
|
</n-space>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="大小">
|
||||||
|
<n-input-number v-model:value="item.label.fontSize" size="small" :min="1"></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="tip颜色">
|
||||||
|
<n-color-picker size="small" :modes="['hex']" v-model:value="item.label.color"></n-color-picker>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="位置">
|
||||||
|
<n-select
|
||||||
|
v-model:value="item.label.position"
|
||||||
|
:options="[
|
||||||
|
{ label: 'top', value: 'top' },
|
||||||
|
{ label: 'left', value: 'left' },
|
||||||
|
{ label: 'right', value: 'right' },
|
||||||
|
{ label: 'bottom', value: 'bottom' }
|
||||||
|
]"
|
||||||
|
/>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
</CollapseItem>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType, computed } from 'vue'
|
||||||
|
import { GlobalSetting, CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
|
||||||
|
import { lineConf } from '@/packages/chartConfiguration/echarts'
|
||||||
|
import { GlobalThemeJsonType } from '@/settings/chartThemes'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
optionData: {
|
||||||
|
type: Object as PropType<GlobalThemeJsonType>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const seriesList = computed(() => {
|
||||||
|
return props.optionData.series
|
||||||
|
})
|
||||||
|
</script>
|
40
src/packages/components/Charts/Bars/BarLine/data.json
Normal file
40
src/packages/components/Charts/Bars/BarLine/data.json
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"dimensions": ["product", "data1", "data2"],
|
||||||
|
"source": [
|
||||||
|
{
|
||||||
|
"product": "1月",
|
||||||
|
"data1": 104,
|
||||||
|
"data2": 30
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"product": "2月",
|
||||||
|
"data1": 56,
|
||||||
|
"data2": 56
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"product": "3月",
|
||||||
|
"data1": 136,
|
||||||
|
"data2": 36
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"product": "4月",
|
||||||
|
"data1": 86,
|
||||||
|
"data2": 6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"product": "5月",
|
||||||
|
"data1": 98,
|
||||||
|
"data2": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"product": "6月",
|
||||||
|
"data1": 86,
|
||||||
|
"data2": 70
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"product": "7月",
|
||||||
|
"data1": 77,
|
||||||
|
"data2": 57
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
16
src/packages/components/Charts/Bars/BarLine/index.ts
Normal file
16
src/packages/components/Charts/Bars/BarLine/index.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
// 公共类型声明
|
||||||
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
||||||
|
// 当前[信息模块]分类声明
|
||||||
|
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
|
||||||
|
|
||||||
|
export const BarLineConfig: ConfigType = {
|
||||||
|
key: 'BarLine',
|
||||||
|
chartKey: 'VBarLine',
|
||||||
|
conKey: 'VCBarLine',
|
||||||
|
title: '柱状图 & 折线图',
|
||||||
|
category: ChatCategoryEnum.BAR,
|
||||||
|
categoryName: ChatCategoryEnumName.BAR,
|
||||||
|
package: PackagesCategoryEnum.CHARTS,
|
||||||
|
chartFrame: ChartFrameEnum.ECHARTS,
|
||||||
|
image: 'bar_line.png'
|
||||||
|
}
|
73
src/packages/components/Charts/Bars/BarLine/index.vue
Normal file
73
src/packages/components/Charts/Bars/BarLine/index.vue
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<template>
|
||||||
|
<v-chart
|
||||||
|
ref="vChartRef"
|
||||||
|
:init-options="initOptions"
|
||||||
|
:theme="themeColor"
|
||||||
|
:option="option"
|
||||||
|
:manual-update="isPreview()"
|
||||||
|
autoresize
|
||||||
|
></v-chart>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, computed, watch, PropType, nextTick } from 'vue'
|
||||||
|
import VChart from 'vue-echarts'
|
||||||
|
import { useCanvasInitOptions } from '@/hooks/useCanvasInitOptions.hook'
|
||||||
|
import { use } from 'echarts/core'
|
||||||
|
import { CanvasRenderer } from 'echarts/renderers'
|
||||||
|
//引入柱状图 折线图
|
||||||
|
import { BarChart, LineChart } from 'echarts/charts'
|
||||||
|
import config, { includes, barSeriesItem, lineSeriesItem } from './config'
|
||||||
|
import { mergeTheme } from '@/packages/public/chart'
|
||||||
|
import { useChartDataFetch } from '@/hooks'
|
||||||
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
|
import { isPreview } from '@/utils'
|
||||||
|
import { DatasetComponent, GridComponent, TooltipComponent, LegendComponent } from 'echarts/components'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
themeSetting: {
|
||||||
|
type: Object,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
themeColor: {
|
||||||
|
type: Object,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
chartConfig: {
|
||||||
|
type: Object as PropType<config>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const initOptions = useCanvasInitOptions(props.chartConfig.option, props.themeSetting)
|
||||||
|
|
||||||
|
use([DatasetComponent, CanvasRenderer, BarChart, LineChart, GridComponent, TooltipComponent, LegendComponent])
|
||||||
|
|
||||||
|
const replaceMergeArr = ref<string[]>()
|
||||||
|
|
||||||
|
const option = computed(() => {
|
||||||
|
return mergeTheme(props.chartConfig.option, props.themeSetting, includes)
|
||||||
|
})
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.chartConfig.option.dataset,
|
||||||
|
(newData, oldData) => {
|
||||||
|
if (newData.dimensions.length !== oldData.dimensions.length) {
|
||||||
|
const seriesArr = []
|
||||||
|
for (let i = 0; i < newData.dimensions.length - 1; i++) {
|
||||||
|
seriesArr.push(barSeriesItem, lineSeriesItem)
|
||||||
|
}
|
||||||
|
replaceMergeArr.value = ['series']
|
||||||
|
props.chartConfig.option.series = seriesArr
|
||||||
|
nextTick(() => {
|
||||||
|
replaceMergeArr.value = []
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
deep: false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
const { vChartRef } = useChartDataFetch(props.chartConfig, useChartEditStore)
|
||||||
|
</script>
|
@ -1,5 +1,6 @@
|
|||||||
import { BarCommonConfig } from './BarCommon/index'
|
import { BarCommonConfig } from './BarCommon/index'
|
||||||
import { BarCrossrangeConfig } from './BarCrossrange/index'
|
import { BarCrossrangeConfig } from './BarCrossrange/index'
|
||||||
import { CapsuleChartConfig } from './CapsuleChart/index'
|
import { CapsuleChartConfig } from './CapsuleChart/index'
|
||||||
|
import { BarLineConfig } from './BarLine/index'
|
||||||
|
|
||||||
export default [BarCommonConfig, BarCrossrangeConfig, CapsuleChartConfig]
|
export default [BarCommonConfig, BarCrossrangeConfig, BarLineConfig, CapsuleChartConfig]
|
||||||
|
@ -33,6 +33,10 @@ export const option = {
|
|||||||
width: 3,
|
width: 3,
|
||||||
color: {
|
color: {
|
||||||
type: 'linear',
|
type: 'linear',
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
x2: 0,
|
||||||
|
y2: 1,
|
||||||
colorStops: [
|
colorStops: [
|
||||||
{
|
{
|
||||||
offset: 0,
|
offset: 0,
|
||||||
|
@ -84,7 +84,10 @@ export const option = {
|
|||||||
shadowColor: '#E1FFFF',
|
shadowColor: '#E1FFFF',
|
||||||
shadowBlur: 10
|
shadowBlur: 10
|
||||||
},
|
},
|
||||||
data: []
|
data: [],
|
||||||
|
encode: {
|
||||||
|
value: 2
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '区域',
|
name: '区域',
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
:type="type"
|
:type="type"
|
||||||
:height="h"
|
:height="h"
|
||||||
:processing="processing"
|
:processing="processing"
|
||||||
:percentage="option.dataset"
|
:percentage="dataset"
|
||||||
:indicator-placement="indicatorPlacement"
|
:indicator-placement="indicatorPlacement"
|
||||||
:color="color"
|
:color="color"
|
||||||
:rail-color="railColor"
|
:rail-color="railColor"
|
||||||
@ -15,7 +15,7 @@
|
|||||||
fontSize: `${indicatorTextSize}px`
|
fontSize: `${indicatorTextSize}px`
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
{{ option.dataset }} {{ unit }}
|
{{ dataset }} {{ unit }}
|
||||||
</n-text>
|
</n-text>
|
||||||
</n-progress>
|
</n-progress>
|
||||||
</template>
|
</template>
|
||||||
|
1
src/packages/components/Charts/index.d.ts
vendored
1
src/packages/components/Charts/index.d.ts
vendored
@ -14,5 +14,6 @@ export enum ChatCategoryEnumName {
|
|||||||
LINE = '折线图',
|
LINE = '折线图',
|
||||||
SCATTER = '散点图',
|
SCATTER = '散点图',
|
||||||
MAP = '地图',
|
MAP = '地图',
|
||||||
|
COMBINATION = '组合图',
|
||||||
MORE = '更多'
|
MORE = '更多'
|
||||||
}
|
}
|
||||||
|
18
src/packages/components/Decorates/Mores/FullScreen/config.ts
Normal file
18
src/packages/components/Decorates/Mores/FullScreen/config.ts
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import { PublicConfigClass } from '@/packages/public'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { chartInitConfig } from '@/settings/designSetting'
|
||||||
|
import { FullScreenConfig } from './index'
|
||||||
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
|
||||||
|
export const option = {
|
||||||
|
border: 6,
|
||||||
|
bgColor: '#84a5e9',
|
||||||
|
borderColor: '#84a5e9'
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||||
|
public key = FullScreenConfig.key
|
||||||
|
public attr = { ...chartInitConfig, w: 150, h: 150, zIndex: -1 }
|
||||||
|
public chartConfig = cloneDeep(FullScreenConfig)
|
||||||
|
public option = cloneDeep(option)
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
<template>
|
||||||
|
<CollapseItem name="全屏按钮" expanded>
|
||||||
|
<SettingItemBox name="按钮">
|
||||||
|
<SettingItem name="背景色">
|
||||||
|
<n-color-picker size="small" :modes="['hex']" v-model:value="optionData.bgColor"></n-color-picker>
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="边框色">
|
||||||
|
<n-color-picker size="small" :modes="['hex']" v-model:value="optionData.borderColor"></n-color-picker>
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="边框大小">
|
||||||
|
<n-input-number v-model:value="optionData.border" size="small" :step="0.5" :min="0"></n-input-number>
|
||||||
|
</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>
|
14
src/packages/components/Decorates/Mores/FullScreen/index.ts
Normal file
14
src/packages/components/Decorates/Mores/FullScreen/index.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
||||||
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
||||||
|
|
||||||
|
export const FullScreenConfig: ConfigType = {
|
||||||
|
key: 'FullScreen',
|
||||||
|
chartKey: 'VFullScreen',
|
||||||
|
conKey: 'VCFullScreen',
|
||||||
|
title: '全屏按钮',
|
||||||
|
category: ChatCategoryEnum.MORE,
|
||||||
|
categoryName: ChatCategoryEnumName.MORE,
|
||||||
|
package: PackagesCategoryEnum.DECORATES,
|
||||||
|
chartFrame: ChartFrameEnum.STATIC,
|
||||||
|
image: 'fullScreen.png'
|
||||||
|
}
|
111
src/packages/components/Decorates/Mores/FullScreen/index.vue
Normal file
111
src/packages/components/Decorates/Mores/FullScreen/index.vue
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
<template>
|
||||||
|
<svg @click="toggleFullscreen" v-if="!isFullscreen" viewBox="0 0 1024 1024">
|
||||||
|
<path
|
||||||
|
d="M665.6 1017.6c-19.2 0-38.4-19.2-38.4-38.4s19.2-38.4 38.4-38.4h268.8l6.4-268.8c0-19.2 19.2-38.4 38.4-38.4s38.4 19.2 38.4 38.4v294.4c0 32-25.6 51.2-51.2 51.2h-300.8zM51.2 396.8c-19.2 0-38.4-19.2-38.4-38.4V64C12.8 32 38.4 12.8 64 12.8h294.4c19.2 0 38.4 19.2 38.4 38.4s-19.2 38.4-38.4 38.4H89.6v268.8c0 19.2-19.2 38.4-38.4 38.4zM64 1017.6c-32 0-51.2-25.6-51.2-51.2v-294.4c0-19.2 19.2-38.4 38.4-38.4s38.4 19.2 38.4 38.4v217.6l198.4-198.4c6.4-6.4 19.2-12.8 25.6-12.8s19.2 6.4 25.6 12.8c6.4 6.4 12.8 19.2 12.8 25.6 0 12.8-6.4 19.2-12.8 25.6l-198.4 198.4h217.6c19.2 0 38.4 19.2 38.4 38.4s-19.2 38.4-38.4 38.4H64z m915.2-620.8c-19.2 0-38.4-19.2-38.4-38.4V140.8l-198.4 198.4c-6.4 6.4-19.2 12.8-25.6 12.8-12.8 0-19.2-6.4-25.6-12.8-12.8-12.8-12.8-38.4 0-51.2l198.4-198.4h-217.6c-19.2 0-38.4-19.2-38.4-38.4s19.2-38.4 38.4-38.4h294.4c32 0 51.2 25.6 51.2 51.2v294.4c0 19.2-19.2 38.4-38.4 38.4z"
|
||||||
|
class="fullScreen-border"
|
||||||
|
></path>
|
||||||
|
</svg>
|
||||||
|
<svg @click="toggleFullscreen" v-else viewBox="0 0 1024 1024">
|
||||||
|
<path
|
||||||
|
d="M379.336 697.237L153.362 921.55c-14.11 14.007-36.905 13.922-50.912-0.188-14.007-14.11-13.922-36.905 0.188-50.912l227.6-225.927H138.645c-18.99 0-34.385-15.446-34.385-34.5 0-19.053 15.395-34.5 34.385-34.5H413.72c18.99 0 34.384 15.447 34.384 34.5v276c0 9.15-3.622 17.926-10.07 24.396a34.326 34.326 0 0 1-24.314 10.104 34.326 34.326 0 0 1-24.314-10.104 34.559 34.559 0 0 1-10.071-24.396V697.237z m263.395-366.88l227.813-227.813c14.059-14.059 36.853-14.059 50.912 0 14.059 14.059 14.059 36.853 0 50.912l-225.18 225.18h187.147c18.99 0 34.385 15.445 34.385 34.5 0 19.053-15.395 34.5-34.385 34.5H608.346c-18.99 0-34.384-15.447-34.384-34.5v-276c0-9.15 3.622-17.926 10.07-24.396a34.326 34.326 0 0 1 24.314-10.105c9.12 0 17.865 3.635 24.314 10.105a34.559 34.559 0 0 1 10.07 24.395v193.223zM99.385 410a34.326 34.326 0 0 1-24.314-10.105A34.559 34.559 0 0 1 65 375.5v-276C65 80.446 80.395 65 99.385 65h275.077c18.99 0 34.384 15.446 34.384 34.5 0 19.054-15.394 34.5-34.384 34.5H133.769v241.5c0 9.15-3.622 17.925-10.07 24.395A34.326 34.326 0 0 1 99.384 410z m825.23 552H649.538c-18.99 0-34.384-15.446-34.384-34.5 0-19.054 15.394-34.5 34.384-34.5h240.693V651.5c0-19.054 15.394-34.5 34.384-34.5 18.99 0 34.385 15.446 34.385 34.5v276c0 19.054-15.395 34.5-34.385 34.5z"
|
||||||
|
class="fullScreen-border"
|
||||||
|
></path>
|
||||||
|
</svg>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType, toRefs, ref, onMounted, onUnmounted } from 'vue'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { option } from './config'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
chartConfig: {
|
||||||
|
type: Object as PropType<CreateComponentType & typeof option>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
let { border, bgColor, borderColor } = toRefs(props.chartConfig.option)
|
||||||
|
const isFullscreen = ref(false)
|
||||||
|
const checkFullscreen = () => {
|
||||||
|
isFullscreen.value = !!(
|
||||||
|
document.fullscreenElement ||
|
||||||
|
(document as any).webkitFullscreenElement ||
|
||||||
|
(document as any).mozFullScreenElement ||
|
||||||
|
(document as any).msFullscreenElement
|
||||||
|
)
|
||||||
|
}
|
||||||
|
checkFullscreen()
|
||||||
|
|
||||||
|
const requestFullscreen = (element: Element) => {
|
||||||
|
if (element.requestFullscreen) {
|
||||||
|
element.requestFullscreen()
|
||||||
|
} else if ((document as any).mozRequestFullScreen) {
|
||||||
|
/* Firefox */
|
||||||
|
(document as any).mozRequestFullScreen()
|
||||||
|
} else if ((document as any).webkitRequestFullscreen) {
|
||||||
|
/* Chrome, Safari and Opera */
|
||||||
|
(document as any).webkitRequestFullscreen()
|
||||||
|
} else if ((document as any).msRequestFullscreen) {
|
||||||
|
/* IE/Edge */
|
||||||
|
(document as any).msRequestFullscreen()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const exitFullscreen = () => {
|
||||||
|
if (document.fullscreenElement && document.exitFullscreen) {
|
||||||
|
document.exitFullscreen()
|
||||||
|
} else if ((document as any).mozFullScreenElement && (document as any).mozCancelFullScreen) {
|
||||||
|
/* Firefox */
|
||||||
|
(document as any).mozCancelFullScreen()
|
||||||
|
} else if ((document as any).webkitFullscreenElement && (document as any).webkitExitFullscreen) {
|
||||||
|
/* Chrome, Safari and Opera */
|
||||||
|
(document as any).webkitExitFullscreen()
|
||||||
|
} else if ((document as any).msFullscreenElement && (document as any).msExitFullscreen) {
|
||||||
|
/* IE/Edge */
|
||||||
|
(document as any).msExitFullscreen()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const toggleFullscreen = () => {
|
||||||
|
if (!isFullscreen.value) {
|
||||||
|
requestFullscreen(document.documentElement)
|
||||||
|
} else {
|
||||||
|
exitFullscreen()
|
||||||
|
}
|
||||||
|
isFullscreen.value = !isFullscreen.value
|
||||||
|
// 由于全屏状态的改变不会立即生效,所以需要延迟一段时间再去获取全屏状态
|
||||||
|
setTimeout(() => {
|
||||||
|
checkFullscreen()
|
||||||
|
}, 1000)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 监听全屏状态的改变,保证多个全屏组件的状态一致
|
||||||
|
onMounted(() => {
|
||||||
|
document.addEventListener('fullscreenchange', checkFullscreen)
|
||||||
|
document.addEventListener('webkitfullscreenchange', checkFullscreen)
|
||||||
|
document.addEventListener('mozfullscreenchange', checkFullscreen)
|
||||||
|
document.addEventListener('MSFullscreenChange', checkFullscreen)
|
||||||
|
})
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
document.removeEventListener('fullscreenchange', checkFullscreen)
|
||||||
|
document.removeEventListener('webkitfullscreenchange', checkFullscreen)
|
||||||
|
document.removeEventListener('mozfullscreenchange', checkFullscreen)
|
||||||
|
document.removeEventListener('MSFullscreenChange', checkFullscreen)
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
svg {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.fullScreen-border {
|
||||||
|
stroke: v-bind('borderColor');
|
||||||
|
stroke-width: v-bind('border+"px"');
|
||||||
|
fill: v-bind('bgColor');
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,9 +1,19 @@
|
|||||||
import { NumberConfig } from './Number/index'
|
import { NumberConfig } from './Number/index'
|
||||||
import { TimeCommonConfig } from './TimeCommon/index'
|
import { TimeCommonConfig } from './TimeCommon/index'
|
||||||
import { ClockConfig } from './Clock/index'
|
import { ClockConfig } from './Clock/index'
|
||||||
|
import { FullScreenConfig } from './FullScreen/index'
|
||||||
import { CountDownConfig } from './CountDown/index'
|
import { CountDownConfig } from './CountDown/index'
|
||||||
import { FlipperNumberConfig } from './FlipperNumber'
|
import { FlipperNumberConfig } from './FlipperNumber'
|
||||||
import { PipelineHConfig } from './PipelineH/index'
|
import { PipelineHConfig } from './PipelineH/index'
|
||||||
import { PipelineVConfig } from './PipelineV/index'
|
import { PipelineVConfig } from './PipelineV/index'
|
||||||
|
|
||||||
export default [NumberConfig, FlipperNumberConfig, TimeCommonConfig, CountDownConfig, ClockConfig, PipelineHConfig, PipelineVConfig]
|
export default [
|
||||||
|
NumberConfig,
|
||||||
|
FlipperNumberConfig,
|
||||||
|
TimeCommonConfig,
|
||||||
|
CountDownConfig,
|
||||||
|
ClockConfig,
|
||||||
|
FullScreenConfig,
|
||||||
|
PipelineHConfig,
|
||||||
|
PipelineVConfig
|
||||||
|
]
|
||||||
|
@ -31,7 +31,8 @@ export class Basic {
|
|||||||
this.renderer = new THREE.WebGLRenderer({
|
this.renderer = new THREE.WebGLRenderer({
|
||||||
// canvas: this.dom,
|
// canvas: this.dom,
|
||||||
alpha: true, // 透明
|
alpha: true, // 透明
|
||||||
antialias: true // 抗锯齿
|
antialias: true, // 抗锯齿
|
||||||
|
preserveDrawingBuffer: true
|
||||||
})
|
})
|
||||||
this.renderer.setPixelRatio(window.devicePixelRatio) // 设置屏幕像素比
|
this.renderer.setPixelRatio(window.devicePixelRatio) // 设置屏幕像素比
|
||||||
this.renderer.setSize(window.innerWidth, window.innerHeight) // 设置渲染器宽高
|
this.renderer.setSize(window.innerWidth, window.innerHeight) // 设置渲染器宽高
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
import { PublicConfigClass } from '@/packages/public'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { chartInitConfig } from '@/settings/designSetting'
|
||||||
|
import { COMPONENT_INTERACT_EVENT_KET } from '@/enums/eventEnum'
|
||||||
|
import { interactActions, ComponentInteractEventEnum } from './interact'
|
||||||
|
import {InputsInputConfig} from "./index";
|
||||||
|
|
||||||
|
export const option = {
|
||||||
|
// 时间组件展示类型,必须和 interactActions 中定义的数据一致
|
||||||
|
[COMPONENT_INTERACT_EVENT_KET]: ComponentInteractEventEnum.DATA,
|
||||||
|
// 默认值
|
||||||
|
inputValue: "0",
|
||||||
|
// 暴露配置内容给用户
|
||||||
|
dataset: ""
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||||
|
public key = InputsInputConfig.key
|
||||||
|
public attr = { ...chartInitConfig, w: 260, h: 32, zIndex: -1 }
|
||||||
|
public chartConfig = cloneDeep(InputsInputConfig)
|
||||||
|
public interactActions = interactActions
|
||||||
|
public option = cloneDeep(option)
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
<template>
|
||||||
|
<collapse-item name="输入框配置" :expanded="true">
|
||||||
|
<setting-item-box name="默认值" :alone="true">
|
||||||
|
<n-input v-model:value="optionData.dataset" placeholder="若未输入,则默认值为0"/>
|
||||||
|
</setting-item-box>
|
||||||
|
</collapse-item>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType } from 'vue'
|
||||||
|
import { CollapseItem, SettingItemBox } from '@/components/Pages/ChartItemSetting'
|
||||||
|
import { option } from './config'
|
||||||
|
defineProps({
|
||||||
|
optionData: {
|
||||||
|
type: Object as PropType<typeof option>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
@ -0,0 +1,14 @@
|
|||||||
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
||||||
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
||||||
|
|
||||||
|
export const InputsInputConfig: ConfigType = {
|
||||||
|
key: 'InputsInput',
|
||||||
|
chartKey: 'VInputsInput',
|
||||||
|
conKey: 'VCInputsInput',
|
||||||
|
title: '输入框',
|
||||||
|
category: ChatCategoryEnum.INPUTS,
|
||||||
|
categoryName: ChatCategoryEnumName.INPUTS,
|
||||||
|
package: PackagesCategoryEnum.INFORMATIONS,
|
||||||
|
chartFrame: ChartFrameEnum.STATIC,
|
||||||
|
image: 'inputs_select.png'
|
||||||
|
}
|
@ -0,0 +1,64 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<n-input :style="`width:${w}px;`" type="text"
|
||||||
|
v-model:value="option.value.dataset"
|
||||||
|
placeholder="请输入"
|
||||||
|
@change="onChange">
|
||||||
|
|
||||||
|
</n-input>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { PropType, toRefs, shallowReactive, watch } from 'vue'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
|
import { useChartInteract } from '@/hooks'
|
||||||
|
import { InteractEventOn } from '@/enums/eventEnum'
|
||||||
|
import { ComponentInteractParamsEnum } from './interact'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
chartConfig: {
|
||||||
|
type: Object as PropType<CreateComponentType>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const { w, h } = toRefs(props.chartConfig.attr)
|
||||||
|
const option = shallowReactive({
|
||||||
|
value: {
|
||||||
|
inputValue: props.chartConfig.option.inputValue,
|
||||||
|
dataset: props.chartConfig.option.dataset
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const onChange = (v: string) => {
|
||||||
|
if(v == undefined) return;
|
||||||
|
// 存储到联动数据
|
||||||
|
useChartInteract(
|
||||||
|
props.chartConfig,
|
||||||
|
useChartEditStore,
|
||||||
|
{ [ComponentInteractParamsEnum.DATA]: v },
|
||||||
|
InteractEventOn.CHANGE
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 手动更新
|
||||||
|
watch(
|
||||||
|
() => props.chartConfig.option,
|
||||||
|
(newData: any) => {
|
||||||
|
option.value = newData
|
||||||
|
onChange(newData.inputValue)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
|||||||
|
import { InteractEventOn, InteractActionsType } from '@/enums/eventEnum'
|
||||||
|
|
||||||
|
// 时间组件类型
|
||||||
|
export enum ComponentInteractEventEnum {
|
||||||
|
DATA = 'data'
|
||||||
|
}
|
||||||
|
|
||||||
|
// 联动参数
|
||||||
|
export enum ComponentInteractParamsEnum {
|
||||||
|
DATA = 'data'
|
||||||
|
}
|
||||||
|
|
||||||
|
// 定义组件触发回调事件
|
||||||
|
export const interactActions: InteractActionsType[] = [
|
||||||
|
{
|
||||||
|
interactType: InteractEventOn.CHANGE,
|
||||||
|
interactName: '选择完成',
|
||||||
|
componentEmitEvents: {
|
||||||
|
[ComponentInteractEventEnum.DATA]: [
|
||||||
|
{
|
||||||
|
value: ComponentInteractParamsEnum.DATA,
|
||||||
|
label: '选择项'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,26 @@
|
|||||||
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
import { PublicConfigClass } from '@/packages/public'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { chartInitConfig } from '@/settings/designSetting'
|
||||||
|
import { COMPONENT_INTERACT_EVENT_KET } from '@/enums/eventEnum'
|
||||||
|
import { interactActions, ComponentInteractEventEnum } from './interact'
|
||||||
|
import {InputsPaginationConfig} from "./index";
|
||||||
|
|
||||||
|
export const option = {
|
||||||
|
// 时间组件展示类型,必须和 interactActions 中定义的数据一致
|
||||||
|
[COMPONENT_INTERACT_EVENT_KET]: ComponentInteractEventEnum.DATA,
|
||||||
|
// 默认值
|
||||||
|
pageValue:1,
|
||||||
|
sizeValue:[2,4,8,10,20],
|
||||||
|
pageSize:4,
|
||||||
|
// 暴露配置内容给用户
|
||||||
|
dataset: 10
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||||
|
public key = InputsPaginationConfig.key
|
||||||
|
public attr = { ...chartInitConfig, w: 395, h: 32, zIndex: -1 }
|
||||||
|
public chartConfig = cloneDeep(InputsPaginationConfig)
|
||||||
|
public interactActions = interactActions
|
||||||
|
public option = cloneDeep(option)
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
<template>
|
||||||
|
<collapse-item name="分页配置" :expanded="true">
|
||||||
|
<setting-item-box :alone="false" name="分页设置">
|
||||||
|
<setting-item name="默认页码" :alone="true">
|
||||||
|
<n-input-number v-model:value="optionData.pageValue" size="small" placeholder="字体大小"></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="分页" :alone="true">
|
||||||
|
<n-select v-model:value="optionData.pageSize" size="small"
|
||||||
|
:options="page" />
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="页数" :alone="true">
|
||||||
|
<n-input-number v-model:value="optionData.dataset" size="small" placeholder="字体大小"></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
</collapse-item>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType } from 'vue'
|
||||||
|
import {CollapseItem, SettingItem, SettingItemBox} from '@/components/Pages/ChartItemSetting'
|
||||||
|
import { option } from './config'
|
||||||
|
|
||||||
|
const page = [
|
||||||
|
{label:'2',value:2},
|
||||||
|
{label:'4',value:4},
|
||||||
|
{label:'8',value:8},
|
||||||
|
{label:'10',value:10},
|
||||||
|
{label:'20',value:20}
|
||||||
|
]
|
||||||
|
defineProps({
|
||||||
|
optionData: {
|
||||||
|
type: Object as PropType<typeof option>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
@ -0,0 +1,14 @@
|
|||||||
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
||||||
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
||||||
|
|
||||||
|
export const InputsPaginationConfig: ConfigType = {
|
||||||
|
key: 'InputsPagination',
|
||||||
|
chartKey: 'VInputsPagination',
|
||||||
|
conKey: 'VCInputsPagination',
|
||||||
|
title: '分页',
|
||||||
|
category: ChatCategoryEnum.INPUTS,
|
||||||
|
categoryName: ChatCategoryEnumName.INPUTS,
|
||||||
|
package: PackagesCategoryEnum.INFORMATIONS,
|
||||||
|
chartFrame: ChartFrameEnum.STATIC,
|
||||||
|
image: 'inputs_pagination.png'
|
||||||
|
}
|
@ -0,0 +1,66 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<n-pagination
|
||||||
|
@on-update:page="onChange" :style="`width:${w}px;`"
|
||||||
|
v-model:page="option.value.pageValue"
|
||||||
|
:page-count="option.value.dataset"
|
||||||
|
:page-slot="7"
|
||||||
|
show-size-picker
|
||||||
|
:page-sizes="option.value.sizeValue"
|
||||||
|
v-model:page-size="option.value.pageSize"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { PropType, toRefs, shallowReactive, watch } from 'vue'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
|
import { useChartInteract } from '@/hooks'
|
||||||
|
import { InteractEventOn } from '@/enums/eventEnum'
|
||||||
|
import { ComponentInteractParamsEnum } from './interact'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
chartConfig: {
|
||||||
|
type: Object as PropType<CreateComponentType>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const { w, h } = toRefs(props.chartConfig.attr)
|
||||||
|
const option = shallowReactive({
|
||||||
|
value: {
|
||||||
|
pageValue: props.chartConfig.option.pageValue,
|
||||||
|
dataset:props.chartConfig.option.dataset,
|
||||||
|
sizeValue:props.chartConfig.option.sizeValue,
|
||||||
|
pageSize:props.chartConfig.option.pageSize
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const onChange = (v: number,v2:number) => {
|
||||||
|
if(v == undefined) return;
|
||||||
|
// 存储到联动数据
|
||||||
|
useChartInteract(
|
||||||
|
props.chartConfig,
|
||||||
|
useChartEditStore,
|
||||||
|
{
|
||||||
|
[ComponentInteractParamsEnum.DATA]: v ,
|
||||||
|
[ComponentInteractParamsEnum.DATA2]:v2
|
||||||
|
},
|
||||||
|
InteractEventOn.CHANGE
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 手动更新
|
||||||
|
watch(
|
||||||
|
() => props.chartConfig.option,
|
||||||
|
(newData: any) => {
|
||||||
|
option.value = newData
|
||||||
|
onChange(newData.pageValue,newData.pageSize)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
</script>
|
@ -0,0 +1,32 @@
|
|||||||
|
import { InteractEventOn, InteractActionsType } from '@/enums/eventEnum'
|
||||||
|
|
||||||
|
// 时间组件类型
|
||||||
|
export enum ComponentInteractEventEnum {
|
||||||
|
DATA = 'data'
|
||||||
|
}
|
||||||
|
|
||||||
|
// 联动参数
|
||||||
|
export enum ComponentInteractParamsEnum {
|
||||||
|
DATA = 'data',
|
||||||
|
DATA2 = 'data2'
|
||||||
|
}
|
||||||
|
|
||||||
|
// 定义组件触发回调事件
|
||||||
|
export const interactActions: InteractActionsType[] = [
|
||||||
|
{
|
||||||
|
interactType: InteractEventOn.CHANGE,
|
||||||
|
interactName: '选择完成',
|
||||||
|
componentEmitEvents: {
|
||||||
|
[ComponentInteractEventEnum.DATA]: [
|
||||||
|
{
|
||||||
|
value: ComponentInteractParamsEnum.DATA,
|
||||||
|
label: '页数'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: ComponentInteractParamsEnum.DATA2,
|
||||||
|
label: '每页条数'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -1,5 +1,7 @@
|
|||||||
import { InputsDateConfig } from './InputsDate/index'
|
import { InputsDateConfig } from './InputsDate/index'
|
||||||
import { InputsSelectConfig } from './InputsSelect/index'
|
import { InputsSelectConfig } from './InputsSelect/index'
|
||||||
import { InputsTabConfig } from './InputsTab/index'
|
import { InputsTabConfig } from './InputsTab/index'
|
||||||
|
import { InputsPaginationConfig } from "./InputsPagination/index";
|
||||||
|
import { InputsInputConfig} from "./InputsInput/index";
|
||||||
|
|
||||||
export default [InputsDateConfig, InputsSelectConfig, InputsTabConfig]
|
export default [InputsDateConfig, InputsSelectConfig, InputsTabConfig,InputsPaginationConfig,InputsInputConfig]
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<collapse-item name="信息" :expanded="true">
|
<collapse-item name="信息" :expanded="true">
|
||||||
<setting-item-box name="文字" :alone="true">
|
<setting-item-box name="文字" :alone="true">
|
||||||
<setting-item>
|
<setting-item>
|
||||||
<n-input v-model:value="optionData.dataset" size="small"></n-input>
|
<n-input v-model:value="optionData.dataset" type="textarea" size="small"></n-input>
|
||||||
</setting-item>
|
</setting-item>
|
||||||
</setting-item-box>
|
</setting-item-box>
|
||||||
</collapse-item>
|
</collapse-item>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="go-text-box">
|
<div class="go-text-box">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<span style="cursor: pointer; white-space: pre-wrap" v-if="link" @click="click"></span>
|
<span style="cursor: pointer; white-space: pre-wrap" v-if="link" @click="click">{{ option.dataset }}</span>
|
||||||
<span style="white-space: pre-wrap" v-else>{{ option.dataset }}</span>
|
<span style="white-space: pre-wrap" v-else>{{ option.dataset }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<collapse-item name="信息" :expanded="true">
|
<collapse-item name="信息" :expanded="true">
|
||||||
<setting-item-box name="文字" :alone="true">
|
<setting-item-box name="文字" :alone="true">
|
||||||
<setting-item>
|
<setting-item>
|
||||||
<n-input v-model:value="optionData.dataset" size="small"></n-input>
|
<n-input v-model:value="optionData.dataset" type="textarea" size="small"></n-input>
|
||||||
</setting-item>
|
</setting-item>
|
||||||
</setting-item-box>
|
</setting-item-box>
|
||||||
</collapse-item>
|
</collapse-item>
|
||||||
|
35
src/packages/components/Tables/Tables/TablesBasic/config.ts
Normal file
35
src/packages/components/Tables/Tables/TablesBasic/config.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
import { PublicConfigClass } from '@/packages/public'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { chartInitConfig } from '@/settings/designSetting'
|
||||||
|
import { TablesBasicConfig } from './index'
|
||||||
|
import dataJson from './data.json'
|
||||||
|
|
||||||
|
const { dimensions, source } = dataJson
|
||||||
|
export const option = {
|
||||||
|
dataset: { dimensions, source },
|
||||||
|
pagination: {
|
||||||
|
page: 1,
|
||||||
|
pageSize: 5
|
||||||
|
},
|
||||||
|
align: 'center',
|
||||||
|
style: {
|
||||||
|
border: 'on',
|
||||||
|
singleColumn: 'off',
|
||||||
|
singleLine: 'off',
|
||||||
|
bottomBordered: 'on',
|
||||||
|
striped: 'on',
|
||||||
|
fontSize: 16,
|
||||||
|
borderWidth: 0,
|
||||||
|
borderColor: 'black',
|
||||||
|
borderStyle: 'solid'
|
||||||
|
},
|
||||||
|
inputShow: 'none'
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||||
|
public key = TablesBasicConfig.key
|
||||||
|
public attr = { ...chartInitConfig, w: 600, h: 300, zIndex: -1 }
|
||||||
|
public chartConfig = cloneDeep(TablesBasicConfig)
|
||||||
|
public option = cloneDeep(option)
|
||||||
|
}
|
162
src/packages/components/Tables/Tables/TablesBasic/config.vue
Normal file
162
src/packages/components/Tables/Tables/TablesBasic/config.vue
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
<template>
|
||||||
|
<collapse-item name="表格设置" :expanded="true">
|
||||||
|
<n-tag type="primary">若配置无响应,请在预览页面查看效果</n-tag>
|
||||||
|
<setting-item-box :alone="true" name="对齐方式">
|
||||||
|
<setting-item :alone="true">
|
||||||
|
<n-select
|
||||||
|
v-model:value="optionData.align"
|
||||||
|
size="small"
|
||||||
|
:options="[
|
||||||
|
{ label: '靠左', value: 'left' },
|
||||||
|
{ label: '居中', value: 'center' },
|
||||||
|
{ label: '靠右', value: 'right' }
|
||||||
|
]"
|
||||||
|
/>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
<setting-item-box :alone="false" name="分页设置">
|
||||||
|
<setting-item name="默认页码" :alone="true">
|
||||||
|
<n-input-number v-model:value="optionData.pagination.page" size="small" placeholder="字体大小"></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="分页" :alone="true">
|
||||||
|
<n-select v-model:value="optionData.pagination.pageSize" size="small" :options="page" />
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
|
<setting-item-box :alone="false" name="表格数据">
|
||||||
|
<SettingItem name="表头名称" class="form_name">
|
||||||
|
<div style="width: 260px">
|
||||||
|
<n-input v-model:value="header" size="small" placeholder="表头数据(英文','分割)"></n-input>
|
||||||
|
</div>
|
||||||
|
</SettingItem>
|
||||||
|
</setting-item-box>
|
||||||
|
<setting-item-box :alone="false" name="表格样式">
|
||||||
|
<SettingItem name="显示边框" :alone="true">
|
||||||
|
<n-select v-model:value="(optionData as any).style.border" size="small" :options="borderFlag" />
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="底部边框" :alone="true">
|
||||||
|
<n-select
|
||||||
|
v-model:value="(optionData as any).style.bottomBordered"
|
||||||
|
size="small"
|
||||||
|
:options="bottom_borderedFlag"
|
||||||
|
/>
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="列分割线" :alone="true">
|
||||||
|
<n-select v-model:value="(optionData as any).style.singleLine" size="small" :options="columnFlag" />
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="行分割线" :alone="true">
|
||||||
|
<n-select v-model:value="(optionData as any).style.singleColumn" size="small" :options="lineFlag" />
|
||||||
|
</SettingItem>
|
||||||
|
<SettingItem name="斑马条纹" :alone="true">
|
||||||
|
<n-select v-model:value="(optionData as any).style.striped" size="small" :options="stripedFlag" />
|
||||||
|
</SettingItem>
|
||||||
|
<setting-item name="字体大小" :alone="true">
|
||||||
|
<n-input-number
|
||||||
|
v-model:value="optionData.style.fontSize"
|
||||||
|
:min="12"
|
||||||
|
size="small"
|
||||||
|
placeholder="字体大小"
|
||||||
|
></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="边框宽度" :alone="true">
|
||||||
|
<n-input-number
|
||||||
|
v-model:value="optionData.style.borderWidth"
|
||||||
|
:min="0"
|
||||||
|
size="small"
|
||||||
|
placeholder="字体大小"
|
||||||
|
></n-input-number>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="边框颜色" :alone="true">
|
||||||
|
<n-color-picker size="small" :modes="['rgb']" v-model:value="optionData.style.borderColor"></n-color-picker>
|
||||||
|
</setting-item>
|
||||||
|
<setting-item name="边框样式" :alone="true">
|
||||||
|
<n-select v-model:value="optionData.style.borderStyle" size="small" :options="borderStyleFlag" />
|
||||||
|
</setting-item>
|
||||||
|
<SettingItem name="表格搜索(前端静态搜索)" :alone="true">
|
||||||
|
<n-select v-model:value="optionData.inputShow" size="small" :options="inputSelect" />
|
||||||
|
</SettingItem>
|
||||||
|
</setting-item-box>
|
||||||
|
</collapse-item>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { PropType, watch, ref } from 'vue'
|
||||||
|
import { option } from './config'
|
||||||
|
import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
|
||||||
|
|
||||||
|
const page = [
|
||||||
|
{ label: '2', value: 2 },
|
||||||
|
{ label: '5', value: 5 },
|
||||||
|
{ label: '10', value: 10 },
|
||||||
|
{ label: '15', value: 15 },
|
||||||
|
{ label: '30', value: 30 }
|
||||||
|
]
|
||||||
|
const borderFlag = [
|
||||||
|
{ label: '显示', value: 'on' },
|
||||||
|
{ label: '不显示', value: 'off' }
|
||||||
|
]
|
||||||
|
const columnFlag = [
|
||||||
|
{ label: '显示', value: 'off' },
|
||||||
|
{ label: '不显示', value: 'on' }
|
||||||
|
]
|
||||||
|
const lineFlag = [
|
||||||
|
{ label: '显示', value: 'off' },
|
||||||
|
{ label: '不显示', value: 'on' }
|
||||||
|
]
|
||||||
|
const bottom_borderedFlag = [
|
||||||
|
{ label: '显示', value: 'on' },
|
||||||
|
{ label: '不显示', value: 'off' }
|
||||||
|
]
|
||||||
|
const stripedFlag = [
|
||||||
|
{ label: '显示', value: 'on' },
|
||||||
|
{ label: '不显示', value: 'off' }
|
||||||
|
]
|
||||||
|
const borderStyleFlag = [
|
||||||
|
{ label: '实线边框', value: 'solid' },
|
||||||
|
{ label: '虚线边框', value: 'dashed' },
|
||||||
|
{ label: '点状边框', value: 'dotted' },
|
||||||
|
{ label: '双线边框', value: 'double' }
|
||||||
|
]
|
||||||
|
const inputSelect = [
|
||||||
|
{ label: '停用', value: 'none' },
|
||||||
|
{ label: '启用', value: 'flex' }
|
||||||
|
]
|
||||||
|
const props = defineProps({
|
||||||
|
optionData: {
|
||||||
|
type: Object as PropType<typeof option>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const header = ref()
|
||||||
|
const median = ref<string[]>([])
|
||||||
|
props.optionData.dataset.dimensions.forEach(item => {
|
||||||
|
median.value.push(item.title)
|
||||||
|
})
|
||||||
|
|
||||||
|
//转string
|
||||||
|
watch(
|
||||||
|
() => props.optionData,
|
||||||
|
() => {
|
||||||
|
median.value = []
|
||||||
|
props.optionData.dataset.dimensions.forEach(item => {
|
||||||
|
median.value.push(item.title)
|
||||||
|
})
|
||||||
|
header.value = median.value.toString()
|
||||||
|
},
|
||||||
|
{
|
||||||
|
deep: false,
|
||||||
|
immediate: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
//更新columns
|
||||||
|
watch([header], ([headerNew], [headerOld]) => {
|
||||||
|
if (headerNew !== headerOld) {
|
||||||
|
headerNew.split(',').forEach((item: string, index: number) => {
|
||||||
|
if (index + 1 <= props.optionData.dataset.dimensions.length) {
|
||||||
|
props.optionData.dataset.dimensions[index].title = headerNew.split(',')[index]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
60
src/packages/components/Tables/Tables/TablesBasic/data.json
Normal file
60
src/packages/components/Tables/Tables/TablesBasic/data.json
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
{
|
||||||
|
"dimensions": [
|
||||||
|
{
|
||||||
|
"title": "产品名称",
|
||||||
|
"key": "productName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "产品销量(万)",
|
||||||
|
"key": "totalSum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "销售额(万)",
|
||||||
|
"key": "totalAmount"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source": [
|
||||||
|
{
|
||||||
|
"key": 0,
|
||||||
|
"productName": "产品A1",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 1,
|
||||||
|
"productName": "产品B1",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 2,
|
||||||
|
"productName": "产品C1",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 3,
|
||||||
|
"productName": "产品D1",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 4,
|
||||||
|
"productName": "产品A2",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 5,
|
||||||
|
"productName": "产品D2",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 6,
|
||||||
|
"productName": "产品A3",
|
||||||
|
"totalSum": 10,
|
||||||
|
"totalAmount": 10
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
14
src/packages/components/Tables/Tables/TablesBasic/index.ts
Normal file
14
src/packages/components/Tables/Tables/TablesBasic/index.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
||||||
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
||||||
|
|
||||||
|
export const TablesBasicConfig: ConfigType = {
|
||||||
|
key: 'TablesBasic',
|
||||||
|
chartKey: 'VTablesBasic',
|
||||||
|
conKey: 'VCTablesBasic',
|
||||||
|
title: '基础分页表格',
|
||||||
|
category: ChatCategoryEnum.TABLE,
|
||||||
|
categoryName: ChatCategoryEnumName.TABLE,
|
||||||
|
package: PackagesCategoryEnum.TABLES,
|
||||||
|
chartFrame: ChartFrameEnum.COMMON,
|
||||||
|
image: 'tables_basic.png'
|
||||||
|
}
|
95
src/packages/components/Tables/Tables/TablesBasic/index.vue
Normal file
95
src/packages/components/Tables/Tables/TablesBasic/index.vue
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
<template>
|
||||||
|
<div class="go-tables-basic">
|
||||||
|
<n-input
|
||||||
|
v-model:value="inputData"
|
||||||
|
placeholder="请输入信息"
|
||||||
|
:style="`display: ${inputShow}`"
|
||||||
|
style="margin-bottom: 5px; float: right; width: 240px"
|
||||||
|
>
|
||||||
|
<template #prefix>
|
||||||
|
<n-icon :component="SearchIcon" />
|
||||||
|
</template>
|
||||||
|
</n-input>
|
||||||
|
<n-data-table
|
||||||
|
:style="`
|
||||||
|
width: ${w}px;
|
||||||
|
height: ${h}px;
|
||||||
|
font-size: ${option.style.fontSize}px;
|
||||||
|
border-width: ${option.style.border === 'on' ? option.style.borderWidth : 0}px;
|
||||||
|
border-color: ${option.style.borderColor};
|
||||||
|
border-style: ${option.style.borderStyle}`"
|
||||||
|
:bordered="option.style.border === 'on'"
|
||||||
|
:single-column="option.style.singleColumn === 'on'"
|
||||||
|
:single-line="option.style.singleLine === 'on'"
|
||||||
|
:bottom-bordered="option.style.bottomBordered === 'on'"
|
||||||
|
:striped="option.style.striped === 'on'"
|
||||||
|
:max-height="h"
|
||||||
|
size="small"
|
||||||
|
:columns="option.dataset.dimensions"
|
||||||
|
:data="filterData"
|
||||||
|
:pagination="pagination"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { computed, PropType, toRefs, watch, reactive, ref } from 'vue'
|
||||||
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
|
import { icon } from '@/plugins'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
chartConfig: {
|
||||||
|
type: Object as PropType<CreateComponentType>,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const { SearchIcon } = icon.ionicons5
|
||||||
|
|
||||||
|
//查询字段
|
||||||
|
const inputData = ref('')
|
||||||
|
//前台过滤
|
||||||
|
const filterData = computed(() => {
|
||||||
|
return option?.dataset?.source?.filter((item: any) => {
|
||||||
|
return Object.values(item).some(val => {
|
||||||
|
return String(val).toLowerCase().includes(inputData.value.toLowerCase())
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
const { align, pagination, inputShow } = toRefs(props.chartConfig.option)
|
||||||
|
|
||||||
|
pagination.value.onChange = (page: number) => {
|
||||||
|
pagination.value.page = page
|
||||||
|
}
|
||||||
|
|
||||||
|
const { w, h } = toRefs(props.chartConfig.attr)
|
||||||
|
|
||||||
|
const option = reactive({
|
||||||
|
dataset: props.chartConfig.option.dataset,
|
||||||
|
style: props.chartConfig.option.style
|
||||||
|
})
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.chartConfig.option.dataset,
|
||||||
|
(newData: any) => {
|
||||||
|
option.dataset = newData
|
||||||
|
option?.dataset?.dimensions?.forEach((header: any) => {
|
||||||
|
header.align = align.value
|
||||||
|
})
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@include go('tables-basic') {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 15px;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,4 +1,5 @@
|
|||||||
import { TableListConfig } from './TableList'
|
import { TableListConfig } from './TableList'
|
||||||
import { TableScrollBoardConfig } from './TableScrollBoard'
|
import { TableScrollBoardConfig } from './TableScrollBoard'
|
||||||
|
import { TablesBasicConfig } from "./TablesBasic/index";
|
||||||
|
|
||||||
export default [TableListConfig, TableScrollBoardConfig]
|
export default [TableListConfig, TableScrollBoardConfig,TablesBasicConfig]
|
||||||
|
@ -525,8 +525,8 @@ export const useChartEditStore = defineStore({
|
|||||||
}
|
}
|
||||||
const parseHandle = (e: CreateComponentType | CreateComponentGroupType) => {
|
const parseHandle = (e: CreateComponentType | CreateComponentGroupType) => {
|
||||||
e = cloneDeep(e)
|
e = cloneDeep(e)
|
||||||
e.attr.x = this.getMousePosition.x + 30
|
e.attr.x = this.getMousePosition.startX
|
||||||
e.attr.y = this.getMousePosition.y + 30
|
e.attr.y = this.getMousePosition.startY
|
||||||
// 外层生成新 id
|
// 外层生成新 id
|
||||||
e.id = getUUID()
|
e.id = getUUID()
|
||||||
// 分组列表生成新 id
|
// 分组列表生成新 id
|
||||||
@ -639,7 +639,7 @@ export const useChartEditStore = defineStore({
|
|||||||
} else {
|
} else {
|
||||||
const group = historyData[0] as CreateComponentGroupType
|
const group = historyData[0] as CreateComponentGroupType
|
||||||
group.groupList.forEach(item => {
|
group.groupList.forEach(item => {
|
||||||
ids.push(item.id)
|
ids.unshift(item.id)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.setGroup(ids, false)
|
this.setGroup(ids, false)
|
||||||
@ -788,7 +788,7 @@ export const useChartEditStore = defineStore({
|
|||||||
// 高
|
// 高
|
||||||
groupAttr.b = b < y + h ? y + h : b
|
groupAttr.b = b < y + h ? y + h : b
|
||||||
|
|
||||||
targetList.push(item)
|
targetList.unshift(item)
|
||||||
historyList.push(toRaw(item))
|
historyList.push(toRaw(item))
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -834,7 +834,7 @@ export const useChartEditStore = defineStore({
|
|||||||
if (isHistory) chartHistoryStore.createUnGroupHistory(cloneDeep([targetGroup]))
|
if (isHistory) chartHistoryStore.createUnGroupHistory(cloneDeep([targetGroup]))
|
||||||
|
|
||||||
// 分离组件并还原位置属性
|
// 分离组件并还原位置属性
|
||||||
targetGroup.groupList.forEach(item => {
|
targetGroup.groupList.reverse().forEach(item => {
|
||||||
item.attr.x = item.attr.x + targetGroup.attr.x
|
item.attr.x = item.attr.x + targetGroup.attr.x
|
||||||
item.attr.y = item.attr.y + targetGroup.attr.y
|
item.attr.y = item.attr.y + targetGroup.attr.y
|
||||||
if (!callBack) {
|
if (!callBack) {
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<p>
|
<p>
|
||||||
<span class="func-annotate">// {{ EventTypeName[eventName] }}</span>
|
<span class="func-annotate">// {{ EventTypeName[eventName] }}</span>
|
||||||
<br />
|
<br />
|
||||||
<span class="func-keyword">async {{ eventName }}</span> (mouseEvent) {
|
<span class="func-keyword">async {{ eventName }}</span> (mouseEvent,components) {
|
||||||
</p>
|
</p>
|
||||||
<p class="go-ml-4">
|
<p class="go-ml-4">
|
||||||
<n-code :code="(targetData.events.baseEvent || {})[eventName] || ''" language="typescript"></n-code>
|
<n-code :code="(targetData.events.baseEvent || {})[eventName] || ''" language="typescript"></n-code>
|
||||||
@ -52,7 +52,7 @@
|
|||||||
<!-- 函数名称 -->
|
<!-- 函数名称 -->
|
||||||
<p class="go-pl-3">
|
<p class="go-pl-3">
|
||||||
<span class="func-keyword">async function </span>
|
<span class="func-keyword">async function </span>
|
||||||
<span class="func-keyNameWord">{{ eventName }}(mouseEvent) {</span>
|
<span class="func-keyNameWord">{{ eventName }}(mouseEvent,components) {</span>
|
||||||
</p>
|
</p>
|
||||||
<!-- 编辑主体 -->
|
<!-- 编辑主体 -->
|
||||||
<monaco-editor v-model:modelValue="baseEvent[eventName]" height="480px" language="javascript" />
|
<monaco-editor v-model:modelValue="baseEvent[eventName]" height="480px" language="javascript" />
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 修复右下角白点用的 -->
|
<!-- 修复右下角白点用的 -->
|
||||||
<div v-if="designStore.getDarkTheme" class="fix-edit-screens-block"></div>
|
<!-- <div v-if="designStore.getDarkTheme" class="fix-edit-screens-block"></div> -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
@ -290,7 +290,6 @@ window.onKeySpacePressHold = (isHold: boolean) => {
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@include go('sketch-rule') {
|
@include go('sketch-rule') {
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -321,6 +320,10 @@ window.onKeySpacePressHold = (isHold: boolean) => {
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background-color: rgba(144, 146, 152, 0.3);
|
background-color: rgba(144, 146, 152, 0.3);
|
||||||
}
|
}
|
||||||
|
// 修复右下角白点用的
|
||||||
|
&::-webkit-scrollbar-corner {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.fix-edit-screens-block {
|
.fix-edit-screens-block {
|
||||||
|
@ -10,7 +10,8 @@
|
|||||||
...getTransformStyle(item.styles),
|
...getTransformStyle(item.styles),
|
||||||
...getStatusStyle(item.status),
|
...getStatusStyle(item.status),
|
||||||
...getPreviewConfigStyle(item.preview),
|
...getPreviewConfigStyle(item.preview),
|
||||||
...getBlendModeStyle(item.styles) as any
|
...getBlendModeStyle(item.styles) as any,
|
||||||
|
...getSizeStyle(item.attr)
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<!-- 分组 -->
|
<!-- 分组 -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user