Sign in

cnlive_project / cnlive-community-web-vue · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • cnlive-community-web-vue
  • src
  • views
  • column
  • config.ts
  • debug
    5e79c056
    杨泽宇 authored
    2022-01-20 16:56:19 +0800  
    Browse Code »
config.ts 243 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
interface Type {
  label: string,
  value: string
}

// 栏目类型
export const types: Type[] = [
  {
    label: '权威资讯',
    value: '1'
  }, {
    label: '公益活动',
    value: '2'
  }, {
    label: '服务',
    value: '3'
  }
]