Step 工单流程


基础用法

使用stepstep-list属性来定义 Step 的样式。

  1. <xm-step :step="step" :step-list="stepList"></xm-step>
  2. export default {
  3. data () {
  4. return {
  5. stepList: ['发起工单', '主管审批', '经理审批', '总监核查', '结束'],
  6. step: 2
  7. }
  8. }
  9. }

属性

参数 说明 类型 可选值 默认值
step 设置当前在第几步流程 Number 0
step-list 总流程列表 Array

原文: https://monw3c.github.io/xmui/#/components/step