lrf402788946 4 years ago
parent
commit
4d6cf7f66c

+ 43 - 4
src/layout/class/classInfo.vue

@@ -38,6 +38,26 @@
           <van-icon name="arrow" />
         </el-col>
       </el-col>
+      <el-col :span="24" class="mess">
+        <el-col :span="22" class="info">
+          <p class="title">班主任</p>
+          <p class="name">{{ dirInfo.name }}</p>
+        </el-col>
+        <el-col :span="2" class="icon">
+          <van-icon name="arrow" />
+        </el-col>
+      </el-col>
+      <el-col :span="24" class="mess">
+        <el-col :span="22" class="info">
+          <p class="title">班主任电话</p>
+          <p class="name">
+            <a :href="`tel:${dirInfo.phone}`">{{ dirInfo.phone }}</a>
+          </p>
+        </el-col>
+        <el-col :span="2" class="icon">
+          <van-icon name="arrow" />
+        </el-col>
+      </el-col>
       <el-col :span="24" class="mess">
         <el-col :span="22" class="info">
           <p class="title">礼仪课老师</p>
@@ -87,9 +107,7 @@
         <el-col :span="22" class="info">
           <p class="title">班级类型</p>
           <p class="name">
-            <template slot-scope="scope">
-              <span style="margin-left: 10px" v-if="classinfo.type">{{ scope.row.type === '0' ? '正常班级' : scope.row.type === '1' ? '特殊班级' : '' }}</span>
-            </template>
+            <span>{{ getType(classinfo.type) }}</span>
           </p>
         </el-col>
         <el-col :span="2" class="icon">
@@ -103,24 +121,45 @@
 <script>
 import { mapState, createNamespacedHelpers, mapGetters } from 'vuex';
 const { mapActions: classes } = createNamespacedHelpers('classes');
