1
0
mirror da https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-12 13:19:31 +08:00

新增:更新halo.config.js 配置参数;

更新:更新项目UI框架;
修复:修复友链列表丢失白色背景色BUG;
This commit is contained in:
小莫唐尼
2022-12-09 18:10:47 +08:00
parent 3fd3b2247a
commit 9d3ebac076
93 ha cambiato i file con 1120 aggiunte e 7495 eliminazioni
+12 -12
Vedi File
@@ -10,6 +10,7 @@
* 修改时间:
*/
import Blogger from '@/api/blogger.js'
import HaloConfig from '@/config/halo.config.js';
export default {
state: {
blogger: {},
@@ -25,18 +26,17 @@ export default {
},
},
actions: {
//通过actions提交更新数据
fnGetBlogger({
commit
}) {
Blogger.getBloggerInfo().then((res) => {
console.log('获取博主信息成功:');
console.log(res);
commit("setBlogger", res.data);
}).catch((err) => {
console.log('哈哈,获取博主信息失败啦!');
console.log(err);
});
fnGetBlogger(context) {
if (HaloConfig.author.use) {
context.commit("setBlogger", HaloConfig.author);
} else {
Blogger.getBloggerInfo().then((res) => {
context.commit("setBlogger", res.data);
}).catch((err) => {
// 如果失败,则加载默认配置信息
context.commit("setBlogger", HaloConfig.author);
});
}
},
},
};