Browse Source

添加医院名称和机构代码

lighter 3 năm trước cách đây
mục cha
commit
b3405c3574
1 tập tin đã thay đổi với 23 bổ sung5 xóa
  1. 23 5
      src/views/system/login.vue

+ 23 - 5
src/views/system/login.vue

@@ -27,17 +27,18 @@
         </el-input>
         <el-button size="medium" style="width: 100%" type="primary" @click="submit">登录</el-button>
       </el-form>
+      <div class="hospital-name">长沙泰和医院<i>·</i><span>H43010500370</span></div>
     </div>
   </div>
 </template>
 
 <script>
 import { systemTitle } from '@/config'
-import { onActivated, onMounted, reactive, ref } from 'vue'
+import { onActivated, reactive, ref } from 'vue'
 import { useStore } from 'vuex'
 import { useRoute, useRouter } from 'vue-router'
 import { addRoutes } from '@/router'
-import { ElMessage, ElMessageBox } from 'element-plus'
+import { ElMessage } from 'element-plus'
 import { closeWebSocket } from '@/utils/websocket'
 
 export default {
@@ -145,6 +146,26 @@ export default {
       top: 10px;
       right: 10px;
     }
+
+    .hospital-name {
+      position: absolute;
+      right: 10%;
+      bottom: 20px;
+      color: rgb(100, 100, 100);
+      font-size: 13px;
+
+      i {
+        margin-left: 4px;
+        font-weight: bold;
+        color: gray;
+      }
+
+      span {
+        color: rgb(112, 112, 112);
+        margin-left: 4px;
+        font-size: 10px;
+      }
+    }
   }
 }
 
@@ -164,9 +185,6 @@ export default {
     h1 {
       margin-top: 0;
     }
-
-    .form {
-    }
   }
 }
 </style>