@@ -1 +1 @@
-{"id":"b024766d-37e6-4b10-ab12-92ef83c594d0","timestamp":1749796568598}
+{"id":"0f3aa319-1455-4ca6-ad7c-8293a265e148","timestamp":1750142208851}
@@ -0,0 +1 @@
+{"id":"0f3aa319-1455-4ca6-ad7c-8293a265e148","timestamp":1750142208851,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
@@ -1 +0,0 @@
-{"id":"b024766d-37e6-4b10-ab12-92ef83c594d0","timestamp":1749796568598,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
@@ -102,7 +102,7 @@
"./imports"
],
"#app-manifest": [
- "./manifest/meta/b024766d-37e6-4b10-ab12-92ef83c594d0.json"
+ "./manifest/meta/0f3aa319-1455-4ca6-ad7c-8293a265e148.json"
"#components": [
"./components"
@@ -240,8 +240,12 @@ let getLogo = async () => {
method: 'GET',
query: {},
});
- logo.value = responseStatus.data.logo;
- webSiteName.value = responseStatus.data.website_name;
+ if (responseStatus.code == 200) {
+ logo.value = responseStatus.data.logo;
+ webSiteName.value = responseStatus.data.website_name;
+ } else if (responseStatus.code == 0) {
+ window.location.href = $CwebUrl + '/404';
+ }
}
getLogo();
//3.跳转菜单逻辑 end ---------------------------------------->