data.ts 286 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 export interface TabItem { key: string; name: string; component: string; } export const achieveList: TabItem[] = [ { key: '1', name: '短信发送记录', component: 'SmsLog', }, { key: '2', name: '邮件发送记录', component: 'EmailLog', }, ];