Browse Source

备案指向

HZH 4 years ago
parent
commit
94a63d66b1
3 changed files with 8 additions and 2 deletions
  1. 1 1
      src/login/index/index.html
  2. 6 0
      src/login/index/index.scss
  3. 1 1
      src/main.js

+ 1 - 1
src/login/index/index.html

@@ -62,7 +62,7 @@
                 </div>
                 <!-- <p>Copyright ©爻象教育 版权所有2019</p> -->
             </div>
-            <p>@2019-2020 yaoxiangedu.com 粤ICP备19011669号</p>
+            <p>@2019-2020 yaoxiangedu.com <a href="http://beian.miit.gov.cn/" target="_blank">粤ICP备19011669号</a></p>
         </div>
     </div>
     <div class="second-page" v-if="pageIndex == 2">

+ 6 - 0
src/login/index/index.scss

@@ -221,6 +221,12 @@ input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
       bottom: 10px;
       left: calc(50% - 160px);
       color: white;
+      a{
+        color: white;
+        &:hover{
+          color: rgb(98, 100, 223);
+        }
+      }
     }
   }
 }

+ 1 - 1
src/main.js

@@ -18,7 +18,7 @@ Vue.prototype.$http = axios;
 //请求拦截
 axios.interceptors.request.use((config) => {
   //请求之前重新拼装url
-  config.url = '/rest/diagnosis' + config.url;
+  // config.url = '/rest/diagnosis' + config.url;
   return config;
 });