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
  • components
  • selectTable
  • tableSelect.js
  • renchao@pashanhoo.com's avatar
    style:下拉表格组件得修改 · 4c9d459e
    4c9d459e
    renchao@pashanhoo.com committed 2023-07-27 14:53:58 +0800
tableSelect.js 313 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-07-27 14:44:38
 */
//表格选择器配置

export default {
  parseData: function (res) {
    return {
      data: res.data
    }
  },
  props: {
    label: 'label',					//映射label显示字段
    value: 'value',					//映射value值字段
  }
}