fix:优化搜索
parent
542c1aca1d
commit
58747d9797
|
@ -8,7 +8,7 @@
|
||||||
placeholder="请输入关键字"
|
placeholder="请输入关键字"
|
||||||
cancelButton="none"
|
cancelButton="none"
|
||||||
:focus="true"
|
:focus="true"
|
||||||
@confirm="onSearch"
|
@confirm="onSearch($event.value)"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
<view class="ss-flex ss-row-between ss-col-center">
|
<view class="ss-flex ss-row-between ss-col-center">
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
<view class="ss-flex ss-col-center ss-row-left ss-flex-wrap">
|
<view class="ss-flex ss-col-center ss-row-left ss-flex-wrap">
|
||||||
<button
|
<button
|
||||||
class="history-btn ss-reset-button"
|
class="history-btn ss-reset-button"
|
||||||
@tap="onSearchList(item)"
|
@tap="onSearch(item)"
|
||||||
v-for="(item, index) in state.historyTag"
|
v-for="(item, index) in state.historyTag"
|
||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
|
@ -30,34 +30,34 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, reactive } from 'vue';
|
import { reactive } from 'vue';
|
||||||
import sheep from '@/sheep';
|
import sheep from '@/sheep';
|
||||||
import { onLoad } from '@dcloudio/uni-app';
|
import { onLoad } from '@dcloudio/uni-app';
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
historyTag: [],
|
historyTag: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
function onSearch(res) {
|
// 搜索
|
||||||
if (res.value) {
|
function onSearch(keyword) {
|
||||||
if (!state.historyTag.includes(res.value)) {
|
if (!keyword) return;
|
||||||
let search = getArr(state.historyTag, res.value);
|
saveSearchHistory(keyword);
|
||||||
uni.setStorageSync('searchHistory', search);
|
sheep.$router.go('/pages/goods/list', { keyword });
|
||||||
sheep.$router.go('/pages/goods/list', { keyword: res.value });
|
}
|
||||||
} else {
|
|
||||||
sheep.$router.go('/pages/goods/list', { keyword: res.value });
|
// 保存搜索历史
|
||||||
}
|
function saveSearchHistory(keyword) {
|
||||||
|
// 如果关键词在搜索历史中,则把此关键词先移除
|
||||||
|
if (state.historyList.includes(keyword)) {
|
||||||
|
state.historyList.splice(state.historyList.indexOf(keyword), 1);
|
||||||
}
|
}
|
||||||
}
|
// 置顶关键词
|
||||||
|
state.historyList.unshift(keyword);
|
||||||
|
|
||||||
function onSearchList(item) {
|
// 最多保留10条记录
|
||||||
sheep.$router.go('/pages/goods/list', { keyword: item });
|
if (state.historyList.length >= 10) {
|
||||||
}
|
state.historyList.length = 10;
|
||||||
|
}
|
||||||
function getArr(list, item) {
|
uni.setStorageSync('searchHistory', state.historyList);
|
||||||
let arr = list;
|
|
||||||
let length = 10; //队列长度
|
|
||||||
arr.length < length ? arr.unshift(item) : arr.pop();
|
|
||||||
return arr;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onDelete() {
|
function onDelete() {
|
||||||
|
@ -73,12 +73,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
onLoad(() => {
|
onLoad(() => {
|
||||||
uni.getStorage({
|
state.historyList = uni.getStorageSync('searchHistory') || [];
|
||||||
key: 'searchHistory',
|
|
||||||
success: function (res) {
|
|
||||||
state.historyTag = res.data;
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue