修复搜索记录bug

This commit is contained in:
weipengfei 2024-04-19 13:57:55 +08:00
parent df09bb44b4
commit 5eff3f8c90

View File

@ -294,10 +294,13 @@
}, },
searchBut: function() { searchBut: function() {
if(this.searchValue!='') { if(this.searchValue!='') {
this.historyList.unshift({ let t = this.historyList.findIndex(item=>item.word==this.searchValue);
let list = [...this.historyList];
if(t!=-1) list.splice(t, 1);
list.unshift({
word: this.searchValue word: this.searchValue
}); });
uni.setStorageSync('historyList', this.historyList); uni.setStorageSync('historyList', list);
} }
if (this.back) { if (this.back) {
return uni.navigateBack({ return uni.navigateBack({