提交 46a97e13 编写于 作者: zhujiamin's avatar zhujiamin

debug搜索历史组件 第一次搜索不显示

上级 dd985252
......@@ -72,6 +72,17 @@ export default class AppRoundList extends Vue{
*/
public historyList:Array<any> = [];
/**
* 监听搜索历史数组
*
* @type {Array}
* @memberof AppSearchHistory
*/
@Watch('historyList')
onHistoryListChange(){
this.hasHistory = true;
}
/**
* 每一类搜索历史
*
......@@ -119,6 +130,9 @@ export default class AppRoundList extends Vue{
* @memberof AppSearchHistory
*/
public afterMounted(){
setTimeout(() => {
this.hasHistory = false;
}, 1);
let storage:any = localStorage.getItem('historyStorage');
if (storage) {
// 后续拿
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册