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.
54 lines
1.3 KiB
54 lines
1.3 KiB
// 定义插件相关信息
|
|
/* eslint-disable */
|
|
export default {
|
|
defaults: [
|
|
{
|
|
id: 1,
|
|
name: 'TASK_NAME',
|
|
description: '任务名插件',
|
|
component: 'TaskTitle',
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'TASK_DESCRIPTION',
|
|
description: '任务描述插件',
|
|
component: 'TaskDescription',
|
|
},
|
|
{
|
|
id: 3,
|
|
name: 'TASK_DURATION_DELAY',
|
|
description: '任务时长延迟插件(+-1min)时间格式可设置',
|
|
component: 'TaskDurationDelay',
|
|
},
|
|
{
|
|
id: 4,
|
|
name: 'TASK_START_TIME_DELAY',
|
|
description: '任务开始时间延迟插件(+-1hour)',
|
|
component: 'TaskStartTimeDelay',
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'DELIVERABLE',
|
|
description: '交付物插件(人 + 交付物)可配置【仅人】 or 【仅交付物】 or 【人+交付物】',
|
|
component: 'Deliverable',
|
|
},
|
|
{
|
|
id: 6,
|
|
name: 'SUBTASKS',
|
|
description: '子任务插件:显示子任务',
|
|
component: 'Subtasks',
|
|
},
|
|
{
|
|
id: 7,
|
|
name: 'SUBPROJECT',
|
|
description: '子项目插件:显示子项目',
|
|
component: 'Subproject',
|
|
},
|
|
{
|
|
id: 8,
|
|
name: 'TASK_COUNTDOWN',
|
|
description: '任务倒计时插件',
|
|
component: 'TaskCountdown',
|
|
},
|
|
], // 默认插件id列表
|
|
};
|
|
|