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
783 B
23 lines
783 B
const state = {
|
|
scrollTop: 0,
|
|
viewId: '', // 时间轴自动滚动的位置
|
|
isShrink: false, // true: 收起, false:展开
|
|
tip: {
|
|
taskId: '', // 当前正在修改状态的任务的id
|
|
show: false,
|
|
status: 0, // 所点击任务的当前状态码
|
|
text: '',
|
|
left: 0, // 鼠标点击位置距离左边的距离
|
|
top: 0, // 鼠标点击位置距离上边的距离
|
|
},
|
|
timeNode: new Date().getTime(), // 时间基准点
|
|
timeUnit: 4, // 时间颗粒度
|
|
topEnd: false, // 时间轴向上查任务到顶了
|
|
bottomEnd: false, // 时间轴向下查任务到底了
|
|
permanents: [], // 永久日常任务
|
|
dailyTasks: [], // 日常任务
|
|
tasks: [], // 所有的定期任务
|
|
showSkeleton: false, // 定期任务骨架屏
|
|
};
|
|
|
|
export default state;
|
|
|