import { LightningElement,wire,track,api} from 'lwc'; import { CurrentPageReference } from "lightning/navigation"; import { CloseActionScreenEvent } from 'lightning/actions'; import { ShowToastEvent } from 'lightning/platformShowToastEvent'; import init from '@salesforce/apex/HosipitalToDeptController.init'; import updataAccount from '@salesforce/apex/HosipitalToDeptController.updataAccount'; import executeWebSide from '@salesforce/apex/HosipitalToDeptController.submitApproval'; export default class LexHosipitalToDept extends LightningElement { @api recordId; IsLoading=true; @wire(CurrentPageReference) getStateParameters(currentPageReference){ console.log("进入页面"); console.log(currentPageReference); if(currentPageReference){ const urvalue=currentPageReference.state.recordId; if(urvalue){ let str=`${urvalue}`; console.log('str'); console.log(str); this.recordId=str; } } } connectedCallback(){ init({recordId:this.recordId}).then(res => { console.log(res,'<========res') if(res.giMain == ''){ this.showToast('请填写GI主担当','error'); }else if(res.bfowner == ''){ this.showToast('请填写BF主担当','error'); }else if(res.etowner == ''){ this.showToast('请填写ET主担当','error'); }else if(res.spmain == ''){ this.showToast('请填写GS主担当','error'); }else if(res.uroownerID == ''){ this.showToast('请填写URO主担当','error'); }else if(res.gynowner == ''){ this.showToast('请填写GYN主担当','error'); }else if(res.entownerID == ''){ this.showToast('请填写ENT主担当','error'); }else if (confirm(res.soakupHPDeptTeam)) { updataAccount({recordId:this.recordId,HosipitalToDept:true}).catch(err => { this.showToast(err.body.message,'error'); }) executeWebSide({Hospitalid: this.recordId}).then(resp => { if (resp != 'OK') { this.showToast(resp,'error'); } else { updataAccount({recordId:this.recordId,HosipitalToDept:false}).catch(err => { this.showToast(err.body.message,'error'); }) this.showToast('反映完成','success'); } }).catch(err => { console.log(err,'<======err') if (err.faultcode == 'sf:INSUFFICIENT_ACCESS') { this.showToast('没有执行权限','error'); } else { this.showToast(err,'success'); } }) } }) } showToast(msg, type) { const event = new ShowToastEvent({ message: msg, variant: type }); this.dispatchEvent(event); this.dispatchEvent(new CloseActionScreenEvent()); } }