zhangchunxu
2023-08-04 1bc3f32b126277b5349564485665b462bb760354
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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");
        }
    }
}