| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <template>
- <div class="login">
- <span>已授权。。正在登录CPMS</span>
- <!-- 底部 -->
- <div class="el-login-footer">
- <span>Copyright © 2020-2022 Seashore.ept All Rights Reserved.</span>
- </div>
- </div>
- </template>
- <script>
- import {getAccessToken, getCodeImg} from "@/api/login";
- import Cookies from "js-cookie";
- import { encrypt, decrypt } from '@/utils/jsencrypt'
- import LangSelect from '@/components/LangSelect'
- import {updatePlantproglist} from "@/api/document/plantproglist";
- export default {
- name: "SocialLogin",
- components: { LangSelect },
- data() {
- return {
- code: null,
- loading: false,
- };
- },
- created() {
- let code = this.$route.query.code
- if (!code) {
- code = window.location.search.replace("?code=" , '')
- }
- this.code = code
- console.log(this.code)
- this.getAccessToken()
- },
- methods: {
- getAccessToken(){
- getAccessToken(this.code).then(response => {
- this.msgSuccess(this.$t('成功'));
- });
- }
- }
- };
- </script>
- <style rel="stylesheet/scss" lang="scss">
- .login {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- background-size: cover;
- }
- .title {
- margin: 0px auto 15px auto;
- text-align: center;
- color: #ffffff;
- }
- .login-form {
- position:absolute;
- top:50%;
- left:50%;
- transform:translate(-50%,-50%);
- /*实现块元素百分比下居中*/
- width:450px;
- padding:50px;
- background: #2a8db9db;
- box-sizing:border-box;
- box-shadow: 0px 15px 25px rgba(0,0,0,.5);
- border-radius:15px;
- .el-input {
- height: 38px;
- input {
- height: 38px;
- }
- }
- .input-icon {
- height: 39px;
- width: 14px;
- margin-left: 2px;
- }
- }
- .login-tip {
- font-size: 13px;
- text-align: center;
- color: #bfbfbf;
- }
- .login-code {
- width: 33%;
- height: 38px;
- float: right;
- img {
- cursor: pointer;
- vertical-align: middle;
- }
- }
- .el-dropdown {
- color: #ffffff;
- }
- .el-checkbox {
- color: #ffffff;
- }
- .el-login-footer {
- height: 40px;
- line-height: 40px;
- position: fixed;
- bottom: 0;
- width: 100%;
- text-align: center;
- color: #fff;
- font-family: Arial;
- font-size: 12px;
- letter-spacing: 1px;
- }
- .login-code-img {
- height: 38px;
- }
- </style>
- <style scoped>
- .el-button--primary {
- color: #FFFFFF;
- background-color: #40a9ff;
- border-color: #40a9ff;
- }
- .el-button:hover, .el-button:focus {
- border-color: #6abfff;
- background-color: #6abfff;
- }
- </style>
|