BindingView.js 1.2 KB
Newer Older
陈帅's avatar
陈帅 committed
1 2 3
import React, { Component, Fragment } from 'react';
import { Icon, List } from 'antd';

ddcat1115's avatar
ddcat1115 committed
4
export default class BindingView extends Component {
陈帅's avatar
陈帅 committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
  getData = () => {
    return [
      {
        title: '绑定淘宝',
        description: '当前未绑定淘宝账号',
        actions: [<a>绑定</a>],
        avatar: <Icon type="taobao" className="taobao" />,
      },
      {
        title: '绑定支付宝',
        description: '当前未绑定支付宝账号',
        actions: [<a>绑定</a>],
        avatar: <Icon type="alipay" className="alipay" />,
      },
      {
        title: '绑定钉钉',
        description: '当前未绑定钉钉账号',
        actions: [<a>绑定</a>],
        avatar: <Icon type="dingding" className="dingding" />,
      },
    ];
  };
  render() {
    return (
      <Fragment>
        <List
          itemLayout="horizontal"
          dataSource={this.getData()}
          renderItem={item => (
            <List.Item actions={item.actions}>
              <List.Item.Meta
                avatar={item.avatar}
                title={item.title}
                description={item.description}
              />
            </List.Item>
          )}
        />
      </Fragment>
    );
  }
}