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.
97 lines
2.3 KiB
97 lines
2.3 KiB
// 定义插件相关信息
|
|
/* eslint-disable */
|
|
export default {
|
|
defaults: [
|
|
{
|
|
id: 1,
|
|
name: 'TASK_NAME',
|
|
description: '任务名插件',
|
|
component: 'p-task-title',
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'TASK_DESCRIPTION',
|
|
description: '任务描述插件',
|
|
component: 'p-task-description',
|
|
},
|
|
{
|
|
id: 3,
|
|
name: 'TASK_DURATION_DELAY',
|
|
description: '任务时长延迟插件(+-1min)时间格式可设置',
|
|
component: 'p-task-duration-delay',
|
|
},
|
|
{
|
|
id: 4,
|
|
name: 'TASK_START_TIME_DELAY',
|
|
description: '任务开始时间延迟插件(+-1hour)',
|
|
component: 'p-task-start-time-delay',
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'DELIVERABLE',
|
|
description: '交付物插件(人 + 交付物)可配置【仅人】 or 【仅交付物】 or 【人+交付物】',
|
|
component: 'p-deliverable',
|
|
},
|
|
{
|
|
id: 6,
|
|
name: 'SUBTASKS',
|
|
description: '子任务插件:显示子任务',
|
|
component: 'p-subtasks',
|
|
},
|
|
{
|
|
id: 7,
|
|
name: 'SUB_PROJECT',
|
|
description: '子项目插件:显示子项目',
|
|
component: 'p-sub-project',
|
|
},
|
|
{
|
|
id: 8,
|
|
name: 'TASK_COUNTDOWN',
|
|
description: '任务倒计时插件',
|
|
component: 'p-task-countdown',
|
|
},
|
|
{
|
|
id: 9,
|
|
name: 'MANAGE_PROJECT',
|
|
description: '项目信息管理插件',
|
|
component: 'p-manage-project',
|
|
},
|
|
|
|
{
|
|
id: 10,
|
|
name: 'MANAGE_ROLE',
|
|
description: '角色信息管理插件',
|
|
component: 'p-manage-role',
|
|
},
|
|
{
|
|
id: 11,
|
|
name: 'MANAGE_MEMBER',
|
|
description: '成员信息管理插件',
|
|
component: 'p-manage-member',
|
|
},
|
|
{
|
|
id: 12,
|
|
name: 'MANAGE_TASK',
|
|
description: '任务信息管理插件',
|
|
component: 'p-manage-task',
|
|
},
|
|
{
|
|
id: 13,
|
|
name: 'WBS_IMPORT',
|
|
description: '导入WBS新建项目',
|
|
component: 'p-wbs-import',
|
|
},
|
|
{
|
|
id: 14,
|
|
name: 'WBS_IMPORT_UPDATE',
|
|
description: '导入WBS更新项目',
|
|
component: 'p-wbs-update',
|
|
},
|
|
{
|
|
id: 15,
|
|
name: 'DELIVER_CHECK',
|
|
description: '交付物检查',
|
|
component: 'p-deliver-check',
|
|
},
|
|
], // 默认插件id列表
|
|
};
|
|
|