fix: 新增 store 控制
This commit is contained in:
parent
1a659d4a60
commit
a1d743aa74
@ -2,19 +2,24 @@ import { ThemeEnum } from '@/enums/styleEnum'
|
|||||||
|
|
||||||
export interface ChartLayoutType {
|
export interface ChartLayoutType {
|
||||||
// 图层控制
|
// 图层控制
|
||||||
layers: true,
|
layers: boolean,
|
||||||
// 图表组件
|
// 图表组件
|
||||||
charts: true,
|
charts: boolean,
|
||||||
// 详情设置
|
// 详情设置
|
||||||
details: true,
|
details: boolean,
|
||||||
// 对齐线
|
// 对齐线
|
||||||
alignLine: true,
|
alignLine: boolean,
|
||||||
// 滤镜
|
// 滤镜
|
||||||
filter: {
|
filter: {
|
||||||
// 色相
|
// 色相
|
||||||
|
hueRotate: number,
|
||||||
// 饱和度
|
// 饱和度
|
||||||
|
saturate: number,
|
||||||
// 亮度
|
// 亮度
|
||||||
|
brightness: number,
|
||||||
// 对比度
|
// 对比度
|
||||||
|
contrast: number,
|
||||||
// 不透明度
|
// 不透明度
|
||||||
|
unOpacity: number
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
52
src/store/modules/chartLayoutStore/chartLayoutStore.ts
Normal file
52
src/store/modules/chartLayoutStore/chartLayoutStore.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import { defineStore } from 'pinia'
|
||||||
|
import { store } from '@/store'
|
||||||
|
import { ChartLayoutType } from './chartLayoutStore.d'
|
||||||
|
|
||||||
|
export const useChartLayoutStore = defineStore({
|
||||||
|
id: 'useChartLayoutStore',
|
||||||
|
state: (): ChartLayoutType => ({
|
||||||
|
// 图层控制
|
||||||
|
layers: true,
|
||||||
|
// 图表组件
|
||||||
|
charts: true,
|
||||||
|
// 详情设置
|
||||||
|
details: true,
|
||||||
|
// 对齐线
|
||||||
|
alignLine: true,
|
||||||
|
// 滤镜
|
||||||
|
filter: {
|
||||||
|
// 色相
|
||||||
|
hueRotate: 0,
|
||||||
|
// 饱和度
|
||||||
|
saturate: 0,
|
||||||
|
// 亮度
|
||||||
|
brightness: 100,
|
||||||
|
// 对比度
|
||||||
|
contrast: 100,
|
||||||
|
// 不透明度
|
||||||
|
unOpacity: 100
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
getters: {
|
||||||
|
getLayers(e): boolean {
|
||||||
|
return this.layers
|
||||||
|
},
|
||||||
|
getCharts(): boolean {
|
||||||
|
return this.charts
|
||||||
|
},
|
||||||
|
getDetails(): boolean {
|
||||||
|
return this.details
|
||||||
|
},
|
||||||
|
getAlignLine(): boolean {
|
||||||
|
return this.alignLine
|
||||||
|
},
|
||||||
|
getFilter(): object {
|
||||||
|
return this.filter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
export function useChartLayoutSettingWithOut() {
|
||||||
|
return useChartLayoutStore(store)
|
||||||
|
}
|
@ -1,7 +1,9 @@
|
|||||||
import { DesignStateType } from '@/store/modules/designStore/designStore.d';
|
import { DesignStateType } from '@/store/modules/designStore/designStore.d';
|
||||||
import { LangStateType } from '@/store/modules/langStore/langStore.d';
|
import { LangStateType } from '@/store/modules/langStore/langStore.d';
|
||||||
|
import { ChartLayoutType } from '@/store/modules/chartLayoutStore/chartLayoutStore.d';
|
||||||
|
|
||||||
export interface allStore {
|
export interface allStore {
|
||||||
useDesignStore: DesignStateType;
|
useDesignStore: DesignStateType;
|
||||||
useLangStore: LangStateType;
|
useLangStore: LangStateType;
|
||||||
|
useChartLayoutStore: ChartLayoutType;
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,9 @@
|
|||||||
<HeaderRightBtn />
|
<HeaderRightBtn />
|
||||||
</template>
|
</template>
|
||||||
</HeaderPro>
|
</HeaderPro>
|
||||||
<n-layout-content> </n-layout-content>
|
<n-layout-content>
|
||||||
|
<n-space></n-space>
|
||||||
|
</n-layout-content>
|
||||||
</n-layout>
|
</n-layout>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user