+const { mapActions: director } = createNamespacedHelpers('director');
+const { mapActions: classtype } = createNamespacedHelpers('classtype');
+
 export default {
   name: 'classInfo',
   props: {},
   components: {},
   data: () => ({
     classinfo: {},
+    classTypeList: [],
+    dirInfo: {},
   }),
-  created() {
+  async created() {
+    await this.getOtherList();
     this.search();
   },
   computed: {
     ...mapState(['user', 'classid']),
   },
   methods: {
+    ...director({ getDir: 'fetch' }),
     ...classes(['fetch']),
+    ...classtype({ getClassType: 'query' }),
     async search() {
       const classinfo = (await this.fetch(this.classid)).data;
       this.$set(this, `classinfo`, classinfo);
+      if (_.get(classinfo, 'headteacherid')) {
+        const dirInfo = await this.getDir(_.get(classinfo, 'headteacherid'));
+        if (this.$checkRes(dirInfo)) this.$set(this, `dirInfo`, dirInfo.data);
+      }
+    },
+    async getOtherList() {
+      const res = await this.getClassType();
+      if (this.$checkRes(res)) this.$set(this, `classTypeList`, res.data);
+    },
+    getType(type) {
+      console.log(type);
+      const r = this.classTypeList.find(f => f.code == type);
+      if (r) return r.name;
     },
   },
 };

+ 1 - 1
src/layout/user/headteaInfo.vue

@@ -43,7 +43,7 @@
           <el-col :span="24" class="mess">
             <el-col :span="22" class="info">
               <p class="title">学校名称</p>
-              <p class="name">{{ jianshiinfo.schname }}</p>
+              <p class="name">{{ jianshiinfo.jobaddress }}</p>
             </el-col>
             <el-col :span="2" class="icon">
               <van-icon name="arrow" />

+ 6 - 0
src/store/index.js

@@ -3,6 +3,7 @@ import Vuex from 'vuex';
 import login from '@frame/store/login';
 import trainplan from '@frame/store/trainplan';
 import classes from '@frame/store/classes';
+import classtype from '@frame/store/classtype';
 import director from '@frame/store/director';
 import lesson from '@frame/store/lesson';
 import dirPlan from '@frame/store/dir-plan';
@@ -26,6 +27,8 @@ import uploadtask from '@frame/store/uploadtask';
 import setting from '@frame/store/setting';
 import notice from '@frame/store/notice';
 import task from '@frame/store/task';
+import groupscore from '@frame/store/groupscore';
+import personalscore from '@frame/store/personalscore';
 import * as ustate from '@frame/store/user/state';
 import * as umutations from '@frame/store/user/mutations';
 import * as dostate from '@frame/store/setting/state';
@@ -45,6 +48,8 @@ export default new Vuex.Store({
   actions: {},
   modules: {
     trainplan,
+    groupscore,
+    personalscore,
     login,
     classes,
     director,
@@ -70,5 +75,6 @@ export default new Vuex.Store({
     setting,
     notice,
     task,
+    classtype,
   },
 });

+ 76 - 13
src/views/class/classStuList.vue

@@ -6,19 +6,27 @@
           <NavBar v-show="navShow" :title="title" :isleftarrow="isleftarrow"> </NavBar>
         </el-col>
         <el-col :span="24" class="main">
-          <headStuList
-            :headStuList="headStuList"
-            :groupStuList="groupStuList"
-            :noGroupStuList="noGroupStuList"
-            :assignShow="assignShow"
-            :assignForm="assignForm"
-            :job_list="job_list"
-            @assign="clickAssign"
-            @outForm="outAssignShow"
-            @onForm="onAssignShow"
-            @handleClose="handleClose"
-            :classid="this.id"
-          ></headStuList>
+          <el-tabs v-model="active" stretch @tab-click="changeTab">
+            <el-tab-pane label="学生名单" name="1">
+              <headStuList
+                :headStuList="headStuList"
+                :groupStuList="groupStuList"
+                :noGroupStuList="noGroupStuList"
+                :assignShow="assignShow"
+                :assignForm="assignForm"
+                :job_list="job_list"
+                @assign="clickAssign"
+                @outForm="outAssignShow"
+                @onForm="onAssignShow"
+                @handleClose="handleClose"
+                :classid="this.id"
+                :groupList="groupList"
+              ></headStuList>
+            </el-tab-pane>
+            <el-tab-pane label="团队成绩" name="2">
+              <group-score :data="groupScoreList" @save="saveScore"></group-score>
+            </el-tab-pane>
+          </el-tabs>
         </el-col>
       </el-col>
     </el-row>
@@ -28,18 +36,23 @@
 <script>
 import NavBar from '@/layout/common/topInfo.vue';
 import headStuList from './info/headStuList.vue';
+import groupScore from './info/groupscore.vue';
 import _ from 'lodash';
 import { mapState, createNamespacedHelpers, mapGetters } from 'vuex';
 const { mapActions: mapStudent } = createNamespacedHelpers('student');
 const { mapActions: mapGroup } = createNamespacedHelpers('group');
+const { mapActions: util } = createNamespacedHelpers('util');
+const { mapActions: groupscore } = createNamespacedHelpers('groupscore');
 export default {
   name: 'classStuList',
   props: {},
   components: {
     NavBar, //头部导航
     headStuList, //学生列表
+    groupScore, //小组分数
   },
   data: () => ({
+    active: '1',
     headStuList: [],
     noGroupStuList: [],
     groupStuList: [],
@@ -87,8 +100,13 @@ export default {
     title: '',
     isleftarrow: '',
     navShow: true,
+    lesson: {},
+    groupList: [],
+    groupScoreInfo: null,
+    groupScoreList: [],
   }),
   created() {
+    this.getOtherList();
     this.searchInfo();
   },
   computed: {
@@ -108,6 +126,8 @@ export default {
     },
   },
   methods: {
+    ...groupscore({ getGScore: 'query', opera: 'opera' }),
+    ...util({ modelFetch: 'fetch' }),
     ...mapStudent({ list: 'query', add: 'create', fet: 'fetch', updates: 'update' }),
     ...mapGroup({ groupQuery: 'query' }),
     // 查询学生列表-并带有职务
@@ -117,6 +137,7 @@ export default {
       const res = await this.list({ classid });
       // 班级所有组
       const groups = await this.groupQuery({ classid });
+      if (this.$checkRes(groups)) this.$set(this, `groupList`, groups.data);
       //班级所有进组的学生id
       let groupstuids = _.map(_.flattenDeep(_.map(groups.data, 'students')), 'stuid');
       let noGroupStuList = res.data.filter(f => !groupstuids.includes(f.id));
@@ -183,6 +204,48 @@ export default {
     handleClose() {
       this.assignShow = false;
     },
+    // 换标签页
+    async changeTab(tab) {
+      const { name } = tab;
+      if (name == '2') this.getAboutScore();
+    },
+    async getAboutScore() {
+      const { lessons } = this.lesson;
+      let r = lessons.find(f => f.teaid == this.user.userid);
+      if (r) {
+        const { date, subid } = r;
+        this.$set(this, `groupScoreInfo`, { date, subid, classid: this.id });
+      }
+      // 查找团队分,如果没查到,就把数据安排进去
+      // TODO查团队分
+      const gscoreres = await this.getGScore({ classid: this.id, subid: this.groupScoreInfo.subid });
+      let list = [];
+      if (gscoreres.errcode == '0') {
+        if (gscoreres.data) list = _.orderBy(gscoreres.data, ['meta.createdAt'], ['asc']);
+      }
+      console.log(list);
+      for (const i of this.groupList) {
+        const r = list.find(f => f.groupid == i._id);
+        if (r) {
+          r.name = i.name;
+          continue;
+        }
+        const { _id: groupid, name, score = 0 } = i;
+        list.push({ groupid, name, score, ...this.groupScoreInfo });
+      }
+      this.$set(this, `groupScoreList`, list);
+    },
+    // 保存团队分数
+    async saveScore(data) {
+      const res = await this.opera(data);
+      if (this.$checkRes(res, '保存成功', res.errmsg || '保存失败')) this.getAboutScore();
+    },
+    async getOtherList() {
+      const res = await this.modelFetch({ model: 'lesson', classid: this.id });
+      if (this.$checkRes(res)) {
+        this.$set(this, `lesson`, res.data);
+      }
+    },
   },
 };
 </script>

+ 58 - 0
src/views/class/info/groupscore.vue

@@ -0,0 +1,58 @@
+<template>
+  <div id="groupscore">
+    <van-notice-bar color="#1989fa" background="#ecf9ff" left-icon="info-o" text="确认修改的分数无误后,点击保存" />
+    <van-field v-for="(group, index) in groupList" :key="index" :label="group.name" v-model="group.score"></van-field>
+    <el-row type="flex" justify="center" align="middle" style="padding:20px 0;">
+      <el-col :span="4">
+        <el-button size="mini" type="primary" @click="toSave">保存</el-button>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+import _ from 'lodash';
+import { mapState, createNamespacedHelpers } from 'vuex';
+export default {
+  name: 'groupscore',
+  props: {
+    data: { type: Array, default: () => [] },
+  },
+  components: {},
+  data: function() {
+    return {
+      groupList: [],
+    };
+  },
+  created() {},
+  methods: {
+    getScore(groupid) {
+      return 0;
+    },
+    toSave() {
+      this.$emit('save', _.cloneDeep(this.groupList));
+    },
+  },
+  computed: {
+    ...mapState(['user']),
+    pageTitle() {
+      return `${this.$route.meta.title}`;
+    },
+  },
+  watch: {
+    data: {
+      immediate: true,
+      deep: true,
+      handler(val) {
+        console.log('in function:');
+        if (val && val.length > 0) this.$set(this, `groupList`, _.cloneDeep(val));
+      },
+    },
+  },
+  metaInfo() {
+    return { title: this.$route.meta.title };
+  },
+};
+</script>
+
+<style lang="less" scoped></style>

+ 8 - 16
src/views/class/info/headStuList.vue

@@ -1,12 +1,5 @@
 <template>
   <div id="headStuList">
-    <!-- <el-row type="flex" justify="center" style="padding:10px 0">
-      <el-col :span="6">
-        <el-button type="primary" plain size="mini" @click.native="$router.push({ path: '/class/achieve', query: { classid: $attrs.classid } })">
-          查看平时成绩
-        </el-button>
-      </el-col>
-    </el-row> -->
     <el-row>
       <el-col :span="24" class="info">
         <el-col v-for="item in groupStuList" :key="item.id">
@@ -41,14 +34,17 @@
         <el-form-item label="寝室号">
           {{ assignForm.bedroom }}
         </el-form-item>
-        <el-form-item label="手机号码">
+        <!-- <el-form-item label="手机号码">
           {{ assignForm.phone }}
-        </el-form-item>
-        <el-form-item label="学生职务">
+        </el-form-item> -->
+        <el-form-item label="学生职务" v-if="user.type != '3'">
           <el-select v-model="assignForm.job" placeholder="请选择学生职务">
             <el-option :disabled="disabled" v-for="(item, index) in job_list" :key="index" :label="item.name" :value="item.name"></el-option>
           </el-select>
         </el-form-item>
+        <el-form-item label="学生职务" v-else>
+          {{ assignForm.job }}
+        </el-form-item>
       </el-form>
       <div slot="footer" class="dialog-footer" v-if="this.user.type === '1'">
         <el-button @click="outAssignShow">取 消</el-button>
@@ -69,6 +65,7 @@ export default {
     assignForm: null,
     assignShow: null,
     job_list: null,
+    groupList: { type: Array, default: () => [] },
   },
   components: {},
   data: () => ({
@@ -80,12 +77,7 @@ export default {
   computed: { ...mapState(['user']) },
   methods: {
     changedisabled() {
-      console.log(this.user.type);
-
-      if (this.user.type === '3') {
-        this.disabled = true;
-        console.log(this.disabled);
-      }
+      if (this.user.type === '3') this.disabled = true;
     },
     clickAssign(item) {
       let id = item.id;

+ 1 - 0
src/views/index.vue

@@ -68,6 +68,7 @@ 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 {