123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <div class="login-all">
- <div class="login-haed">
- <div class="img-logo">
- <div class="logos">
- <img src="../assets/logo2.png" />
- </div>
- <div class="names">PAN-AMERICAN INTERNATIONAL</div>
- </div>
- <div class="help-box">
- <div class="help-title">没有企业账户?</div>
- <router-link class="help-btn" :to="{path:'/Enroll'}">去注册</router-link>
- <!-- <div class="help-btn">去注册</div> -->
- </div>
- </div>
- <div class="login-dominant">
- <div class="login-box">
- <div class="login-title">泛美OA办公系统</div>
- <div class="login-input">
- <el-input @keyup.enter.native="Login()" class="accounts" placeholder="请输入您的账户" v-model="usernum">
- <i slot="prefix" class="iconfont el-input__icon icon-zhanghu"></i>
- </el-input>
- <el-input @keyup.enter.native="Login()" class="passwords" placeholder="请输入您的密码" show-password v-model="password">
- <i slot="prefix" class="iconfont el-input__icon icon-mima"></i>
- </el-input>
- <div class="el-input remembers">
- <div class="el-input-box">
- <input id="ckxjz" v-model="msgs" type="checkbox">
- <span class="two" @click="ckxclick"></span>
- <label for="ckxjz">记住账户</label>
- </div>
- <!-- <div class="fotger-pass">
- 忘记密码?
- </div> -->
- </div>
- <div class="loginbtn-box">
- <el-button @click="Login()" class="loginbtn"
- v-loading.fullscreen.lock="fullscreenLoading" round>登 录</el-button>
- </div>
- </div>
- <div></div>
- </div>
- </div>
- <div class="fout-box">
- PAN-AMERICAN INTERNATIONAL OA AI SYSTEM<br>
- © 2024 PAN-AMERICAN INTERNATIONAL CORPOPATION. ALL Rights Reserved.
- </div>
- </div>
- </template>
- <script>
- import Vuex from 'vuex';
- import { mapMutations, mapActions } from 'vuex'
- export default {
- ...mapMutations(['setphone']),//引入保存phone数据方法
- data() {
- return {
- usernum: '',
- password: '',
- msgs: false,
- fullscreenLoading: false
- }
- },
- methods: {
- ...mapActions(['vlogin']),
- //记住账户click
- ckxclick() {
- if (this.msgs == true) {
- this.msgs = false;
- } else {
- this.msgs = true;
- }
- },
- //记住密码存cookie
- setUserInfo() {
- var vm = this;
- // 判断用户是否勾选记住密码,如果勾选,向cookie中储存登录信息,
- // 如果没有勾选,储存的信息为空
- console.log(vm.msgs)
- if (vm.msgs) {
- vm.$cookie.set("userName", vm.usernum,7);
- vm.$cookie.set("userPwd", vm.password,7);
- vm.$cookie.set("checked", vm.msgs,7);
- } else {
- vm.$cookie.set("userName", "");
- vm.$cookie.set("userPwd", "");
- vm.$cookie.set("checked","");
- }
- },
- //记住密码存cookie
- getUserInfo() {
- this.usernum=this.$cookie.get('userName');
- this.password=this.$cookie.get('userPwd');
- this.msgs=this.$cookie.get('checked');
- },
- keyd(e){
- let that = this
- e = window.event || e
- //保证是在登录页面发出的enter事件
- if (e.code === 'Enter' || e.code === 'enter' || e.code === 'NumpadEnter') {
- //调用登录函数
- that.Login();
- }
-
- },
- //登录
- Login() {
- // if (this.usernum!='051') {
- // return this.$message({
- // message: "oa系统整改",
- // type: 'warning'
- // });
- // }
- var homepage = "";
- if (this.usernum == "" || this.password == "") {
- this.$message({
- message: "请填写账号密码!",
- type: 'warning'
- });
- return false;
- }
- this.fullscreenLoading = true;
- var url = "/api/login"
- var that = this
- this.$axios({
- method: 'post',
- url: url,
- data: {
- number: this.usernum,
- password: this.password
- }
- }).then(function (res) {
- console.log(res);
- if (res.data.code == 200) {
- window.removeEventListener('keydown',that.keyd,false);
- localStorage.setItem('userinif', JSON.stringify(res.data.data));
- localStorage.setItem('unReadCount', JSON.stringify(res.data.data.unReadCount));
- that.fullscreenLoading = false;
- for (var l = 0; l < res.data.data.authData.length; l++) {
- if (res.data.data.authData[l].modulName == '主页') {
- homepage = res.data.data.authData[l].pageList[0].webUrl
- localStorage.setItem("indexs", res.data.data.authData[l].modulid + '-' + res.data.data.authData[l].pageList[0].pageid);
- localStorage.setItem("innhtml", res.data.data.authData[l].pageList[0].pageName);
- }
- }
- that.$router.push({ path: "/home" + homepage });
- that.setUserInfo();
- console.log("/home" + homepage);
- // that.$router.push('/home/index');
- } else {
- that.fullscreenLoading = false;
- that.$message({
- message: res.data.msg,
- type: 'warning'
- });
- }
- })
- }
- },
- mounted() {
- console.log(process.env.API_HOST);
- document.querySelector(".login-all").style.height = window.innerHeight + "px";
-
- this.getUserInfo();
- window.addEventListener('keydown',this.keyd);
- }
- }
- </script>
- <style>
- .login-all .fout-box {
- width: 100%;
- text-align: center;
- background-color: #0008;
- padding: 20px;
- color: #fff;
- line-height: 34px;
- position: fixed;
- bottom:0px;
- font-size: 14px;
- }
- #ckxjz {
- cursor: pointer;
- opacity: 0;
- }
- #ckxjz[type=checkbox]+span {
- display: inline-block;
- border-radius: 2px;
- width: 15px;
- height: 15px;
- border: 1px solid #FFF;
- background-color: transparent;
- position: absolute;
- left: 5px;
- top: 3px;
- cursor: pointer;
- }
- #ckxjz[type=checkbox]:checked+span::after {
- content: '\2714';
- color: #fff;
- position: absolute;
- font-size: 20px;
- left: 2px;
- bottom: -2px;
- }
- .login-all {
- background-image: url("../../static/bj111.jpg");
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- .login-haed {
- padding: 50px 100px;
- display: flex;
- justify-content: space-between;
- }
- .img-logo {
- display: flex;
- align-items: center;
- }
- .logos {
- color: #fff;
- font-size: 48px;
- font-weight: 600;
- font-family: fangsong;
- width: 80px;
- height: 80px;
- }
- .logos img {
- width: 100%;
- }
- .names {
- color: #fff;
- margin-left: 20px;
- font-size: 24px;
- font-weight: 600;
- font-family: fangsong;
- }
- .help-box {
- display: flex;
- align-items: center;
- }
- .help-title {
- color: #fff;
- }
- .help-btn {
- margin-left: 20px;
- color: #1DA3D8;
- }
- .el-input-box{
- margin-left: 5px;
- }
- .login-box {
- width: 400px;
- height: 300px;
- background-color: rgba(26, 30, 42, 0.7);
- /*background-color: rgba(42,53,88);*/
- margin: 0 auto;
- border-radius: 20px;
- padding: 20px 50px;
- margin-top: 120px;
- }
- .login-title {
- color: #fff;
- font-size: 24px;
- font-weight: 600;
- text-align: center;
- margin-top: 10px;
- margin-bottom: 20px;
- }
- .icon-mima {
- font-weight: 600;
- }
- .icon-zhanghu {
- color: #1DA3D8;
- }
- .icon-mima {
- color: #1DA3D8;
- }
- .login-dominant .login-box .login-input .remembers {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .fotger-pass {
- color: #1DA3D8;
- }
- .loginbtn {
- background-color: transparent;
- color: #1DA3D8;
- border: 1px solid #1DA3D8;
- }
- .loginbtn-box {
- text-align: center;
- padding: 25px;
- }
- body {
- margin: 0;
- padding: 0;
- }
- .login-all .login-input .el-input input {
- border-radius: 20px;
- background-color: transparent;
- color: #fff;
- }
- .login-all .loginbtn-box .el-button.is-round {
- border-radius: 25px;
- padding: 12px 50px;
- font-size: 20px;
- }
- .login-all .login-input .el-input {
- margin-top: 20px;
- }
- .login-all .el-input label {
- color: #fff;
- }
- .login-all .login-input .el-input__prefix {
- width: 40px;
- }
- .login-all .login-input .el-input--prefix .el-input__inner {
- padding-left: 50px;
- }
- @media (max-height:760px) {
- .fout-box{
- display: none;
- }
- }
- </style>
|