import { createNamespace } from '../utils'; import { isAndroid } from '../utils/validate/system'; import Cell from '../cell'; import Field from '../field'; const [createComponent, bem, t] = createNamespace('address-edit-detail'); const android = isAndroid(); export default createComponent({ props: { value: String, error: Boolean, focused: Boolean, detailRows: Number, searchResult: Array, showSearchResult: Boolean }, methods: { onSelect(express) { this.$emit('select-search', express); this.$emit( 'input', `${express.address || ''} ${express.name || ''}`.trim() ); }, onFinish() { this.$refs.field.blur(); }, renderFinish() { const show = this.value && this.focused && android; if (show) { return (
{t('complete')}
); } }, renderSearchResult() { const { searchResult } = this; const show = this.focused && searchResult && this.showSearchResult; if (show) { return searchResult.map(express => ( { this.onSelect(express); }} /> )); } } }, render(h) { return ( {this.renderSearchResult()} ); } });