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/12 借出备品配套一览 选择配套按钮 export default class lexRentalFixtureSetSelect extends NavigationMixin(LightningElement) { @api recordId; IsLoading=true; connectedCallback(){ if (this.recordId) { window.open("/apex/RentalFixtureSetSelect?pt_recid="+this.recordId, "_top"); } } }