add-person.vue 5.26 KB
Newer Older
wangdanlei's avatar
wangdanlei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
<template>
  <div class="add-person-com">
    <dee-form
      ref="editForm"
      :form="form"
      :form-data="editData"
      form-btn-position="center"
      :rules="formRules"
      :inline="true"
    >
      <span style="display:flex">
        <el-button
          type="primary"
          class="searchBtn"
          @click="handleSubmit"
        >确定</el-button>

        <el-button
          class="searchBtn"
          @click="handleClose"
        >取消</el-button>
      </span>
    </dee-form>
  </div>
</template>
<script>
import { getUserList, addGroupPerson } from '@/api/userSystem/user.js'
export default {
  name: 'AddPerson',
  components: { },
  props: {
    selectedGroup: {
      type: Object,
      default: null
    },
    groupTree: {
      type: Array,
      default: () => []
    }
  },
  data() {
    return {
      // allOrgNames: [],
      form: {
        groupName: this.selectedGroup.orgName
      },
      formRules: {
        postName: [
          { required: true, message: '请输入', trigger: 'blur' },
          { min: 1, max: 100, message: '长度在 1 到 100 个字符', trigger: 'blur' }
        ],
        description: [
          { min: 0, max: 1000, message: '长度在 0 到 1000 个字符', trigger: 'blur' }
        ]
      },
      userNameList: []
    }
  },
  computed: {
    editData: function() {
      return [
        {
          data: [
            {
              key: 'groupName',
              title: '群组名称',
              component: {
                name: 'readable'
              }
            },
            {
              key: 'userArr',
              title: '指定用户',
              handler: {
                focus: () => {
                  // this.handleRemote('')
                }
              },
              component: {
                name: 'el-select',
                multiple: true,
                disabled: false,
                filterable: true,
                clearable: true,
                remote: true,
                options: this.userNameList,
                remoteMethod: (val) => {
                  if (val.length > 1) {
                    this.handleRemote(val)
                  }
                }
              }
            }]
        }
      ]
    }
  },
  watch: {
    selectedGroup: {
      deep: true,
      immediate: true,
      handler: function(val) {
        if (val) {
          this.selectedGroup = val
        }
      }
    }
  },
  created() {
  },
  methods: {
    findSelectedItem(tree, id) {
      tree.map(item => {
        if (item.id === id) {
          this.allOrgNames = item.orgNames
        } else if (item.children && item.children.length) {
          this.findSelectedItem(item.children, id)
        }
      })
    },
    handleSubmit() {
      if (this.form.userArr.length) {
        const form = this.form.userArr.map(item => {
          const userItem = item.split(',')
          return {
            'organizationId': this.selectedGroup.id,
            'userId': userItem[0],
            'userName': userItem[1]
          }
        })
        this.handleSubmitAjax(form)
      } else {
        this.$utils.showMessageError('请先选择用户')
      }
    },
    handleSubmitAjax(form) {
      addGroupPerson(form).then(res => {
        this.$emit('handleClose')
        this.$emit('getList')
        this.$utils.showMessageSuccess(res.message)
      })
    },
    handleRemote(query) {
      const params = {
        'indices': [
          'USERS'
        ],
        'pageFrom': 1,
        'pageSize': 100,
        'openProps': [
          {
            'name': 'userAccounts',
            'pageFrom': 1,
            'pageSize': 9999
          }
        ],
        'sortItem': [
          {
            'fieldName': 'modifyTime',
            'sortOrder': 'desc'
          }
        ],
        'keyWord': null,
        'searchItems': {
          'operator': 'AND',
          'items': [
wangdanlei's avatar
wangdanlei committed
167 168 169 170 171
            // {
            //   'fieldName': 'isExistAccount',
            //   'operator': 'EQ',
            //   'value': 'ACCOUNTENABLE'
            // }
wangdanlei's avatar
wangdanlei committed
172 173 174 175 176 177
          ],
          'children': [
            {
              'operator': 'AND',
              'items': [
                {
wangdanlei's avatar
wangdanlei committed
178
                  'fieldName': 'name',
wangdanlei's avatar
wangdanlei committed
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
                  'operator': 'LIKE',
                  'value': query.trim()
                }
              ]
            }
          ]
        }
      }

      getUserList(params).then(res => {
        this.changeUserList(res.items.content)
      })
    },
    handleClose() {
      this.$emit('handleClose')
    },
    handleAdd() {
      this.$emit('handleAdd')
    },
    changeUserList(items) {
      const userNameList = items.map(item => {
        return {
wangdanlei's avatar
wangdanlei committed
201 202
          label: item.userName,
          value: [item.id, item.userName].join(),
wangdanlei's avatar
wangdanlei committed
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
          style: { display: 'block' }
        }
      })
      this.userNameList.forEach(user => {
        const isInclud = userNameList.find((item, index) => {
          const bool = item.value[0] === user.value
          if (bool) {
            userNameList.splice(index, 1)
          }
          return bool
        })
        if (!isInclud) {
          user.style = { display: 'none' }
        } else {
          user.style = { display: 'block' }
        }
      })
      this.userNameList.push(...userNameList)
    }
  }
}
</script>

<style lang="scss" >

</style>