| | |
| | | * @Author: chen jing wu |
| | | * @Date: 2023-05-25 13:59:44 |
| | | * @LastEditors: chen jing wu |
| | | * @LastEditTime: 2023-08-01 15:34:21 |
| | | * @LastEditTime: 2023-08-16 13:59:32 |
| | | */ |
| | | import { LightningElement, track, api } from 'lwc'; |
| | | import getRecordsByName from '@salesforce/apex/lexLookupController.getRecordsByName' |
| | |
| | | this.recordselected = false; |
| | | this.selectedValue = ""; |
| | | this.recordsList = undefined; |
| | | const customEvent = new CustomEvent('buttonclick', { |
| | | bubbles: true, // 使事件冒泡 |
| | | composed: true // 使事件可以跨shadow boundary传播 |
| | | }); |
| | | this.dispatchEvent(customEvent); |
| | | } |
| | | |
| | | //Method to pass selected record to parent component. |