lex-xin %!s(int64=3) %!d(string=hai) anos
pai
achega
abd7f28e2b
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      src/views/app/UserProtocol.vue

+ 3 - 3
src/views/app/UserProtocol.vue

@@ -2,7 +2,7 @@
     <div class="userProtocol">
         <m-header v-if="headerStatus" />
          <div class="container">
-            <h1>管乐迷线上教室用户服务协议</h1>
+            <h1 v-if="headerStatus">管乐迷线上教室用户服务协议</h1>
             特别提示:<br />
             欢迎您使用管乐迷。<br />
             <div style="text-decoration: underline;">
@@ -98,7 +98,7 @@ export default {
     components: { MHeader },
     data() {
         return {
-            headerStatus: true,
+            headerStatus: false,
         }
     },
     mounted() {
@@ -106,7 +106,7 @@ export default {
         if(!browser().android && !browser().iPhone) {
             this.headerStatus = true
         } else {
-            document.title = '管乐迷线上教室用户服务协议'
+            document.title = '用户协议'
         }
 
     },