19626
2023-04-11 d1420a631e07eb3837dee3bc0926f15036379279
force-app/main/default/lwc/lexVOCCheck/lexVOCCheck.js
@@ -40,7 +40,7 @@
        }).then(result => {
            console.log(result);
            if (result != null) {  
                this.Isloading = false;
                this.status = result.status;
                this.isVOC = result.isVOC;
                this.personId = result.personId;
@@ -79,13 +79,11 @@
                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;
@@ -103,6 +101,7 @@
                }else {
                    this.showToast(result,"error");
                }
                this.Isloading = false;
                this.dispatchEvent(new CloseActionScreenEvent());
            });