buli
2023-05-24 845fcb95a8c04595424c315eef611e0980a5949b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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");
        }
    }
}