Files
sgxt_web/src/constant/index.js

24 lines
501 B
JavaScript
Raw Normal View History

2025-04-12 14:54:02 +08:00
// 用于保存各种常量
export const TOKEN = "token";
//时间戳
export const TIME_STAMP = "timeStamp";
//定义超时时长 2小时
export const TOKEN_TIMEOUT_VSLUE = 24 * 3600 * 1000 * 30;
//主题色保存的key
export const MAIN_COLOR = "mainColor";
//默认主题色
export const DEFAULT_COLOR = "#409eff";
// tags
export const TAGS_VIEW = "tagsView";
//form 表单 label-width
export const LABEL_WIDTH = "100px";
//form 表单 自定义宽度
export const COMPONENT_WIDTH = "240px";