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
  • 'rename:菜单调整名称'
    f1e7098e
    sqy authored
    2022-03-02 09:25:13 +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',
  },
];