@@ -1 +1 @@
-{"id":"52398806-1b5c-4db2-a8ea-38612f30bac2","timestamp":1749792346290}
+{"id":"9a343ac5-02ed-464f-b401-843410b7f553","timestamp":1750141208459}
@@ -1 +0,0 @@
-{"id":"52398806-1b5c-4db2-a8ea-38612f30bac2","timestamp":1749792346290,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
@@ -0,0 +1 @@
+{"id":"9a343ac5-02ed-464f-b401-843410b7f553","timestamp":1750141208459,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
@@ -102,7 +102,7 @@
"./imports"
],
"#app-manifest": [
- "./manifest/meta/52398806-1b5c-4db2-a8ea-38612f30bac2.json"
+ "./manifest/meta/9a343ac5-02ed-464f-b401-843410b7f553.json"
"#components": [
"./components"
@@ -244,8 +244,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 ---------------------------------------->