import { LightningElement,api, track, wire } from 'lwc'; import {CurrentPageReference} from 'lightning/navigation'; import { CloseActionScreenEvent } from 'lightning/actions'; import { ShowToastEvent } from 'lightning/platformShowToastEvent'; import { NavigationMixin } from 'lightning/navigation'; // 2023/05/11 借出备品配套一览 分单按钮 export default class lexSplitApplyFlowLWC extends NavigationMixin(LightningElement) { @api recordId; //只获取当前list选中的一览Id @api rentalApplyIds; IsLoading=true; //提示信息 msg; connectedCallback(){ console.log(this.recordId); console.log(JSON.stringify(this.rentalApplyIds)); if (this.recordId && JSON.stringify(this.rentalApplyIds)) { window.open("/apex/RentalApplySplit?objId="+this.recordId+"&raesIds="+this.rentalApplyIds, 'RentalApplySplit', 'width=600,height=200'); this.closeAction(); }else{ this.msg = '请选择借出备品一览记录'; this.IsLoading = false; } } closeAction() { //返回当前的备品申请 window.open("/"+this.recordId,'_self'); } }