瀏覽代碼

fix: page meta

Sendya 6 年之前
父節點
當前提交
2545a22ba0
共有 2 個文件被更改,包括 13 次插入10 次删除
  1. 1 1
      src/components/GlobalFooter/GlobalFooter.vue
  2. 12 9
      src/layouts/PageView.vue

+ 1 - 1
src/components/GlobalFooter/GlobalFooter.vue

@@ -2,7 +2,7 @@
   <div class="footer">
     <div class="links">
       <a
-        href="https://pro.ant.design/"
+        href="https://pro.loacg.com/"
         target="_blank"
       >Pro 首页</a>
       <a

+ 12 - 9
src/layouts/PageView.vue

@@ -81,24 +81,27 @@ export default {
     }
   },
   mounted () {
-    this.getPageHeaderInfo()
+    this.getPageMeta()
   },
   updated () {
-    this.getPageHeaderInfo()
+    this.getPageMeta()
   },
   methods: {
-    getPageHeaderInfo () {
+    getPageMeta () {
       // eslint-disable-next-line
       this.pageTitle = (typeof(this.title) === 'string' || !this.title) ? this.title : this.$route.meta.title
 
-      // 因为套用了一层 route-view 所以要取 ref 对象下的子节点的第一个对象
       const content = this.$refs.content
       if (content) {
-        this.description = content.description
-        this.linkList = content.linkList
-        this.extraImage = content.extraImage
-        this.search = content.search === true
-        this.tabs = content.tabs
+        if (content.pageMeta) {
+          Object.assign(this, content.pageMeta)
+        } else {
+          this.description = content.description
+          this.linkList = content.linkList
+          this.extraImage = content.extraImage
+          this.search = content.search === true
+          this.tabs = content.tabs
+        }
       }
     }
   }