seimin 1 year ago
parent
commit
d61f9eeb0b
1 changed files with 17 additions and 4 deletions
  1. 17 4
      src/views/AppIndex.vue

+ 17 - 4
src/views/AppIndex.vue

@@ -5,11 +5,10 @@
5
       <div class="specimen-header">
5
       <div class="specimen-header">
6
         <div class="specimen-logo">
6
         <div class="specimen-logo">
7
           <img
7
           <img
8
-            src="./../assets/images/login_logo.png"
8
+            :src="logoUrl"
9
             class="pharmacy-logo__img"
9
             class="pharmacy-logo__img"
10
-            alt=""
11
           />
10
           />
12
-          <h1 class="pharmacy-logo__name">大势医院输送保障管理平台</h1>
11
+          <h1 class="pharmacy-logo__name">{{ logoTitle }}</h1>
13
         </div>
12
         </div>
14
         <div class="specimen-menu">
13
         <div class="specimen-menu">
15
           <div
14
           <div
@@ -771,6 +770,8 @@ export default {
771
   },
770
   },
772
   data() {
771
   data() {
773
     return {
772
     return {
773
+      logoUrl: '',
774
+      logoTitle: '',
774
       loading1: false, //科室标本视图列表加载
775
       loading1: false, //科室标本视图列表加载
775
       loading2: false, //人员信息列表加载
776
       loading2: false, //人员信息列表加载
776
       loading3: false,
777
       loading3: false,
@@ -1476,8 +1477,17 @@ export default {
1476
       this.loading1 = true;
1477
       this.loading1 = true;
1477
       let loginUser = JSON.parse(localStorage.getItem("user"));
1478
       let loginUser = JSON.parse(localStorage.getItem("user"));
1478
       this.userData = loginUser ? loginUser.user : [];
1479
       this.userData = loginUser ? loginUser.user : [];
1480
+      
1479
       this.getWorkType();
1481
       this.getWorkType();
1482
+      this.getSysNameAndLogo();
1480
     },
1483
     },
1484
+    getSysNameAndLogo(){
1485
+      get("/auth/getSysNameAndLogo")
1486
+        .then((result) => {
1487
+          this.logoTitle = result.sysName || '';
1488
+          this.logoUrl = result.logo || '';
1489
+        })
1490
+    }
1481
   },
1491
   },
1482
   created() {
1492
   created() {
1483
     this.login();
1493
     this.login();
@@ -1806,15 +1816,18 @@ export default {
1806
       width: 221px;
1816
       width: 221px;
1807
       background-color: #0f2e3b;
1817
       background-color: #0f2e3b;
1808
       display: flex;
1818
       display: flex;
1819
+      flex-direction: column;
1809
       justify-content: center;
1820
       justify-content: center;
1810
       align-items: center;
1821
       align-items: center;
1811
       .pharmacy-logo__img {
1822
       .pharmacy-logo__img {
1812
-        width: 32px;
1823
+        max-width: 100%;
1824
+        max-height: 100%;
1813
       }
1825
       }
1814
       .pharmacy-logo__name {
1826
       .pharmacy-logo__name {
1815
         font-size: 14px;
1827
         font-size: 14px;
1816
         color: #fff;
1828
         color: #fff;
1817
         margin-bottom: 0;
1829
         margin-bottom: 0;
1830
+        margin-top: 8px;
1818
       }
1831
       }
1819
     }
1832
     }
1820
     .specimen-menu {
1833
     .specimen-menu {