2020-12-01|2020-12-01 Salesforce Pop up window
在salesforce中我们经常需要用到Pop up window的功能, 现在把代码整理如下:
在HTML文件中的具体实现:
WarningYou are about to associate a lead to an existing company that already has a corporate administrator. Please speak to the corporate administrator.
Do you still wish to associate this lead to the company?
在JS里面的处理是:
handleCloseModal(){
this.isShowConfirmModal = false;
}
handleContinue(){
// do some logic here
}
【2020-12-01|2020-12-01 Salesforce Pop up window】之前有遇到一个问题就是 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|2020-12-01 投资现金流(CFI)
- 《读出托福好英文》----(6)Chinese|《读出托福好英文》----(6)Chinese Population Growth 中国人口增长
- iOS横向滚动的scrollView和系统pop手势返回冲突的解决办法
- PopupWindow|PopupWindow 点击按钮的泡泡
- element中popover弹框中有选择器,点击后popover消失的解决办法
- PopupWindow|PopupWindow 简单实用(居中显示)
- RK3399|[RK3399][Android7.1] 调试笔记 --- 解决开关按键时产生的Pop声
- Delphi动态创建MainMenu和PopupMenu菜单的方法
- 关于Jquery|关于Jquery WEUI Popup的笔记
- popwindow弹框