export default [ { title: '流程容器', screenshot: '', schema: { componentName: 'PisellProcedure', props: { showHeader: true, showSidebar: true, showFooter: true, headerProps: { left: { type: 'JSSlot', value: [], }, right: { type: 'JSSlot', value: [], }, stepsProps: { current: 0, items: [ { title: '第一步', description: '这是第一步的描述' }, { title: '第二步', description: '这是第二步的描述' }, { title: '第三步', description: '这是第三步的描述' }, ], }, }, bodyProps: { contentSlot: { type: 'JSSlot', value: [], }, sidebarSlot: { type: 'JSSlot', value: [], }, }, footerProps: { summaryButton: { type: 'JSSlot', value: [ { componentName: 'Icon', props: { type: 'ShoppingCartOutlined', }, }, ], }, leftSlot: { type: 'JSSlot', value: [], }, actions: { type: 'JSSlot', value: [ { componentName: 'Button', props: { children: '下一步', type: 'primary', }, }, ], }, }, }, }, }, ];