美文网首页
公用ui组建封装

公用ui组建封装

作者: miccuci | 来源:发表于2019-01-08 19:31 被阅读38次
  1. 单选按钮组


    单选按钮组
<select-button 
  :list="doctorList" 
  :value="form.anesthetistEmpId" 
  radio-group-style="height:136px;margin-top:8px" 
  @change="onSelectChange"/>
  1. 状态标签


    状态标签
<status-badge type="error" content="错误"/>
  1. 时间轴


    时间轴
      <time-line :list="timeLineList">
        <template slot-scope="scope">
          <div>
            <div>{{ scope.item.title }}</div>
            <div>{{ scope.item.href }}</div>
          </div>
        </template>
      </time-line>

相关文章

网友评论

      本文标题:公用ui组建封装

      本文链接:https://www.haomeiwen.com/subject/myiurqtx.html