ChooseOrgTree.vue 1.7 KB
<template>
  <el-dialog
    :title="$t('scheduleClassesPage.selectOrg')"
    :visible.sync="dialogVisible"
    width="60%"
  >
    <el-tree
      ref="orgTree"
      :data="chooseOrgInfo.orgs"
      :props="defaultProps"
      node-key="id"
      highlight-current
      @node-click="handleNodeClick"
    />
    <span slot="footer" class="dialog-footer">
      <el-button @click="dialogVisible = false">{{ $t('common.cancel') }}</el-button>
      <el-button type="primary" @click="_doChooseOrg">{{ $t('common.confirm') }}</el-button>
    </span>
  </el-dialog>
</template>

<script>
import { getCommunityId } from '@/api/community/communityApi'
import { listOrgTree } from '@/api/org/orgApi'

export default {
  name: 'ChooseOrgTree',
  data() {
    return {
      dialogVisible: false,
      chooseOrgInfo: {
        orgs: [],
        orgId: '',
        curOrg: {}
      },
      defaultProps: {
        children: 'children',
        label: 'name'
      }
    }
  },
  methods: {
    open() {
      this.dialogVisible = true
      this._loadChooseOrgs()
    },
    async _loadChooseOrgs() {
      try {
        const params = {
          communityId: getCommunityId()
        }
        const { data } = await listOrgTree(params)
        this.chooseOrgInfo.orgs = data
      } catch (error) {
        console.error('获取组织树失败:', error)
      }
    },
    handleNodeClick(data) {
      this.chooseOrgInfo.curOrg = data
      this.chooseOrgInfo.curOrg.orgId = data.id
    },
    _doChooseOrg() {
      this.$emit('switchOrg', this.chooseOrgInfo.curOrg)
      this.dialogVisible = false
    }
  }
}
</script>

<style lang="scss" scoped>
::v-deep .el-dialog__body {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}
</style>