7352b928da
Co-authored-by: fayazara <fayazara@gmail.com>
22 lines
471 B
JavaScript
22 lines
471 B
JavaScript
export default {
|
|
methods: {
|
|
getDropdownValues(type) {
|
|
switch (type) {
|
|
case 'assign_team':
|
|
case 'send_email_to_team':
|
|
return this.teams;
|
|
case 'assign_best_agent':
|
|
return this.agents;
|
|
case 'add_label':
|
|
return this.labels.map(i => {
|
|
return {
|
|
id: i.title,
|
|
name: i.title,
|
|
};
|
|
});
|
|
default:
|
|
return [];
|
|
}
|
|
},
|
|
},
|
|
};
|