From c6935cb2e9e6f4e59552d929fd7860d00f4c39ec Mon Sep 17 00:00:00 2001
From: ZZJ <zzjdsg2300@163.com>
Date: 星期一, 21 二月 2022 09:57:02 +0800
Subject: [PATCH] bug修复

---
 src/pages/vindicate/views/sysInfo.vue |   31 ++++++++++++++++++-------------
 1 files changed, 18 insertions(+), 13 deletions(-)

diff --git a/src/pages/vindicate/views/sysInfo.vue b/src/pages/vindicate/views/sysInfo.vue
index 25d1cea..b03f889 100644
--- a/src/pages/vindicate/views/sysInfo.vue
+++ b/src/pages/vindicate/views/sysInfo.vue
@@ -7,7 +7,7 @@
             <div class="title">Smart AIOS</div>
             <div class="desc">Copyright 漏 璐濇�濈鎶�鏈湁闄愬叕鍙�</div>
           </div>
-          <div class="bar" style="background-color: #F2F2F7;">
+          <div class="bar" style="background-color: #f2f2f7">
             <div class="name">鐗堟湰锛�</div>
             <div class="desc">
               {{
@@ -31,12 +31,12 @@
             </div>
           </div>
           <div class="bar">
-            <div class="name" style="min-width: 65px;">璇锋眰鐮侊細</div>
+            <div class="name" style="min-width: 65px">璇锋眰鐮侊細</div>
             <div class="desc code" style="font-size: 12px">{{ q }}</div>
           </div>
           <div class="bar">
             <div class="name">浜у搧瀵嗛挜锛�</div>
-            <div class="desc" >
+            <div class="desc">
               {{ authorization || "-" }}
             </div>
           </div>
@@ -155,10 +155,10 @@
         passwd: this.password,
         down: 1,
       }).then((res) => {
-        if (res.type=="application/json") {
+        if (res.type == "application/json") {
           var reader = new FileReader();
-          reader.readAsText(res,"utf-8");
-          let that = this
+          reader.readAsText(res, "utf-8");
+          let that = this;
           reader.onload = function () {
             var receive_data = JSON.parse(this.result); //杩欎釜灏辨槸瑙f瀽鍑烘潵鐨勬暟鎹�
             that.$notify.error(receive_data.msg);
@@ -183,15 +183,20 @@
 };
 </script>
 <style lang="scss">
-div{
+div {
   color: #333;
 }
 
 .v-sys-info {
   width: 100%;
-  background-color: #FBFAFF;
+  background-color: #fbfaff;
   border-top: 4px solid #f2f2f7;
   border-left: 4px solid #f2f2f7;
+
+  .el-dialog {
+    width: 625px;
+  }
+
   .el-dialog__header {
     padding: 15px 20px 10px;
     text-align: left;
@@ -307,7 +312,7 @@
           line-height: 33.6px;
         }
         .desc {
-          margin-top:10px ;
+          margin-top: 10px;
           font-size: 12px;
           line-height: 16.8px;
           font-weight: 700;
@@ -343,12 +348,12 @@
           word-wrap: break-word;
           text-align: left;
         }
-        .activation{
+        .activation {
           width: 90px;
           height: 28px;
-          background: rgba(78,148,255,0.1);
-          border: 1px solid #4E94FF;
-          border-radius:20px ;
+          background: rgba(78, 148, 255, 0.1);
+          border: 1px solid #4e94ff;
+          border-radius: 20px;
           text-align: center;
           line-height: 28px;
           color: #333;

--
Gitblit v1.8.0