Sign in

简柏林 / thingskit-front · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-front
  • src
  • views
  • message
  • log
  • data.ts
  • perf: 消息记录优化,添加消息平台选择
    8e8b3094
    loveumiko authored
    2023-11-23 14:18:14 +0800  
    Browse Files »
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',
  },
];