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';
|
|
// 耗材备品配套一览 自定义按钮或链接:选择明细
|
export default class LexConsumFixtureSetSelect extends LightningElement {
|
|
@api recordId;
|
IsLoading=true;
|
|
connectedCallback(){
|
if (this.recordId) {
|
window.open("/apex/ConsumFixtureSetSelect?pt_recid="+this.recordId, "_top");
|
}
|
}
|
}
|