|
@@ -65,18 +65,18 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { PROGRAM_Title, AUTH_TOKEN_FRONT } from "@/common/Constant";
|
|
|
-import { getCookie } from "@/utils/cookie";
|
|
|
+import { PROGRAM_Title, AUTH_TOKEN_FRONT } from '@/common/Constant';
|
|
|
+import { getCookie } from '@/utils/cookie';
|
|
|
export default {
|
|
|
- name: "login",
|
|
|
+ name: 'login',
|
|
|
props: {},
|
|
|
components: {},
|
|
|
data() {
|
|
|
return {
|
|
|
loading: false, // 是否显示加载动画
|
|
|
- logoImg: require("@/assets/image/logo.png"), // logo图
|
|
|
+ logoImg: require('@/assets/image/logo.png'), // logo图
|
|
|
loginTitle: PROGRAM_Title, // 系统标题
|
|
|
- loginForm: this.$form.createForm(this, { name: "login" })
|
|
|
+ loginForm: this.$form.createForm(this, { name: 'login' }),
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -98,46 +98,45 @@ export default {
|
|
|
let params = {
|
|
|
userName: values.loginUserName,
|
|
|
password: values.loginPassword,
|
|
|
- token: AUTH_TOKEN_FRONT
|
|
|
+ token: AUTH_TOKEN_FRONT,
|
|
|
};
|
|
|
this.$_http
|
|
|
.get(this.$_API.INTERFACE_GET_USER_LOGIN, {
|
|
|
auth: {
|
|
|
username: params.userName,
|
|
|
- password: params.password
|
|
|
- }
|
|
|
+ password: params.password,
|
|
|
+ },
|
|
|
})
|
|
|
- .then(res => {
|
|
|
+ .then((res) => {
|
|
|
this.loading = false;
|
|
|
if (res.data) {
|
|
|
this.setUserInfo(res.data);
|
|
|
- console.log("--token---" + getCookie(AUTH_TOKEN_FRONT));
|
|
|
+ console.log('--token---' + getCookie(AUTH_TOKEN_FRONT));
|
|
|
this.getEngineeringWorkList(res.data); // 获取工种,并存到vuex
|
|
|
} else {
|
|
|
this.loginForm.setFields({
|
|
|
loginUserName: {
|
|
|
value: values.loginUserName,
|
|
|
- errors: [new Error("账号密码不正确")]
|
|
|
+ errors: [new Error('账号密码不正确')],
|
|
|
},
|
|
|
loginPassword: {
|
|
|
value: values.loginPassword,
|
|
|
- errors: [new Error("账号密码不正确")]
|
|
|
- }
|
|
|
+ errors: [new Error('账号密码不正确')],
|
|
|
+ },
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.loading = false;
|
|
|
this.loginForm.setFields({
|
|
|
loginUserName: {
|
|
|
value: values.loginUserName,
|
|
|
- errors: [new Error("账号密码不正确")]
|
|
|
+ errors: [new Error('账号密码不正确')],
|
|
|
},
|
|
|
loginPassword: {
|
|
|
value: values.loginPassword,
|
|
|
- errors: [new Error("账号密码不正确")]
|
|
|
- }
|
|
|
+ errors: [new Error('账号密码不正确')],
|
|
|
+ },
|
|
|
});
|
|
|
});
|
|
|
}
|
|
@@ -148,30 +147,30 @@ export default {
|
|
|
this.loading = true;
|
|
|
this.$_http
|
|
|
.get(this.$_API.INTERFACE_GET_ENGINEERINGWORK_LIST)
|
|
|
- .then(res => {
|
|
|
- this.$store.commit("common/SET_ENGINEERING_WORK_LIST", res.data);
|
|
|
+ .then((res) => {
|
|
|
+ this.$store.commit('common/SET_ENGINEERING_WORK_LIST', res.data);
|
|
|
sessionStorage.setItem(
|
|
|
- "ENGINEERING_WORK_LIST",
|
|
|
+ 'ENGINEERING_WORK_LIST',
|
|
|
JSON.stringify(res.data)
|
|
|
);
|
|
|
this.getExamQuestionTypeConditionParentList(); // 获取试题类型-父类信息,并存到vuex
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.loading = false;
|
|
|
- // 设置用户信息,跳转到首页
|
|
|
+ // 设置用户信息,跳转到首页
|
|
|
});
|
|
|
},
|
|
|
// 获取试题类型-父类信息,并存到vuex
|
|
|
getExamQuestionTypeConditionParentList() {
|
|
|
this.$_http
|
|
|
.get(this.$_API.INTERFACE_GET_EXAMS_QUESTION_TYPE_CONDITION_PARENT)
|
|
|
- .then(res => {
|
|
|
+ .then((res) => {
|
|
|
this.$store.commit(
|
|
|
- "common/SET_EXAM_QUESTION_TYPE_CONDITION_PARENT",
|
|
|
+ 'common/SET_EXAM_QUESTION_TYPE_CONDITION_PARENT',
|
|
|
res.data
|
|
|
);
|
|
|
sessionStorage.setItem(
|
|
|
- "EXAM_QUESTION_TYPE_CONDITION_PARENT",
|
|
|
+ 'EXAM_QUESTION_TYPE_CONDITION_PARENT',
|
|
|
JSON.stringify(res.data)
|
|
|
);
|
|
|
})
|
|
@@ -181,12 +180,12 @@ export default {
|
|
|
},
|
|
|
// 设置用户信息,跳转到首页
|
|
|
setUserInfo(userInfo) {
|
|
|
- this.$store.commit("user/SET_LOGIN", userInfo); // // 存用户信息
|
|
|
- this.$store.commit("user/SET_MENU", []); // 赋值菜单
|
|
|
+ this.$store.commit('user/SET_LOGIN', userInfo); // // 存用户信息
|
|
|
+ this.$store.commit('user/SET_MENU', []); // 赋值菜单
|
|
|
this.loading = false;
|
|
|
- this.$router.push({ name: "home" });
|
|
|
- }
|
|
|
- }
|
|
|
+ this.$router.push({ path: '/home' });
|
|
|
+ },
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|
|
@@ -200,12 +199,12 @@ export default {
|
|
|
</style>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-@import "~@/styles/common/variable.less";
|
|
|
+@import '~@/styles/common/variable.less';
|
|
|
.login-box {
|
|
|
.login-body {
|
|
|
width: 100vw;
|
|
|
height: 100vh;
|
|
|
- background-image: url("../../assets/image/login/background.png");
|
|
|
+ background-image: url('../../assets/image/login/background.png');
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: cover;
|
|
|
display: flex;
|