修复搜索记录bug
This commit is contained in:
parent
df09bb44b4
commit
5eff3f8c90
@ -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({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user