Steps步骤条

引导用户按照流程完成任务的导航条。

何时使用

当任务复杂或者存在先后关系时,将其分解成一系列步骤,从而简化任务。

代码演示

Steps 步骤条 - 图1

基本用法

简单的步骤条。

  1. import { Steps } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps current={1}>
  5. <Step title="Finished" description="This is a description." />
  6. <Step title="In Progress" description="This is a description." />
  7. <Step title="Waiting" description="This is a description." />
  8. </Steps>,
  9. mountNode,
  10. );

Steps 步骤条 - 图2

迷你版

迷你版的步骤条,通过设置 <Steps size="small"> 启用.

  1. import { Steps } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps size="small" current={1}>
  5. <Step title="Finished" />
  6. <Step title="In Progress" />
  7. <Step title="Waiting" />
  8. </Steps>,
  9. mountNode,
  10. );

Steps 步骤条 - 图3

带图标的步骤条

通过设置 Steps.Stepicon 属性,可以启用自定义图标。

  1. import { Steps, Icon } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps>
  5. <Step status="finish" title="Login" icon={<Icon type="person_outline" />} />
  6. <Step status="finish" title="Verification" icon={<Icon type="panorama_vertical" />} />
  7. <Step status="process" title="Pay" icon={<Icon type="schedule" />} />
  8. <Step status="wait" title="Done" icon={<Icon type="tag_faces" />} />
  9. </Steps>,
  10. mountNode,
  11. );

Steps 步骤条 - 图4

步骤切换

通常配合内容及按钮使用,表示一个流程的处理进度。

  1. import { Steps, Button, message } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. const steps = [
  4. {
  5. title: 'First',
  6. content: 'First-content',
  7. },
  8. {
  9. title: 'Second',
  10. content: 'Second-content',
  11. },
  12. {
  13. title: 'Last',
  14. content: 'Last-content',
  15. },
  16. ];
  17. class App extends React.Component {
  18. constructor(props) {
  19. super(props);
  20. this.state = {
  21. current: 0,
  22. };
  23. }
  24. next() {
  25. const current = this.state.current + 1;
  26. this.setState({ current });
  27. }
  28. prev() {
  29. const current = this.state.current - 1;
  30. this.setState({ current });
  31. }
  32. render() {
  33. const { current } = this.state;
  34. return (
  35. <div>
  36. <Steps current={current}>
  37. {steps.map(item => (
  38. <Step key={item.title} title={item.title} />
  39. ))}
  40. </Steps>
  41. <div className="steps-content">{steps[this.state.current].content}</div>
  42. <div className="steps-action">
  43. {this.state.current < steps.length - 1 && (
  44. <Button type="primary" onClick={() => this.next()}>
  45. Next
  46. </Button>
  47. )}
  48. {this.state.current === steps.length - 1 && (
  49. <Button type="primary" onClick={() => message.success('Processing complete!')}>
  50. Done
  51. </Button>
  52. )}
  53. {this.state.current > 0 && (
  54. <Button style={{ marginLeft: 8 }} onClick={() => this.prev()}>
  55. Previous
  56. </Button>
  57. )}
  58. </div>
  59. </div>
  60. );
  61. }
  62. }
  63. ReactDOM.render(<App />, mountNode);
  1. .steps-content {
  2. margin-top: 16px;
  3. border: 1px dashed #e9e9e9;
  4. border-radius: 6px;
  5. background-color: #fafafa;
  6. min-height: 200px;
  7. text-align: center;
  8. padding-top: 80px;
  9. }
  10. .steps-action {
  11. margin-top: 24px;
  12. }

Steps 步骤条 - 图5

竖直方向的步骤条

简单的竖直方向的步骤条。

  1. import { Steps } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps direction="vertical" current={1}>
  5. <Step title="Finished" description="This is a description." />
  6. <Step title="In Progress" description="This is a description." />
  7. <Step title="Waiting" description="This is a description." />
  8. </Steps>,
  9. mountNode,
  10. );

Steps 步骤条 - 图6

竖直方向的小型步骤条

简单的竖直方向的小型步骤条。

  1. import { Steps } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps direction="vertical" size="small" current={1}>
  5. <Step title="Finished" description="This is a description." />
  6. <Step title="In Progress" description="This is a description." />
  7. <Step title="Waiting" description="This is a description." />
  8. </Steps>,
  9. mountNode,
  10. );

Steps 步骤条 - 图7

步骤运行错误

使用 Steps 的 status 属性来指定当前步骤的状态。

  1. import { Steps } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps current={1} status="error">
  5. <Step title="Finished" description="This is a description" />
  6. <Step title="In Process" description="This is a description" />
  7. <Step title="Waiting" description="This is a description" />
  8. </Steps>,
  9. mountNode,
  10. );

Steps 步骤条 - 图8

点状步骤条

包含步骤点的进度条。

  1. import { Steps } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. ReactDOM.render(
  4. <Steps progressDot current={1}>
  5. <Step title="Finished" description="This is a description." />
  6. <Step title="In Progress" description="This is a description." />
  7. <Step title="Waiting" description="This is a description." />
  8. </Steps>,
  9. mountNode,
  10. );

Steps 步骤条 - 图9

自定义点状步骤条

为点状步骤条增加自定义展示。

  1. import { Steps, Popover } from 'choerodon-ui';
  2. const Step = Steps.Step;
  3. const customDot = (dot, { status, index }) => (
  4. <Popover
  5. content={
  6. <span>
  7. step {index} status: {status}
  8. </span>
  9. }
  10. >
  11. {dot}
  12. </Popover>
  13. );
  14. ReactDOM.render(
  15. <Steps current={1} progressDot={customDot}>
  16. <Step title="Finished" description="You can hover on the dot." />
  17. <Step title="In Progress" description="You can hover on the dot." />
  18. <Step title="Waiting" description="You can hover on the dot." />
  19. <Step title="Waiting" description="You can hover on the dot." />
  20. </Steps>,
  21. mountNode,
  22. );

API

  1. <Steps>
  2. <Step title="第一步" />
  3. <Step title="第二步" />
  4. <Step title="第三步" />
  5. </Steps>

Steps

整体步骤条。

参数说明类型默认值
current指定当前步骤,从 0 开始记数。在子 Step 元素中,可以通过 status 属性覆盖状态number0
direction指定步骤条方向。目前支持水平(horizontal)和竖直(vertical)两种方向stringhorizontal
progressDot点状步骤条,可以设置为一个 functionBoolean or (iconDot, {index, status, title, description}) => ReactNodefalse
size指定大小,目前支持普通(default)和迷你(smallstringdefault
status指定当前步骤的状态,可选 wait process finish errorstringprocess

Steps.Step

步骤条内的每一个步骤。

参数说明类型默认值
description步骤的详情描述,可选string|ReactNode-
icon步骤图标的类型,可选string|ReactNode-
status指定状态。当不配置该属性时,会使用 Steps 的 current 来自动指定状态。可选:wait process finish errorstringwait
title标题string|ReactNode-