zhujindu vor 1 Jahr
Ursprung
Commit
43b675d224
1 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen
  1. 12 0
      src/views/clew/complaintDetail/index.vue

+ 12 - 0
src/views/clew/complaintDetail/index.vue

@@ -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);
         }