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
  • zxrz
  • data
  • index.js
  • 任超's avatar
    feat:中心日志 · 9cdd6ef4
    9cdd6ef4
    任超 committed 2022-12-06 09:40:19 +0800
index.js 434 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
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "name",
        label: "用户名称",
      },
      {
        prop: "sj",
        label: "时间",
      },
      {
        prop: "czlx",
        label: "操作类型",
      },
      {
        prop: "ywh",
        label: "业务号",
      }
    ]
  }
}
export default new data()