|  | @@ -2,8 +2,8 @@
 | 
											
												
													
														|  |    <div class="fx-row fx-end-cen login-form-container" style="padding: 40px 0;"
 |  |    <div class="fx-row fx-end-cen login-form-container" style="padding: 40px 0;"
 | 
											
												
													
														|  |         :style="{backgroundImage: `url(${require('@/assets/images/index/login/banner.png')})`} ">
 |  |         :style="{backgroundImage: `url(${require('@/assets/images/index/login/banner.png')})`} ">
 | 
											
												
													
														|  |      <div class="bg-white rd4 login-form-block">
 |  |      <div class="bg-white rd4 login-form-block">
 | 
											
												
													
														|  | -      <img style="width: 60%;margin-left:20%;" src="@/assets/images/login_logo.png"/>
 |  | 
 | 
											
												
													
														|  | -      <div class="f-primary text-center mt20 mb40 bold f18" style="letter-spacing: 10px;">
 |  | 
 | 
											
												
													
														|  | 
 |  | +      <img style="width: 56%;margin-left:19.5%;" src="@/assets/images/login_logo.png"/>
 | 
											
												
													
														|  | 
 |  | +      <div class="f-primary text-center mt15 mb20 bold f18" style="letter-spacing: 10px;">
 | 
											
												
													
														|  |          WELCOME
 |  |          WELCOME
 | 
											
												
													
														|  |        </div>
 |  |        </div>
 | 
											
												
													
														|  |        <el-form v-if="!isLogin" ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form"
 |  |        <el-form v-if="!isLogin" ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form"
 | 
											
										
											
												
													
														|  | @@ -42,7 +42,7 @@
 | 
											
												
													
														|  |                   style="border-radius:50%;width:80px;"/>
 |  |                   style="border-radius:50%;width:80px;"/>
 | 
											
												
													
														|  |            </div>
 |  |            </div>
 | 
											
												
													
														|  |          </div>
 |  |          </div>
 | 
											
												
													
														|  | -        <div style="padding-bottom:10px;">
 |  | 
 | 
											
												
													
														|  | 
 |  | +        <div>
 | 
											
												
													
														|  |            <div class="text-center mt20 mb10">
 |  |            <div class="text-center mt20 mb10">
 | 
											
												
													
														|  |              {{ currentUser.userName }}
 |  |              {{ currentUser.userName }}
 | 
											
												
													
														|  |            </div>
 |  |            </div>
 | 
											
										
											
												
													
														|  | @@ -50,7 +50,7 @@
 | 
											
												
													
														|  |              <span>{{ currentUser.nickName }} {{ schoolName }}</span>
 |  |              <span>{{ currentUser.nickName }} {{ schoolName }}</span>
 | 
											
												
													
														|  |            </p>
 |  |            </p>
 | 
											
												
													
														|  |          </div>
 |  |          </div>
 | 
											
												
													
														|  | -        <div class="list-group-item" style="margin-top:10px;border:none">
 |  | 
 | 
											
												
													
														|  | 
 |  | +        <div class="list-group-item" style="border: none">
 | 
											
												
													
														|  |                                          <span style="display:inline-block;width:33%;text-align:center;cursor:pointer">
 |  |                                          <span style="display:inline-block;width:33%;text-align:center;cursor:pointer">
 | 
											
												
													
														|  |                                              <img style="width: 16px;position: relative;top: 2px;margin-right: 5px;"
 |  |                                              <img style="width: 16px;position: relative;top: 2px;margin-right: 5px;"
 | 
											
												
													
														|  |                                                   src="@/assets/images/icon_jifen.png" alt/>
 |  |                                                   src="@/assets/images/icon_jifen.png" alt/>
 | 
											
										
											
												
													
														|  | @@ -74,7 +74,7 @@
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  <script>
 |  |  <script>
 | 
											
												
													
														|  |  /* TODO: 22.8.23 hht 这里为节省时间,全部由依赖注入主导,没有做逻辑分割 */
 |  |  /* TODO: 22.8.23 hht 这里为节省时间,全部由依赖注入主导,没有做逻辑分割 */
 | 
											
												
													
														|  | -import { mapGetters } from 'vuex'
 |  | 
 | 
											
												
													
														|  | 
 |  | +import {mapGetters} from 'vuex'
 | 
											
												
													
														|  |  import loginCheckMixin from '@/views/index/blocks/index-login-interceptor-mixin'
 |  |  import loginCheckMixin from '@/views/index/blocks/index-login-interceptor-mixin'
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  export default {
 |  |  export default {
 | 
											
										
											
												
													
														|  | @@ -127,7 +127,7 @@ export default {
 | 
											
												
													
														|  |      ...mapGetters(['currentUser', 'schoolName', 'isLogin'])
 |  |      ...mapGetters(['currentUser', 'schoolName', 'isLogin'])
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  |    methods: {
 |  |    methods: {
 | 
											
												
													
														|  | -    validate: function(cb) {
 |  | 
 | 
											
												
													
														|  | 
 |  | +    validate: function (cb) {
 | 
											
												
													
														|  |        return this.$refs.loginForm.validate(cb)
 |  |        return this.$refs.loginForm.validate(cb)
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      async handleGoUserCenter() {
 |  |      async handleGoUserCenter() {
 | 
											
										
											
												
													
														|  | @@ -145,9 +145,9 @@ export default {
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  .login-form-block {
 |  |  .login-form-block {
 | 
											
												
													
														|  | -  width:350px;
 |  | 
 | 
											
												
													
														|  | -  height: 400px;
 |  | 
 | 
											
												
													
														|  | -  padding:15px 40px;
 |  | 
 | 
											
												
													
														|  | 
 |  | +  width: 350px;
 | 
											
												
													
														|  | 
 |  | +  height: 360px;
 | 
											
												
													
														|  | 
 |  | +  padding: 15px 40px;
 | 
											
												
													
														|  |    margin-right: calc(50vw - 600px);
 |  |    margin-right: calc(50vw - 600px);
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  </style>
 |  |  </style>
 |