zjf
2023-02-24 3f9bad03f4fbca2d5c5be86e904ae832475634d8
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
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
229
230
<template>
  <el-dialog
    v-loading="loading"
    :title="title"
    :visible.sync="visible"
    :append-to-body="true"
    width="400px"
    @close="handleCancel">
    <div class="handle-box">
      <flexbox
        class="handle-item"
        align="stretch">
        <div
          class="handle-item-name"
          style="margin-top: 8px;">选择团队成员:</div>
        <xh-user-cell
          :radio="false"
          class="handle-item-content"
          placeholder="点击选择(多选)"
          @value-change="userChage"/>
        <div
          v-if="title!='添加团队成员'"
          class="tips">此操作不可移除数据负责人</div>
      </flexbox>
      <flexbox
        v-if="title=='添加团队成员'"
        class="handle-item">
        <div class="handle-item-name">权限:</div>
        <el-radio-group v-model="handleType">
          <el-radio :label="1">只读</el-radio>
          <el-radio :label="2">读写</el-radio>
        </el-radio-group>
      </flexbox>
      <flexbox
        v-if="title=='添加团队成员' && crmType === 'customer'"
        class="handle-item">
        <div class="handle-item-name">同时添加至:</div>
        <el-checkbox-group v-model="addsTypes">
          <!-- <el-checkbox label="1">联系人</el-checkbox> -->
          <el-checkbox label="2">商机</el-checkbox>
          <el-checkbox label="3">合同</el-checkbox>
        </el-checkbox-group>
      </flexbox>
    </div>
    <span
      slot="footer"
      class="dialog-footer">
      <el-button @click.native="handleCancel">取消</el-button>
      <el-button
        type="primary"
        @click.native="handleConfirm">保存</el-button>
    </span>
  </el-dialog>
</template>
 
<script>
import { XhUserCell } from '@/components/CreateCom'
// import {
//   crmCustomerSettingTeamSave,
//   crmCustomerSettingTeamDelete
// } from '@/api/customermanagement/customerManage'
// import {
//   crmContractSettingTeamSave,
//   crmContractSettingTeamDelete
// } from '@/api/clients/contract'
 
// import {
//   crmBusinessSettingTeamSave,
//   crmBusinessSettingTeamDelete
// } from '@/api/clients/business'
 
export default {
  /** 客户管理 的 勾选后的 团队成员 操作 移除操作不可移除客户负责人 */
  name: 'TeamsHandle',
  components: {
    XhUserCell
  },
  mixins: [],
  props: {
    dialogVisible: {
      type: Boolean,
      required: true,
      default: false
    },
    title: {
      type: String,
      default: ''
    },
    /** 没有值就是全部类型 有值就是当个类型 */
    crmType: {
      type: String,
      default: ''
    },
    /** 转移数据 */
    selectionList: {
      type: Array,
      default: () => {
        return []
      }
    }
  },
  data () {
    return {
      loading: false, // 加载动画
      visible: false,
 
      usersList: [], // 变更负责人
      handleType: 1, // 操作类型
      addsTypes: [] // 添加至
    }
  },
  computed: {},
  watch: {
    dialogVisible: {
      handler (val) {
        this.visible = val
      },
      deep: true,
      immediate: true
    }
  },
  mounted () {
    this.visible = this.dialogVisible
  },
  methods: {
    /**
     * 取消选择
     */
    handleCancel () {
      this.visible = false
      this.$emit('update:dialogVisible', false)
    },
    /** 负责人更改 */
    userChage (data) {
      this.usersList = data.value
    },
    handleConfirm () {
      // 移除操作不可移除客户负责人
      if (this.usersList.length === 0) {
        this.$message.error('请选择团队成员')
      } else {
        var self = this
        var actionIds = this.selectionList.map(function (item, index, array) {
          return item[self.crmType + 'Id']
        })
        var userIds = this.usersList.map(function (item, index, array) {
          return item.userId
        })
        var params = {
          ids: actionIds.join(','),
          memberIds: userIds.join(',')
        }
        if (this.crmType === 'customer' && this.title === '添加团队成员') {
          // 只有客户下面同时添加到
          params.changeType = this.addsTypes.join(',')
        }
 
        let request
        if (this.title === '添加团队成员') {
          // 1只读,2读写
          params.power = this.handleType
          request = {
            // customer: crmCustomerSettingTeamSave,
            // contract: crmContractSettingTeamSave,
            // business: crmBusinessSettingTeamSave
          }[this.crmType]
        } else {
          request = {
            // customer: crmCustomerSettingTeamDelete,
            // contract: crmContractSettingTeamDelete,
            // business: crmBusinessSettingTeamDelete
          }[this.crmType]
        }
 
        this.loading = true
 
        request(params)
          .then(res => {
            this.$message({
              type: 'success',
              message: '操作成功'
            })
            this.loading = false
            this.handleCancel()
            this.$emit('handle', {
              type: this.title === '添加团队成员' ? 'add_user' : 'delete_user'
            })
          })
          .catch(() => {
            this.loading = false
          })
      }
    }
  }
}
</script>
 
<style lang="less" scoped>
.tips {
  color: #777;
  font-size: 12px;
  position: absolute;
  bottom: -2px;
  right: 125px;
}
.handle-box {
  color: #333;
  font-size: 12px;
}
.handle-item {
  padding-bottom: 15px;
  position: relative;
  .handle-item-name {
    flex-shrink: 0;
    width: 90px;
  }
  .handle-item-content {
    flex: 1;
  }
}
.handle-bar {
  position: relative;
  margin-top: 10px;
  height: 30px;
  button {
    float: right;
    margin-right: 10px;
  }
}
</style>