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

bdc / bdcdj-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
  • bdcdj-web
  • src
  • utils
  • dictionary.js
  • renchao@pashanhoo.com's avatar
    style:房屋信息模块字典编译 · 150145c9
    150145c9 Browse Directory
    renchao@pashanhoo.com committed 2023-06-20 10:09:35 +0800
dictionary.js 178 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
export function getSjlx (level) {
  const resultMap = {
    1: '系统数据',
    2: '存量数据',
    3: '补录数据',
  }
  return resultMap[level] || resultMap.default;
}