|
|
@@ -280,6 +280,18 @@ export default {
|
|
|
this.taskGather = response.data.customerClue.customerClueItemList;
|
|
|
}
|
|
|
this.getCustomerClassify();
|
|
|
+ // 当前客资归属人不是当前登录人
|
|
|
+ if (this.infoData.sendUserId != localStorage.getItem('userId')) {
|
|
|
+ this.$dialog
|
|
|
+ .confirm({
|
|
|
+ title: '提示',
|
|
|
+ message: '该客诉已经被转移给其他人',
|
|
|
+ showCancelButton: false,
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ window.location.replace(window.location.origin + '/mobile/clew');
|
|
|
+ });
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$toast(res.msg);
|
|
|
}
|