prod
校文 2 years ago
parent e7a3ef9704
commit 496a293465

@ -21,6 +21,7 @@ function filterRequestData(obj) {
}
return o;
}
axios.defaults.withCredentials = true;
//创建axios的实例
const httpService = axios.create({
baseURL: 'http://cloud.sws010.com',// TODO:具体的配置可以根据项目情况而来
@ -34,7 +35,7 @@ httpService.interceptors.request.use(config => {
// if(localStorage.getItem('token')){//判断浏览器中的cookie中是否存在项目的token
// config.headers.token = localStorage.getItem('token')
// }\
config.withCredentials = true;
// config.withCredentials = true;
const rqParams = filterRequestData(config.params);
const rqData = filterRequestData(config.data);
// post 'Content-Type' === 'application/x-www-form-urlencoded'

@ -10,18 +10,21 @@
<div class="lgf-outter">
<a-form-model layout="horizontal" :model="form" :rules="rules" ref="loginForm">
<a-form-model-item label="用户名" prop="sUserName">
<a-input v-model="form.sUserName" placeholder="请输入账号" autocomplete="off" :maxLength="30"/>
<a-input v-model="form.sUserName" placeholder="请输入账号" autocomplete="off" :maxLength="30" />
</a-form-model-item>
<a-form-model-item label="密码" prop="sPwd">
<a-input v-model="form.sPwd" :type="pwdType" placeholder="请输入密码" autocomplete="off">
<span slot="suffix" class="iconfont icon-zhengyan-21 login-eye" v-if="pwdType==='password'" @click="changePwdType"></span>
<span slot="suffix" class="iconfont icon-zhengyan-21 login-eye" v-if="pwdType === 'password'"
@click="changePwdType"></span>
<span slot="suffix" class="iconfont icon-in_biyan login-eye" v-else @click="changePwdType"></span>
</a-input>
</a-form-model-item>
<a-form-model-item label="验证码" prop="sVerifycode">
<a-input v-model="form.sVerifycode" placeholder="请输入验证码" autocomplete="off">
<a-button slot="addonAfter" style="width: 100px" @click="getCode" v-if="!codeImg" :loading="btnLoading"></a-button>
<img style="width: 6rem; height: 2rem;cursor: pointer;" slot="addonAfter" :src="codeImg" @click="getCode" v-else>
<a-button slot="addonAfter" style="width: 100px" @click="getCode" v-if="!codeImg"
:loading="btnLoading">获取验证码</a-button>
<img style="width: 6rem; height: 2rem;cursor: pointer;" slot="addonAfter" :src="codeImg"
@click="getCode" v-else>
</a-input>
</a-form-model-item>
</a-form-model>
@ -38,7 +41,7 @@
</template>
<script>
import {loginSubmit, getVerifycode} from "@/api/login"
import { loginSubmit, getVerifycode } from "@/api/login"
export default {
name: "loginForm",
data() {
@ -89,7 +92,7 @@ export default {
};
},
created() {
if(JSON.stringify(this.getAccount) != "{}") {
if (JSON.stringify(this.getAccount) != "{}") {
this.remCheck = this.getAccount.remCheck;
this.form.sUserName = this.getAccount.sUserName;
this.form.sPwd = this.getAccount.sPwd;
@ -118,33 +121,33 @@ export default {
onSubmit() {
this.$refs.loginForm.validate((valid) => {
if (valid) {
loginSubmit(this.form).then(res => {
let data = res.data;
this.setToken(data.toKen);
this.setUser(data);
this.setLevelBtn(data.levelBtn);
//
let obj = {
link:'/saleRank',
text:'销量排行'
};
let obj2 = {
link:'/specialAnalize',
text:'专项分析'
};
data.meun.push(obj);
data.meun.push(obj2);
////
this.setMenu(data.meun);
if(this.remCheck) {
this.setAccount({sUserName:this.form.sUserName, sPwd: this.form.sPwd, remCheck: this.remCheck})
} else {
this.setAccount({});
}
this.$router.push({path: '/'})
}).catch(() => {
console.log("登录失败")
})
loginSubmit(this.form).then(res => {
let data = res.data;
this.setToken(data.toKen);
this.setUser(data);
this.setLevelBtn(data.levelBtn);
//
let obj = {
link: '/saleRank',
text: '销量排行'
};
let obj2 = {
link: '/specialAnalize',
text: '专项分析'
};
data.meun.push(obj);
data.meun.push(obj2);
////
this.setMenu(data.meun);
if (this.remCheck) {
this.setAccount({ sUserName: this.form.sUserName, sPwd: this.form.sPwd, remCheck: this.remCheck })
} else {
this.setAccount({});
}
this.$router.push({ path: '/' })
}).catch(() => {
console.log("登录失败")
})
} else {
console.log("error submit!!");
return false;
@ -160,20 +163,24 @@ export default {
margin: 0 auto;
margin-top: 80px;
}
.login-eye {
font-size: 16px;
color: #3373cc;
cursor: pointer;
}
.login-d1 {
width: 380px;
display: flex;
justify-content: space-between;
margin: 0 auto;
.stn {
cursor: pointer;
}
}
.login-footer {
position: absolute;
width: 354px;

Loading…
Cancel
Save