tree-select.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <div v-loading="loading" :element-loading-background="elementLoadingBackground" style="width: 100%;">
  3. <el-tree-select
  4. style="width: 100%;"
  5. v-bind="$attrs"
  6. v-model="paramVal"
  7. :placeholder="$attrs.placeholder ? $attrs.placeholder : `请选择${label}`"
  8. :data="options"
  9. :clearable="$util.isValue($attrs.clearable) ? $attrs.clearable : true"
  10. :filterable="$util.isValue($attrs.filterable) ? $attrs.filterable : true"
  11. :check-strictly="checkStrictly"
  12. :disabled="$util.isValue($attrs.disabled) ? $attrs.disabled : formView"
  13. />
  14. </div>
  15. </template>
  16. <script lang="ts">
  17. import {
  18. defineComponent,
  19. computed,
  20. onMounted,
  21. ref,
  22. reactive,
  23. watch,
  24. getCurrentInstance,
  25. ComponentInternalInstance,
  26. toRefs,
  27. nextTick,
  28. inject
  29. } from 'vue'
  30. import {useStore} from 'vuex'
  31. import {useRouter, useRoute} from 'vue-router'
  32. export default defineComponent({
  33. name: '',
  34. components: {},
  35. props: {
  36. param: {},
  37. label: {},
  38. checkStrictly: { default: true },
  39. options: { type: Array, default: () => [] },
  40. static: { default: false },
  41. isLoading: { default: false }
  42. },
  43. setup(props, { emit }) {
  44. const store = useStore();
  45. const router = useRouter();
  46. const route = useRoute();
  47. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  48. const state = reactive({
  49. paramVal: props.param,
  50. loading: true,
  51. elementLoadingBackground: inject('element-loading-background', null),
  52. formView: inject('form-view', false),
  53. })
  54. watch(() => state.paramVal, (n) => {
  55. emit('emitParam', n)
  56. })
  57. watch(() => props.param, (n) => {
  58. state.paramVal = n
  59. })
  60. watch(() => [props.options, props.static], () => {
  61. state.loading = false
  62. })
  63. onMounted(() => {
  64. if (props.static !== false || props.options?.length > 0) {
  65. state.loading = false
  66. }
  67. })
  68. return {
  69. ...toRefs(state),
  70. }
  71. },
  72. })
  73. </script>
  74. <style scoped lang="scss">
  75. </style>