fix search bug

This commit is contained in:
RainSun 2020-03-24 07:27:59 +08:00
parent f195c4d280
commit c305f052d5
2 changed files with 22 additions and 2 deletions

View File

@ -294,6 +294,14 @@ export function lang() {
CHS:{
title: '更新日志',
timeline: [
{
label: '修复搜索后关闭搜索框密码本内容消失',
tag:'bug修复',
content: [
'进行搜索后关闭搜索框由于执行顺序问题,空缓存覆盖掉了要显示的信息导致密码本“视觉上”的消失,已修复',
'2020-03-24'
]
},
{
label: '切换页面之后保存主页状态',
tag:'bug修复',
@ -411,6 +419,14 @@ export function lang() {
EN:{
title: 'Update Log',
timeline: [
{
label: 'Fixed search box password content disappeared after searching',
tag:'Bug fix',
content: [
'Close the search box after searching. Due to the execution order problem, the empty cache has overwritten the information to be displayed, causing the codebook to "visually" disappear. It has been fixed.',
'2020-03-24'
]
},
{
label: 'Save homepage status after switching pages',
tag:'Bug fix',

View File

@ -368,6 +368,7 @@ export default {
}
}
this.show_list = data_list;
console.log('模糊搜索完成')
},
//
@ -462,15 +463,18 @@ export default {
this.cache_list = JSON.parse(JSON.stringify(this.show_list));
console.log('搜索阵列展开,缓存设置完成');
} else {
this.search_content = ''
this.show_list = JSON.parse(JSON.stringify(this.cache_list));
this.cache_list = [];
this.search_content = ''
console.log('搜索阵列关闭,缓存清空完成');
}
},
// `search_content`
search_content: function() {
this.fuzzySearch(this.cache_list);
//
if(this.search_start) {
this.fuzzySearch(this.cache_list);
}
}
},
beforeDestroy() {},