guhongwei 4 years ago
parent
commit
60fa0a7daf
3 changed files with 9 additions and 8 deletions
  1. 1 1
      src/layout/class/classInfo.vue
  2. 1 1
      src/views/class/info/headStuList.vue
  3. 7 6
      src/views/index.vue

+ 1 - 1
src/layout/class/classInfo.vue

@@ -51,7 +51,7 @@
         <el-col :span="22" class="info">
           <p class="title">班主任电话</p>
           <p class="name">
-            <a :href="`tel:${dirInfo.phone}`">{{ dirInfo.phone }}</a>
+            <a :href="`tel:${dirInfo.mobile}`">{{ dirInfo.mobile }}</a>
           </p>
         </el-col>
         <el-col :span="2" class="icon">

+ 1 - 1
src/views/class/info/headStuList.vue

@@ -139,7 +139,7 @@ export default {
     },
     changeNum(name) {
       if (name.length >= 5) {
-        return 10;
+        return 15;
       } else {
         return 15;
       }

+ 7 - 6
src/views/index.vue

@@ -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));
     },
   },