| | |
| | | /* |
| | | * @Description: |
| | | * @version: |
| | | * @Author: chen jing wu |
| | | * @Date: 2023-05-16 16:45:16 |
| | | * @LastEditors: chen jing wu |
| | | * @LastEditTime: 2023-05-18 09:45:28 |
| | | */ |
| | | import { LightningElement,api, track, wire } from 'lwc'; |
| | | import {CurrentPageReference} from 'lightning/navigation'; |
| | | import { CloseActionScreenEvent } from 'lightning/actions'; |
| | |
| | | } |
| | | closeAction() { |
| | | //返回当前的备品申请 |
| | | this[NavigationMixin.Navigate]({ |
| | | type: 'standard__recordPage', |
| | | attributes: { |
| | | recordId: this.recordId, |
| | | actionName: 'view' |
| | | } |
| | | }); |
| | | window.open("/"+this.recordId,'_self'); |
| | | } |
| | | } |