From 5eff3f8c900c5f3e338b71310bb19ce58ce87cad Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Fri, 19 Apr 2024 13:57:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=90=9C=E7=B4=A2=E8=AE=B0?= =?UTF-8?q?=E5=BD=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/columnGoods/goods_search/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pages/columnGoods/goods_search/index.vue b/pages/columnGoods/goods_search/index.vue index 6478b9e..636cad2 100644 --- a/pages/columnGoods/goods_search/index.vue +++ b/pages/columnGoods/goods_search/index.vue @@ -294,10 +294,13 @@ }, searchBut: function() { 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 }); - uni.setStorageSync('historyList', this.historyList); + uni.setStorageSync('historyList', list); } if (this.back) { return uni.navigateBack({