|
@@ -1,6 +1,13 @@
|
|
|
<template>
|
|
|
<div class="home-box">
|
|
|
- <van-nav-bar v-if="env!=='pro'" title="京臻学堂" left-text right-text bind:click-left bind:click-right></van-nav-bar>
|
|
|
+ <van-nav-bar
|
|
|
+ v-if="env !== 'pro'"
|
|
|
+ title="京臻学堂"
|
|
|
+ left-text
|
|
|
+ right-text
|
|
|
+ bind:click-left
|
|
|
+ bind:click-right
|
|
|
+ ></van-nav-bar>
|
|
|
<div v-show="activeTabName === 0" class="dropdown-div"></div>
|
|
|
<transition name="tab" mode="out-in">
|
|
|
<component :is="currentComponents" class="page" />
|
|
@@ -27,6 +34,7 @@ import PageAnswer from "./answer/page-answer";
|
|
|
import PageExam from "./exam/page-exam";
|
|
|
import PagePerson from "./person/page-person";
|
|
|
import { mapState } from "vuex";
|
|
|
+import { setCookie } from "@/utils/cookie";
|
|
|
export default {
|
|
|
name: "home",
|
|
|
components: { PageLearn, PageAnswer, PageExam, PagePerson },
|
|
@@ -111,12 +119,31 @@ export default {
|
|
|
await this.getLanXinCode();
|
|
|
} else {
|
|
|
console.log("-从本地获取用户信息-");
|
|
|
+ // await this.$_http
|
|
|
+ // .get(this.$_API.JTXT_GET_USER_ADMIN_USERS)
|
|
|
+ // .then(res => {
|
|
|
+ // this.$store.commit("updateUserItemStore", {
|
|
|
+ // field: "userInfo",
|
|
|
+ // value: res.data.content[0]
|
|
|
+ // });
|
|
|
+ // })
|
|
|
+ // .catch(() => {
|
|
|
+ // this.$store.commit("toggleLoading", false);
|
|
|
+ // });
|
|
|
+
|
|
|
await this.$_http
|
|
|
- .get(this.$_API.JTXT_GET_USER_ADMIN_USERS)
|
|
|
+ .get(this.$_API.JTXT_GET_USER_USER_LOGIN, {
|
|
|
+ auth: {
|
|
|
+ username: "admin",
|
|
|
+ password: "admin"
|
|
|
+ }
|
|
|
+ })
|
|
|
.then(res => {
|
|
|
+ console.log(res);
|
|
|
+ setCookie("token", res.data.token);
|
|
|
this.$store.commit("updateUserItemStore", {
|
|
|
field: "userInfo",
|
|
|
- value: res.data.content[0]
|
|
|
+ value: res.data
|
|
|
});
|
|
|
})
|
|
|
.catch(() => {
|
|
@@ -264,6 +291,7 @@ export default {
|
|
|
await this.$_http
|
|
|
.get(this.$_API.JTXT_GET_LAN_XIN_USER_INFO, { params })
|
|
|
.then(res => {
|
|
|
+ setCookie("token", res.data.token);
|
|
|
this.$store.commit("updateUserItemStore", {
|
|
|
field: "userInfo",
|
|
|
value: res.data
|