export interface ListItem { id: string; avatar: string; // 通知的标题内容 title: string; // 是否在标题上显示删除线 titleDelete?: boolean; datetime: string; type: string; read?: boolean; description: string; clickClose?: boolean; extra?: string; color?: string; } export interface TabItem { key: string; name: string; list: ListItem[]; unreadlist?: ListItem[]; } export const tabListData: TabItem[] = [ { key: '1', name: '通知', list: [ // { // id: '000000001', // avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png', // title: '你收到了 14 份新周报', // description: '', // datetime: '2017-08-09', // type: '1', // }, ], }, { key: '2', name: '消息', list: [ // { // id: '000000006', // avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg', // title: '曲丽丽 评论了你', // description: '描述信息描述信息描述信息', // datetime: '2017-08-07', // type: '2', // clickClose: true, // }, ], }, { key: '3', name: '待办', list: [ // { // id: '000000009', // avatar: '', // title: '任务名称', // description: '任务需要在 2017-01-12 20:00 前启动', // datetime: '', // extra: '未开始', // color: '', // type: '3', // }, ], }, ];