Browse Source

Merge branch 'ETA_needs_23'

hbchen 1 year ago
parent
commit
9c8c2e921e
1 changed files with 6 additions and 5 deletions
  1. 6 5
      src/views/Login.vue

+ 6 - 5
src/views/Login.vue

@@ -211,7 +211,8 @@ getRecordInfo();//获取备案信息
 
         <!-- <div class="mobile-bot-text">Long time&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;More profit</div> -->
         <div class="record-info">
-            <span v-for="(item,index) in recordInformation" :key="index">{{ item }}</span>
+            <a v-for="(item,index) in recordInformation" :key="index" target="_blank"
+            href="https://beian.miit.gov.cn/#/Integrated/index">{{ item }}</a>
         </div>
     </div>
 </template>
@@ -270,11 +271,11 @@ getRecordInfo();//获取备案信息
     flex-wrap: wrap;
     justify-content: center;
     margin: 16PX 0;
-    font-size: 13PX;
-    color: #C0C4CC;
-    text-align: center;
     width: 100%;
-    span{
+    a{
+        font-size: 13PX;
+        color: #C0C4CC;
+        text-align: center;
         margin: 0 6PX;
     }
 }