1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月17日 16:41
| *
| */
|
|
| import React from 'react';
| import user from '../../asset/icons/user.svg';
|
| import './style.scss';
|
| export default function TableHeadView({ type ,notRead , total }) {
| return (
| <div className="table-head-view-main">
| <div className="table-head-view-type"><img src={user} style={{width:'16px',marginRight: '5px'}}/>{type}</div>
| <div className="table-head-view-count">{notRead}条未读 共{total}条消息</div>
| </div>
| );
|
| }
|
|