优化移动端登录样式按钮样式问题

This commit is contained in:
lemon橪
2021-08-04 18:14:31 +08:00
parent 123127d977
commit 4ca71d0987
2 changed files with 27 additions and 6 deletions

View File

@@ -597,7 +597,7 @@ export default {
/**
* 加载热门搜索
* 1.30分钟之后更新缓存
* 1.5分钟之后更新缓存
* 2.如果有缓存热门关键字则去请求缓存
*/
async loadHotKeyword() {
@@ -615,7 +615,7 @@ export default {
});
let hotData = {
time: new Date().getTime() / 1000 + 30 * 60,
time: new Date().getTime() / 1000 + 30 * 5,
keywords: keywords,
};
storage.setHotWords(hotData);