2020-12-01 Salesforce Pop up window

在salesforce中我们经常需要用到Pop up window的功能, 现在把代码整理如下:
在HTML文件中的具体实现:

          
        

在JS里面的处理是:

 handleCloseModal(){
        this.isShowConfirmModal = false;
    }
    handleContinue(){
   // do some logic here
    }

之前有遇到一个问题就是 Pop up的 window 的message是在Custom Setting里面设置的,所以返回值需要返回值需要分段显示:例如在Custom Setting里面的设置是:AAAAAA BBBBB
这个时候需要在前端处理一下,具体操作是:

    getAcknowledgedText(){
        let r = /\r\n|[\r\n]/;
        getReviewAndSubmitText({'recordId' : this.asseId}).then(res=>{
        if(res){
            let str = res.split(r)
            if(str.length > 0){
                for(let i = 0 ; i< str.length ; i++){
                // this.AcknowledgedText.push(str[i]);
                    if(i === 0){
                        this.AcknowledgedTextTitle = str[0];
                    }else{
                        this.AcknowledgedText.push(str[i]);
                    }
                }
            }
        }
        })
    }

你可能感兴趣的:(2020-12-01 Salesforce Pop up window)