| | |
| | | }).then(result => { |
| | | console.log(result); |
| | | if (result != null) { |
| | | this.Isloading = false; |
| | | |
| | | this.status = result.status; |
| | | this.isVOC = result.isVOC; |
| | | this.personId = result.personId; |
| | |
| | | return; |
| | | } |
| | | if (this.status != "跟进中") { |
| | | alert("不是跟进中不能点击"); |
| | | this.showToast("不是跟进中不能点击","error"); |
| | | this.dispatchEvent(new CloseActionScreenEvent()); |
| | | return; |
| | | } |
| | | if (this.isVOC == undefined) { |
| | | alert("必须选择是否VOC"); |
| | | this.showToast("必须选择是否VOC","error"); |
| | | this.dispatchEvent(new CloseActionScreenEvent()); |
| | | return; |
| | |
| | | }else { |
| | | this.showToast(result,"error"); |
| | | } |
| | | this.Isloading = false; |
| | | this.dispatchEvent(new CloseActionScreenEvent()); |
| | | }); |
| | | |