123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- <template>
- <div class="main iot-login-content">
- <div class="top-img"></div>
- <div class="sign-text">登录到 联锁管理平台</div>
- <a-form-model class="user-layout-login" @keyup.enter.native="handleSubmit">
- <a-tabs :activeKey="customActiveKey" :tabBarStyle="{ textAlign: 'center', borderBottom: 'unset' }" @change="handleTabClick" class="login-tabs">
- <a-tab-pane key="tab1" tab="SSO">
- <login-account ref="alogin" @validateFail="validateFail" @success="requestSuccess" @fail="requestFailed"></login-account>
- </a-tab-pane>
- <!-- 修改框架 -->
- <!-- <a-tab-pane key="tab2" tab="手机号登录">
- <login-phone ref="plogin" @validateFail="validateFail" @success="requestSuccess" @fail="requestFailed"></login-phone>
- </a-tab-pane> -->
- </a-tabs>
- <a-form-model-item>
- <a-checkbox @change="handleRememberMeChange" default-checked>记住我</a-checkbox>
- <!-- 修改框架 -->
- <!-- <router-link :to="{ name: 'alteration'}" class="forge-password" style="float: right;">
- 忘记密码
- </router-link> -->
- <!-- <router-link :to="{ name: 'register'}" class="forge-password" style="float: right;margin-right: 10px" >
- 注册账户
- </router-link> -->
- </a-form-model-item>
- <a-form-item style="margin-top:24px">
- <a-button size="large" type="primary" htmlType="submit" class="login-button" :loading="loginBtn" @click.stop.prevent="handleSubmit" :disabled="loginBtn">登录
- </a-button>
- </a-form-item>
- </a-form-model>
- <two-step-captcha v-if="requiredTwoStepCaptcha" :visible="stepCaptchaVisible" @success="stepCaptchaSuccess" @cancel="stepCaptchaCancel"></two-step-captcha>
- <login-select-tenant ref="loginSelect" @success="loginSelectOk"></login-select-tenant>
- <!-- 修改框架 -->
- <!-- <third-login ref="thirdLogin"></third-login> -->
- </div>
- </template>
- <script>
- import Vue from 'vue'
- import { ACCESS_TOKEN, ENCRYPTED_STRING } from '@/store/mutation-types'
- import ThirdLogin from './third/ThirdLogin'
- import LoginSelectTenant from './LoginSelectTenant'
- import TwoStepCaptcha from '@/components/tools/TwoStepCaptcha'
- import { getEncryptedString } from '@/utils/encryption/aesEncrypt'
- import { timeFix } from '@/utils/util'
- import LoginAccount from './LoginAccount'
- import LoginPhone from './LoginPhone'
- export default {
- components: {
- LoginSelectTenant,
- TwoStepCaptcha,
- ThirdLogin,
- LoginAccount,
- LoginPhone
- },
- data () {
- return {
- customActiveKey: 'tab1',
- rememberMe: true,
- loginBtn: false,
- requiredTwoStepCaptcha: false,
- stepCaptchaVisible: false,
- encryptedString:{
- key:"",
- iv:"",
- },
- }
- },
- created() {
- Vue.ls.remove(ACCESS_TOKEN)
- this.getRouterData();
- this.rememberMe = true
- },
- methods:{
- handleTabClick(key){
- this.customActiveKey = key
- },
- handleRememberMeChange(e){
- this.rememberMe = e.target.checked
- },
- /**跳转到登录页面的参数-账号获取*/
- getRouterData(){
- this.$nextTick(() => {
- let temp = this.$route.params.username || this.$route.query.username || ''
- if (temp) {
- this.$refs.alogin.acceptUsername(temp)
- }
- })
- },
- //登录
- handleSubmit () {
- this.loginBtn = true;
- if (this.customActiveKey === 'tab1') {
- // 使用账户密码登录
- this.$refs.alogin.handleLogin(this.rememberMe)
- } else {
- //手机号码登录
- this.$refs.plogin.handleLogin(this.rememberMe)
- }
- },
- // 校验失败
- validateFail(){
- this.loginBtn = false;
- },
- // 登录后台成功
- requestSuccess(loginResult){
- this.$refs.loginSelect.show(loginResult)
- },
- //登录后台失败
- requestFailed (err) {
- let description = ((err.response || {}).data || {}).message || err.message || "请求出现错误,请稍后再试"
- this.$notification[ 'error' ]({
- message: '登录失败',
- description: description,
- duration: 4,
- });
- //账户密码登录错误后更新验证码
- if(this.customActiveKey === 'tab1' && description.indexOf('密码错误')>0){
- this.$refs.alogin.handleChangeCheckCode()
- }
- this.loginBtn = false;
- },
- loginSelectOk(){
- this.loginSuccess()
- },
- //登录成功
- loginSuccess () {
- this.$router.push({ path: "/interLock/summary" }).catch(()=>{
- // this.$router.push({ path: "/dashboard/analysis" }).catch(()=>{
- console.log('登录跳转首页出错,这个错误从哪里来的')
- })
- this.$notification.success({
- message: '欢迎',
- description: `${timeFix()},欢迎回来`,
- });
- },
- stepCaptchaSuccess () {
- this.loginSuccess()
- },
- stepCaptchaCancel () {
- this.Logout().then(() => {
- this.loginBtn = false
- this.stepCaptchaVisible = false
- })
- },
- //获取密码加密规则
- getEncrypte(){
- var encryptedString = Vue.ls.get(ENCRYPTED_STRING);
- if(encryptedString == null){
- getEncryptedString().then((data) => {
- this.encryptedString = data
- });
- }else{
- this.encryptedString = encryptedString;
- }
- }
- }
- }
- </script>
- <style lang="less">
- .login-tabs{
- .ant-tabs-nav-container{
- font-size: 16px !important;
- }
- .ant-tabs-nav{
- width: 50%;
- }
- .ant-tabs-nav .ant-tabs-tab-active{
- color: #3395ff !important;
- }
- .ant-tabs-ink-bar{
- width: 100% !important;
- height: 3px;
- background: #3395ff;
- }
- }
- .iot-login-content{
- .ant-checkbox-checked .ant-checkbox-inner{
- background-color: #3395FF !important;
- border-color: #3395FF;
- }
- }
- </style>
- <style lang="less" scoped>
- .top-img{
- width: 100%;
- height: 64px;
- background: url('../../assets/login_logo.svg') no-repeat;
- background-size: 100%;
- }
- .sign-text{
- width: 100%;
- height: 32px;
- font-size: 16px;
- font-weight: 400;
- color: #646464;
- margin-top: 8px;
- }
- .user-layout-login {
- label {
- font-size: 14px;
- }
- .getCaptcha {
- display: block;
- width: 100%;
- height: 40px;
- }
- .forge-password {
- font-size: 14px;
- }
- button.login-button {
- width: 100%;
- height: 40px;
- padding: 0 15px;
- font-size: 16px;
- background: #004280;
- font-weight: 700;
- border-color: transparent;
- }
- .user-login-other {
- text-align: left;
- margin-top: 24px;
- line-height: 22px;
- .item-icon {
- font-size: 24px;
- color: rgba(0,0,0,.2);
- margin-left: 16px;
- vertical-align: middle;
- cursor: pointer;
- transition: color .3s;
- &:hover {
- color: #1890ff;
- }
- }
- .register {
- float: right;
- }
- }
- }
- </style>
- <style>
- .valid-error .ant-select-selection__placeholder{
- color: #f5222d;
- }
- </style>
|