Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcjg-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcjg-web
  • src
  • views
  • system
  • menus
  • data
  • index.js
  • xiaomiao's avatar
    --no commit message · 390b3816
    390b3816 Browse File
    xiaomiao committed 2023-02-03 17:07:39 +0800
index.js 475 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "name",
        label: "菜单名称",
        width: 300
      },
      {
        prop: "code",
        label: "菜单代码"
      },
      {
        prop: "uri",
        width: 260,
        label: "链接路径"
      },
      {
        prop: "icon",
        label: "图标"
      }
    ]
  }
}
export default new data()