| | |
| | | * @Author: chen jing wu |
| | | * @Date: 2023-04-14 11:09:28 |
| | | * @LastEditors: chen jing wu |
| | | * @LastEditTime: 2023-04-14 11:21:24 |
| | | * @LastEditTime: 2023-05-12 13:17:30 |
| | | */ |
| | | import { api, wire,LightningElement } from 'lwc'; |
| | | import { CurrentPageReference } from "lightning/navigation"; |
| | |
| | | init({ |
| | | recordId: this.recordId |
| | | }).then(result=>{ |
| | | this.biddingProjectNameBidId = result.biddingProjectNameBidId; |
| | | this.estimationId = result.estimationId; |
| | | this.biddingProjectNameBidId = result.biddingProjectNameBidId == undefined ? '' : result.biddingProjectNameBidId; |
| | | this.estimationId = result.estimationId == undefined ? '' : result.estimationId; |
| | | this.quotationRequest(); |
| | | }) |
| | | } |