|
@@ -23,10 +23,37 @@ export const router = createRouter({
|
|
|
|
|
|
|
|
|
router.beforeEach(async (to, from, next) => {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ let title = '默认标题';
|
|
|
+
|
|
|
+ if (window.location.hostname.includes('sohoeb2b')) {
|
|
|
+ title = '苏豪通';
|
|
|
+ } else {
|
|
|
+ title = 'AdWeb V3';
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (to.meta && to.meta.title) {
|
|
|
+ title = to.meta.title;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ document.title = title;
|
|
|
+
|
|
|
+
|
|
|
+ const setMetaTag = (property, content) => {
|
|
|
+ let meta = document.querySelector(`meta[property="${property}"]`);
|
|
|
+ if (!meta) {
|
|
|
+ meta = document.createElement('meta');
|
|
|
+ meta.setAttribute('property', property);
|
|
|
+ document.head.appendChild(meta);
|
|
|
+ }
|
|
|
+ meta.setAttribute('content', content);
|
|
|
+ };
|
|
|
+
|
|
|
+ setMetaTag('og:title', title);
|
|
|
+ setMetaTag('og:description', `${title}是一个强大的企业管理平台`);
|
|
|
+ setMetaTag('og:image', 'https://v3.sohoeb2b.com/logo.png');
|
|
|
+ setMetaTag('og:url', window.location.href);
|
|
|
next();
|
|
|
});
|
|
|
|