index.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <el-select
  3. filterable
  4. v-model="modelValue"
  5. :placeholder="placeholder"
  6. ref="selectUpResId"
  7. >
  8. <el-option
  9. :value="modelValue"
  10. style="overflow: auto; height: 100%"
  11. hidden
  12. />
  13. <el-tree
  14. :data="dataList"
  15. :props="defaultProps"
  16. :node-key="nodeKey"
  17. :expand-on-click-node="expandNode"
  18. :check-on-click-node="checkNode"
  19. check-strictly
  20. @node-click="handleNodeClick"
  21. />
  22. </el-select>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. form: {
  29. label: '',
  30. id: ''
  31. },
  32. dataList:[]
  33. }
  34. },
  35. props: {
  36. param: {
  37. type: Array,
  38. required: true
  39. },
  40. placeholder: {
  41. type: String,
  42. default: '请选择'
  43. },
  44. formatId: {
  45. type: String,
  46. default: 'deptId'
  47. },
  48. defaultProps: {
  49. type: Object,
  50. default: () => {
  51. return {
  52. children: "children",
  53. label: "deptName"
  54. }
  55. }
  56. },
  57. nodeKey: {
  58. type: String,
  59. default: 'deptId'
  60. },
  61. expandNode: {
  62. type: Boolean,
  63. default: false
  64. },
  65. checkNode: {
  66. type: Boolean,
  67. default: true
  68. },
  69. modelValue: {
  70. type: String,
  71. default: ''
  72. }
  73. },
  74. created() {
  75. this.dataList = this.handleTree(this.param, this.formatId);
  76. },
  77. methods: {
  78. handleNodeClick(data) {
  79. this.$emit('setNodeValue', data)
  80. this.$refs.selectUpResId.blur()
  81. }
  82. }
  83. }
  84. </script>