goview_vue/src/settings/designSetting.ts
2022-08-30 19:14:52 +08:00

75 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { LangEnum, PreviewScaleEnum } from '@/enums/styleEnum'
import { RequestHttpIntervalEnum } from '@/enums/httpEnum'
import designColor from './designColor.json'
// 默认语言
export const lang = LangEnum.ZH
// 水印文字
export const watermarkText = "GoView 低代码平台"
// 分组名称
export const groupTitle = "分组"
// 主题配置
export const theme = {
// 默认是否开启深色主题
darkTheme: true,
//默认主题色
appTheme: '#51d6a9',
appThemeDetail: null,
}
// 图表初始配置(px)
export const chartInitConfig = {
x: 50,
y: 50,
w: 500,
h: 300,
// 不建议动 offset
offsetX: 0,
offsetY: 0,
}
// dialog 图标的大小
export const dialogIconSize = '20'
// 侧边栏宽度
export const asideWidth = '270'
// 侧边栏折叠后的宽度,支持全部折叠会覆盖为 0
export const asideCollapsedWidth = 60
// 弹窗是否可以通过点击遮罩关闭
export const maskClosable = false
// 全局边框圆角
export const borderRadius = '6px'
// 轮播间隔
export const carouselInterval = 4000
// 工作台大屏背景图片大小限制5M
export const backgroundImageSize = 5
// 预览展示方式
export const previewScaleType = PreviewScaleEnum.FIT
// 数据请求间隔s
export const requestInterval = 30
// 工作台自动保存间隔s
export const saveInterval = 30
// 数据请求间隔单位
export const requestIntervalUnit = RequestHttpIntervalEnum.SECOND
// 工作区域历史记录存储最大数量
export const editHistoryMax = 100
// 拖拽时蒙层的 z-index需比所有图表高
export const canvasModelIndex = 9999
// 框选时蒙层的 z-index需比所有图表高
export const selectBoxIndex = canvasModelIndex + 10