Files
bigscreenWeb/src/constant/index.ts

48 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-09-25 13:32:47 +08:00
import { ModuleInfo } from "./index.d";
// 运维单位id
export const deptId = window.sessionStorage.getItem("deptId") || "10002";
export const timeType = 3; //类型(1年 2季度 3月份 4周 5日)")
// 星期
export const WEEK = ["周日", "周一", "周二", "周三", "周四", "周五", "周六"];
// 主题名称与副标题名称
export const title = "电压暂降监测平台";
export const subtitle = ["数据分析1", "数据分析2", "vue-big-screen"];
// 组件颜色
export const color = [
["#0a73ff60", "#0a73ff"],
["#0a73ff", "#003a87"],
["#0a73ff", "#0a73ff"],
["#0a73ff60", "#0a73ff60"],
];
export const moduleInfo: ModuleInfo = [
// 中间的几个模块
{
name: "任务通过率",
icon: "icon-chart-bar",
},
{
name: "地图数据",
icon: "icon-tongji4",
},
{
name: "产品销售渠道分析",
icon: "icon-align-left",
},
{
name: "任务完成排行榜",
icon: "icon-zhibiao2",
},
// 底部两个模块
{
name: "数据统计图",
icon: "icon-vector",
},
{
name: "工单修复以及满意度统计图",
icon: "icon-fenxi7",
},
];