forked from ccsens_fe/tall-mui-3
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
859 B
23 lines
859 B
const state = {
|
|
scrollTop: 0,
|
|
isShrink: false, // true: 收起, false:展开
|
|
client: {
|
|
left: 0, // 鼠标点击位置距离左边的距离
|
|
top: 0, // 鼠标点击位置距离上边的距离
|
|
},
|
|
showTips: false,
|
|
status: 0, // 点击了时间轴上的哪种样式,默认点击了开始
|
|
tipsContent: '', // 提示框内的内容,需要传入
|
|
project: { name: '加载中...' }, // 当前项目信息
|
|
invisibleRoles: [], // 不展示的角色信息
|
|
visibleRoles: [], // 展示的角色信息
|
|
roleId: '', // 当前展示查看的角色id
|
|
timeNode: new Date().getTime(), // 时间基准点
|
|
timeUnit: 4, // // 时间颗粒度
|
|
tasks: [], // 定期任务
|
|
topEnd: false, // 时间轴向上查任务到顶了
|
|
bottomEnd: false, // 时间轴向下查任务到底了
|
|
dailyTasks: [], // 日常任务
|
|
};
|
|
|
|
export default state;
|
|
|