Просмотр исходного кода

update 修改登录页面样式

linweizeng 2 лет назад
Родитель
Сommit
99cd30c2e0

+ 1 - 1
src/assets/styles/theme/theme-base.scss

@@ -62,7 +62,7 @@
 			  font-size: 14px;
 			  font-weight: bold;
 			  i{
-				color: #1894d0;
+				color: #01a394;
 				font-size: 24px;
 			  }
 		  }

+ 1 - 1
src/components/ibps-tree/index.vue

@@ -212,7 +212,7 @@ export default {
       if (!this.data || this.data.length === 0) return []
       this.data.map(item => {
         if (item.name === '任务分类') {
-            item.name = '事务分类'
+            item.name = '记录分类'
         }
       })
       if (this.dataType === 'list') {

+ 2 - 2
src/views/platform/bpmn/bpmInstHis/list.vue

@@ -4,7 +4,7 @@
             <ibps-type-tree
                 :width="width"
                 :height="height"
-                title="事务分类"
+
                 :location="location"
                 category-key="FLOW_TYPE"
                 :hasPermission="hasPermission"
@@ -167,7 +167,7 @@
     import curdPost from '@/business/platform/form/utils/custom/joinCURD.js'
     import IbpsAttachment from '@/business/platform/file/attachment/selector'
     import { specialType, specialBtn, specialParams, specialTable, specialField } from './corresponding/index'
-    
+
     export default {
         components: {
             IbpsTypeTree,

+ 10 - 11
src/views/system/blank/index.vue

@@ -1,18 +1,17 @@
 <template>
-  <div style="width: 86%;">
-          <div style="font-size:32px; font-weight: bold; color:rgb(51, 150, 209); margin-top: 10%;text-align: center;">
-             <!-- <img src="./img/logo_MJJC.jpg" width="22%"> -->
-              </br>
-                 <i style="font-size:28px;" :class="'ibps-icon-'+$route.query.icon"></i>
-                  {{$route.query.name}}
-                </br>
-                 <span style="color: #1894d0; font-size: 16px;">选择左侧菜单功能项</span>
-          </div>
-       </div>
+    <div style="width: 86%">
+        <div style="font-size: 32px; font-weight: bold; color: rgb(51, 150, 209); margin-top: 10%; text-align: center">
+            <img src="./img/jinyuan.png" width="22%" />
+            <div style="color: #01a394">
+                <i style="font-size: 28px" :class="'ibps-icon-' + $route.query.icon"></i>
+                {{ $route.query.name }}
+            </div>
+            <div style="color: #01a394; font-size: 16px;margin-top: 10px;">选择左侧菜单功能项</div>
+        </div>
+    </div>
 </template>
 
 <script>
-
 </script>
 
 <style>

+ 22 - 9
src/views/system/login/page.vue

@@ -1,13 +1,12 @@
 <template>
     <div class="jbd-login-page-bg">
         <el-container class="login-container" @keyup.enter="handleLogin">
-            <el-main style="width: 100%; height: 100%; overflow: hidden;border: 0;display: flex;
-            justify-content: right;">
+            <el-main style="width: 100%; height: 100%; overflow: hidden; border: 0; display: flex; justify-content: right">
                 <div class="">
                     <div class="logoTitle">
                         <h1 class="login-title">
                             <img src="../../../assets/images/login/logo.jpg" class="logoImg" />
-                            金源信通
+                            <span style="font-size: 24px; margin-left: 5px">金源信通</span>
                         </h1>
                         <h1 class="login-title" style="font-size: 52px">金通医学实验室管理系统</h1>
                     </div>
@@ -28,10 +27,17 @@
                     </div>
                 </div>
             </el-main>
-            <el-footer style="width: 80%">
-                <div style="font-size: 12px; text-align: right">
-                    <hr />
-                    <div><i class="el-icon-s-platform" /> 深圳市金源信通科技有限公司开发</div>
+            <el-footer style="width: 100%">
+                <hr style="color: #aaaaaa" />
+                <div class="centerCox">
+                    <div style="width: 260px"></div>
+                    <div>
+                        建议使用的浏览器360、火狐
+                    </div>
+                    <div style="font-size: 12px; text-align: right">
+
+                        <div style="font-size: 16px"><i class="el-icon-s-platform" /> 深圳市金源信通科技有限公司开发</div>
+                    </div>
                 </div>
             </el-footer>
         </el-container>
@@ -76,7 +82,8 @@ export default {
 
 .jbd-login-page-main {
     margin-top: 80px;
-    margin-left: 3%;
+    /* margin-left: 3%; */
+    margin: 0 auto;
     margin-bottom: 20px;
     box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
     padding: 30px;
@@ -85,12 +92,12 @@ export default {
     background-repeat: no-repeat;
     border-radius: 5%;
     box-sizing: border-box;
+    background: #fff;
 }
 
 .login-title {
     font-size: 26px;
     color: #01a39e;
-
 }
 .logoImg {
     width: 30px;
@@ -104,4 +111,10 @@ export default {
 .logoTitle {
     margin: 30px;
 }
+
+.centerCox{
+    display: flex;
+    justify-content: space-between;
+    align-content: center;
+}
 </style>