This commit is contained in:
parent
c4c2f3cc09
commit
3da5721c09
|
@ -1,21 +1,19 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="search" id="search">
|
<div class="search" id="search">
|
||||||
<nut-input v-model="valueInput" @input="searchInput" placeholder="请进行搜索"></nut-input>
|
<a-input v-model="valueInput" @input="searchInput" placeholder="请进行搜索"></a-input>
|
||||||
<view v-if="valueInput">
|
<div v-if="valueInput">
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="item in searchResults" :key="item.id">{{item}}</li>
|
<li v-for="item in searchResults" :key="item.id">{{item}}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</view>
|
</div>
|
||||||
<view v-else >
|
<div v-else >
|
||||||
没有找到相关结果
|
没有找到相关结果
|
||||||
</view>
|
</div>
|
||||||
</view>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import './index.scss'
|
import {onMounted, ref,} from "vue";
|
||||||
import { ref} from "vue";
|
|
||||||
const valueInput = ref('')
|
const valueInput = ref('')
|
||||||
// '齐家园','刘德华','张学友','黎明','家具城','左岸春天','麦德龙商城','世纪酒店','四方小学','海洋半岛'
|
|
||||||
const list = ref([])
|
const list = ref([])
|
||||||
const dataList = ref([
|
const dataList = ref([
|
||||||
{
|
{
|
||||||
|
@ -66,7 +64,7 @@ const dataList = ref([
|
||||||
value:'明德小学'
|
value:'明德小学'
|
||||||
},{
|
},{
|
||||||
id:12,
|
id:12,
|
||||||
value:'希望小学'
|
value:'希望小学',
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
const searchResults = ref([])
|
const searchResults = ref([])
|
||||||
|
@ -74,21 +72,37 @@ const searchInput = (e:any)=>{
|
||||||
valueInput.value = e.target.value
|
valueInput.value = e.target.value
|
||||||
if (!valueInput.value) {
|
if (!valueInput.value) {
|
||||||
searchResults.value = []
|
searchResults.value = []
|
||||||
return [];
|
return;
|
||||||
}else{
|
}else{
|
||||||
dataList.value.map((item)=>{
|
|
||||||
return list.value.push(item.value)
|
|
||||||
})
|
|
||||||
searchResults.value = list.value.filter(item =>
|
searchResults.value = list.value.filter(item =>
|
||||||
item.toLowerCase().includes(valueInput.value.toLowerCase())
|
item.toLowerCase().includes(valueInput.value.toLowerCase())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// console.log(searchResults.value)
|
|
||||||
}
|
}
|
||||||
|
onMounted(()=>{
|
||||||
|
dataList.value.map((item)=>{
|
||||||
|
return list.value.push(item.value)
|
||||||
|
})
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
.search{
|
||||||
|
padding: 0 10px;
|
||||||
|
overflow: hidden;
|
||||||
|
border: 1px solid #4e71f2;
|
||||||
|
margin: 1px 5px;
|
||||||
|
border-radius: 10px;
|
||||||
|
width: 30%;
|
||||||
|
.ceShi{
|
||||||
|
height: 300px;
|
||||||
|
background: #ccc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nut-input{
|
||||||
|
padding: 20rpx 20rpx;
|
||||||
|
margin: 5px 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,7 +1,114 @@
|
||||||
<template>
|
<template>
|
||||||
<div style="margin: 100px auto;width: 500px">
|
<div class="search" id="search">
|
||||||
|
<a-input v-model="valueInput" @input="searchInput" placeholder="请进行搜索"></a-input>
|
||||||
|
<div v-if="valueInput">
|
||||||
|
<ul>
|
||||||
|
<li v-for="item in searchResults" :key="item.id">{{item}}</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-else >
|
||||||
|
没有找到相关结果
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
|
import {onMounted, ref,} from "vue";
|
||||||
|
const valueInput = ref('')
|
||||||
|
const list = ref([])
|
||||||
|
const dataList = ref([
|
||||||
|
{
|
||||||
|
id:0,
|
||||||
|
value:'齐家园'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:1,
|
||||||
|
value:'刘德华'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:2,
|
||||||
|
value:'张学友'
|
||||||
|
},{
|
||||||
|
id:3,
|
||||||
|
value:'黎明'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:4,
|
||||||
|
value:'家具城'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:5,
|
||||||
|
value:'左岸春天'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:6,
|
||||||
|
value:'麦德龙商城'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:7,
|
||||||
|
value:'世纪酒店'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:8,
|
||||||
|
value:'四方小学'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:9,
|
||||||
|
value:'海洋半岛'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:10,
|
||||||
|
value:'育英小学'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id:11,
|
||||||
|
value:'明德小学'
|
||||||
|
},{
|
||||||
|
id:12,
|
||||||
|
value:'希望小学',
|
||||||
|
}
|
||||||
|
])
|
||||||
|
const searchResults = ref([])
|
||||||
|
const searchInput = (e:any)=>{
|
||||||
|
valueInput.value = e.target.value
|
||||||
|
if (!valueInput.value) {
|
||||||
|
searchResults.value = []
|
||||||
|
return;
|
||||||
|
}else{
|
||||||
|
searchResults.value = list.value.filter(item =>
|
||||||
|
item.toLowerCase().includes(valueInput.value.toLowerCase())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// watch(()=>valueInput.value,(value)=>{
|
||||||
|
// if(!value){
|
||||||
|
// searchResults.value = []
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
|
||||||
|
onMounted(()=>{
|
||||||
|
dataList.value.map((item)=>{
|
||||||
|
return list.value.push(item.value)
|
||||||
|
})
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.search{
|
||||||
|
padding: 0 10px;
|
||||||
|
overflow: hidden;
|
||||||
|
border: 1px solid #4e71f2;
|
||||||
|
margin: 1px 5px;
|
||||||
|
border-radius: 10px;
|
||||||
|
width: 30%;
|
||||||
|
.ceShi{
|
||||||
|
height: 300px;
|
||||||
|
background: #ccc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.nut-input{
|
||||||
|
padding: 20rpx 20rpx;
|
||||||
|
margin: 5px 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue