index.vue 2.24 KB

<template>
  <el-dialog :title="title" :close-on-click-modal="false"
    class="NCC-dialog NCC-dialog_center transfer-dialog" lock-scroll append-to-body
    v-bind="$attrs" width="800px" :modal-append-to-body="false" v-on="$listeners" @open="onOpen">
    <userTransfer v-model="selectedData" ref="userTransfer" multiple v-if="type==='user'" />
    <NCCTransfer :loading="loading" :treeData="treeData" v-model="selectedData" :type="type"
      ref="NCCTransfer" v-else />
    <span slot="footer" class="dialog-footer">
      <el-button @click="closeTransfer">{{$t('common.cancelButton')}}</el-button>
      <el-button type="primary" @click="confirm">{{$t('common.confirmButton')}}</el-button>
    </span>
  </el-dialog>
</template>

<script>
import NCCTransfer from '@/components/NCC-transfer'
import userTransfer from '@/components/NCC-userTransfer'

export default {
  name: 'org-transfer',
  components: { NCCTransfer, userTransfer },
  props: {
    value: {
      type: Array,
      default: () => []
    },
    type: {
      type: String,
      default: 'user'
    },
    title: {
      type: String,
      default: '组织机构'
    },
  },
  data() {
    return {
      loading: false,
      treeData: [],
      selectedData: []
    }
  },
  methods: {
    onOpen() {
      this.dataInit()
    },
    closeTransfer() {
      this.$emit('update:visible', false)
    },
    confirm() {
      this.$emit('confirm', this.selectedData)
      this.closeTransfer()
    },
    dataInit() {
      this.loading = true
      this.selectedData = []
      this.$nextTick(async () => {
        if (this.type === 'user') {
          this.selectedData = JSON.parse(JSON.stringify(this.value))
          this.$nextTick(() => {
            this.$refs.userTransfer && this.$refs.userTransfer.init()
          })
        } else {
          let res = null
          this.$refs.NCCTransfer && (this.$refs.NCCTransfer.filterText = '')
          if (this.type == 'position') {
            res = await this.$store.dispatch('base/getPositionTree')
          } else if (this.type == 'role') {
            res = await this.$store.dispatch('base/getRoleTree')
          }
          this.treeData = res
          this.selectedData = this.value
        }
        this.loading = false
      })
    }
  }
}
</script>