@bos-alpha/progress
Version:
进度管理
16 lines (15 loc) • 420 B
TypeScript
import 'frappe-gantt-bigdata/dist/gantt.css';
interface PropsType {
pageMode: 'manage' | 'simulate';
tableData?: any;
days?: number;
}
/**
*
* 甘特图 按计划时间
进度管理时模型按年 可手动调整
进度模拟时只能按天 通过scrollLeft按天滚动预览
* @returns
*/
export declare const Gantt: ({ pageMode, tableData, days }: PropsType) => JSX.Element;
export {};