fix search bug
This commit is contained in:
parent
f195c4d280
commit
c305f052d5
@ -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',
|
||||
|
@ -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() {},
|
||||
|
Loading…
x
Reference in New Issue
Block a user