Browse Source

修复bug

shaogen1995 3 years ago
parent
commit
c9d8078b9b

+ 5 - 1
webM/src/views/About/Director.vue

@@ -36,7 +36,11 @@ export default {
   //生命周期 - 创建完成(可以访问当前this实例)
   created() {},
   //生命周期 - 挂载完成(可以访问DOM元素)
-  mounted() {},
+  mounted() {
+    setTimeout(() => {
+      window.document.title = 'From the Director';
+    }, 100);
+  },
   beforeCreate() {}, //生命周期 - 创建之前
   beforeMount() {}, //生命周期 - 挂载之前
   beforeUpdate() {}, //生命周期 - 更新之前

+ 5 - 1
webM/src/views/About/Link.vue

@@ -215,7 +215,11 @@ export default {
   //生命周期 - 创建完成(可以访问当前this实例)
   created() {},
   //生命周期 - 挂载完成(可以访问DOM元素)
-  mounted() {},
+  mounted() {
+    setTimeout(() => {
+      window.document.title = "Partners & Connections";
+    }, 100);
+  },
   beforeCreate() {}, //生命周期 - 创建之前
   beforeMount() {}, //生命周期 - 挂载之前
   beforeUpdate() {}, //生命周期 - 更新之前

+ 1 - 1
webM/src/views/bottom/Employment.vue

@@ -161,7 +161,7 @@ export default {
         font-size: 22px;
         font-weight: 700;
         padding-left: 30px;
-        background: url("../../assets/img/Layout/chosen.png") left center
+        background: url("../../assets/img/Layout/chosen.png") left 3px
           no-repeat;
         background-size: 22px 18px;
         margin-bottom: 5px;