button-lexMainFixtureSelect
借出一览主体备品选择
| | |
| | | import { LightningElement, track, wire, api } from 'lwc'; |
| | | import { CurrentPageReference,NavigationMixin } from 'lightning/navigation'; |
| | | |
| | | import init from '@salesforce/apex/MainFixtureSelectButtonController.init'; |
| | | export default class lexMainFixtureSelect extends LightningElement { |
| | | @api recordId; |
| | | IsLoading = true; |
| | |
| | | |
| | | |
| | | connectedCallback(){ |
| | | this.IsLoading = false; |
| | | window.open("/apex/MainFixtureSelect?pt_recid=" + this.recordId, "_top"); |
| | | this.closeAction(); |
| | | } |
| | | |
| | | closeAction() { |