|
@@ -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>
|