|
@@ -6,6 +6,12 @@
|
|
|
<NavBar v-show="navShow" :title="title" :isleftarrow="isleftarrow"> </NavBar>
|
|
|
</van-col>
|
|
|
<van-col class="main" :span="24" v-if="display === 'list'">
|
|
|
+ <el-col :span="24" class="total">
|
|
|
+ <p>
|
|
|
+ 班级人数:<span>{{ stuTotal }}</span
|
|
|
+ >作业人数:<span>{{ tasktotal }}</span>
|
|
|
+ </p>
|
|
|
+ </el-col>
|
|
|
<van-col :span="24" class="taskList" v-for="(item, index) in taskList" :key="index">
|
|
|
<van-cell is-link @click="toDetail(item)">
|
|
|
<!-- 使用 title 插槽来自定义标题 -->
|
|
@@ -37,8 +43,8 @@
|
|
|
<template v-else-if="tasktype === 'pic'">
|
|
|
<van-image :src="picurl"></van-image>
|
|
|
</template>
|
|
|
- <van-field v-model="score" type="number" label="作业成绩:" placeholder="请输入学生成绩" />
|
|
|
- <van-button round type="info" @click="onSubmit">提交成绩</van-button>
|
|
|
+ <van-field v-model="score" type="number" label="作业成绩:" placeholder="请输入学生成绩" v-if="user.type == '3'" />
|
|
|
+ <van-button round type="info" @click="onSubmit" v-if="user.type == '3'">提交成绩</van-button>
|
|
|
</van-col>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
@@ -50,6 +56,7 @@ import NavBar from '@/layout/common/topInfo.vue';
|
|
|
import { mapState, createNamespacedHelpers, mapGetters } from 'vuex';
|
|
|
const { mapActions: uploadtask } = createNamespacedHelpers('uploadtask');
|
|
|
const { mapActions: task } = createNamespacedHelpers('task');
|
|
|
+const { mapActions: student } = createNamespacedHelpers('student');
|
|
|
export default {
|
|
|
name: 'stutask',
|
|
|
props: {},
|
|
@@ -59,6 +66,8 @@ export default {
|
|
|
isleftarrow: '',
|
|
|
navShow: true,
|
|
|
taskList: [],
|
|
|
+ tasktotal: 0,
|
|
|
+ stuTotal: 0,
|
|
|
display: 'list',
|
|
|
task: {},
|
|
|
tasktype: '',
|
|
@@ -68,8 +77,10 @@ export default {
|
|
|
}),
|
|
|
created() {
|
|
|
this.search();
|
|
|
+ this.searchstu();
|
|
|
},
|
|
|
computed: {
|
|
|
+ ...mapState(['user', 'classid']),
|
|
|
id() {
|
|
|
return this.$route.query.id;
|
|
|
},
|
|
@@ -77,9 +88,11 @@ export default {
|
|
|
methods: {
|
|
|
...uploadtask(['fetch', 'query', 'update']),
|
|
|
...task({ taskInfo: 'fetch' }),
|
|
|
+ ...student({ stuQuery: 'query' }),
|
|
|
async search() {
|
|
|
const stutasks = await this.query({ lessonid: this.id });
|
|
|
this.$set(this, `taskList`, stutasks.data);
|
|
|
+ this.$set(this, `tasktotal`, stutasks.total);
|
|
|
},
|
|
|
async toDetail(item) {
|
|
|
this.$set(this, `uploadtask`, item);
|
|
@@ -94,7 +107,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
this.$set(this, `task`, task.data);
|
|
|
- console.log(task.data);
|
|
|
} else if (item.picurl) {
|
|
|
this.tasktype = 'pic';
|
|
|
this.picurl = item.picurl;
|
|
@@ -111,6 +123,11 @@ export default {
|
|
|
this.display = 'list';
|
|
|
}
|
|
|
},
|
|
|
+ // 查班级学生
|
|
|
+ async searchstu() {
|
|
|
+ let res = await this.stuQuery({ classid: this.classid });
|
|
|
+ if (res.errcode == 0) this.$set(this, `stuTotal`, res.total);
|
|
|
+ },
|
|
|
},
|
|
|
mounted() {
|
|
|
this.title = this.$route.meta.title;
|
|
@@ -147,4 +164,13 @@ export default {
|
|
|
display: -webkit-inline-box;
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
+.total {
|
|
|
+ text-align: center;
|
|
|
+ p {
|
|
|
+ span {
|
|
|
+ color: #ff0000;
|
|
|
+ margin: 0 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|