1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-11 12:49:30 +08:00

feat: 新增首页轮播支持配置

This commit is contained in:
小莫唐尼
2025-06-15 18:38:52 +08:00
parent 8963ba1921
commit 2fd83a7814
17 changed files with 325 additions and 101 deletions
+4 -2
View File
@@ -14,8 +14,10 @@ export default {
},
onLoad(e) {
const {title, url} = JSON.parse(e.query.data);
this.webUrl = url;
this.fnSetPageTitle(title);
this.webUrl = decodeURIComponent(url);
if (title) {
this.fnSetPageTitle(title);
}
}
};
</script>