| | |
| | | * @Author: chen jing wu |
| | | * @Date: 2023-04-27 11:38:36 |
| | | * @LastEditors: chen jing wu |
| | | * @LastEditTime: 2023-05-04 11:41:06 |
| | | * @LastEditTime: 2023-05-08 10:25:31 |
| | | */ |
| | | import { LightningElement, api } from 'lwc'; |
| | | |
| | | export default class LexInputLookupCell extends LightningElement { |
| | | @api record; |
| | | @api fieldName; |
| | |
| | | @api type; |
| | | @api fieldType; |
| | | @api disable; |
| | | @api required; |
| | | value; |
| | | label; |
| | | connectedCallback() { |
| | | this.value = this.record[this.fieldName]; |
| | | this.label = this.fieldName; |
| | | } |
| | | get isRequired(){ |
| | | return this.required; |
| | | } |
| | | |
| | | handleInputChange(event) { |
| | |
| | | return false; |
| | | } |
| | | } |
| | | getSearchResult(){ |
| | | |
| | | } |
| | | |
| | | @api |
| | | inputValue() { |