fix:优化搜索

pull/8/head
kele 2023-03-13 18:34:27 +08:00
parent 542c1aca1d
commit 58747d9797
1 changed files with 23 additions and 28 deletions

View File

@ -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>