| | |
| | | <up-icon customPrefix="xyicon" name="dingwei" size="24" color="#000"></up-icon> |
| | | </view> |
| | | |
| | | <drag-ele> |
| | | <drag-ele :isSelectInput="isSelectInput" :searchVal="searchVal"> |
| | | <template #searchBox> |
| | | <u-input placeholder="搜索" border="surround" v-model="value" @change="change" color="#fff"> |
| | | <u-input placeholder="搜索" border="surround" v-model="searchVal" @change="change" color="#fff" |
| | | @focus="isSelectInput = true" |
| | | @blur="isSelectInput = false"> |
| | | <template #prefix> |
| | | <view class="search-left-box"> |
| | | <u-icon color="#fff" name="arrow-left"></u-icon> |
| | |
| | | |
| | | const addressTooltip = ref(null) |
| | | const show = ref(false) |
| | | const isSelectInput = ref(false) |
| | | |
| | | const value = ref('') |
| | | const searchVal = ref('') |
| | | |
| | | const change = () => { |
| | | |