import { ref } from 'vue'; // Utils import { createNamespace } from '../utils'; import { isAndroid } from '../utils/validate/system'; // Components import Cell from '../cell'; import Field from '../field'; const [createComponent, bem, t] = createNamespace('address-edit-detail'); const android = isAndroid(); export default createComponent({ props: { show: Boolean, value: String, errorMessage: String, focused: Boolean, detailRows: [Number, String], searchResult: Array, detailMaxlength: [Number, String], showSearchResult: Boolean, }, emits: ['blur', 'focus', 'input', 'select-search'], setup(props, { emit }) { const field = ref(); const showSearchResult = () => props.focused && props.searchResult && props.showSearchResult; const onSelect = (express) => { emit('select-search', express); emit('input', `${express.address || ''} ${express.name || ''}`.trim()); }; const onFinish = () => { field.value.blur(); }; const renderFinish = () => { if (props.value && props.focused && android) { return (