Welink React-ui基础组件imeline
imeline
Timeline UI提供与WeLink规范一致的视图
参数说明
名称 | 类型 | 默认值 | 说明 |
---|---|---|---|
data | array | 时间轴数据,例如:[{ status: 'fail', date: '18/01/05', title: '筛选中', personInfo: '张三', cycle: '周期:2天', overdue: '已超期 1 天' }] |
import React from 'react';
import { Timeline } from '@wecode/react-weui';
export default class TimelineDemo extends React.Component {
state = {
data: [
{
status: 'current',
date: '18/01/05',
title: '筛选中',
personInfo: '张三',
cycle: '周期:2天',
overdue: '已超期 1 天'
},
{
status: 'success',
date: '18/01/05',
title: '筛选中',
personInfo: '张三',
cycle: '周期:2天',
overdue: '已超期 1 天'
},
{
status: 'fail',
date: '18/01/05',
title: '筛选中',
personInfo: '张三',
cycle: '周期:2天',
overdue: '已超期 1 天'
},
{
status: 'complete',
date: '18/01/05',
title: '筛选中',
personInfo: '张三',
cycle: '周期:2天',
overdue: '已超期 1 天'
},
{
status: 'complete',
date: '18/01/05',
title: '筛选中',
personInfo: '张三',
cycle: '周期:2天',
overdue: '已超期 1 天'
}
]
};
render() {
const { data } = this.state;
return (
<section>
<Timeline data={data} />
</section>
);
}
}
- 点赞
- 收藏
- 关注作者
评论(0)