|
@@ -53,6 +53,7 @@ export default {
|
|
|
// 计划id
|
|
|
planId: '',
|
|
|
classList: [],
|
|
|
+ userinfo: {},
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -68,7 +69,6 @@ export default {
|
|
|
...setting({ settingFetch: 'fetch' }),
|
|
|
async search() {
|
|
|
const setting = await this.settingFetch();
|
|
|
- console.log(setting);
|
|
|
if (setting.data.planid) {
|
|
|
this.toClass(setting.data.planid);
|
|
|
} else {
|
|
@@ -81,11 +81,11 @@ export default {
|
|
|
this.display = false;
|
|
|
this.$set(this, `planId`, planid);
|
|
|
let classList = [];
|
|
|
- console.log(this.user);
|
|
|
- if (this.user.type === '1') {
|
|
|
- classList = await this.classQuery({ planid: planid, headteacherid: this.user.userid });
|
|
|
- } else if (this.user.type === '3') {
|
|
|
- classList = await this.teaclass({ planid: planid, teaid: this.user.userid });
|
|
|
+ console.log(this.userinfo);
|
|
|
+ if (this.userinfo.type === '1') {
|
|
|
+ classList = await this.classQuery({ planid: planid, headteacherid: this.userinfo.userid });
|
|
|
+ } else if (this.userinfo.type === '3') {
|
|
|
+ classList = await this.teaclass({ planid: planid, teaid: this.userinfo.userid });
|
|
|
}
|
|
|
const today = moment().format('YYYY-MM-DD');
|
|
|
for (const classes of classList.data) {
|
|
@@ -104,6 +104,7 @@ export default {
|
|
|
searchToken() {
|
|
|
let token = this.$route.query.token;
|
|
|
let user = jwt.decode(token);
|
|
|
+ this.$set(this, 'userinfo', user);
|
|
|
localStorage.setItem('user', JSON.stringify(user));
|
|
|
},
|
|
|
},
|