|
@@ -33,7 +33,7 @@
|
|
|
v-model="filters.OptionsValue"
|
|
|
@change="InfoWatch"
|
|
|
slot="prepend"
|
|
|
- placeholder="全部"
|
|
|
+ placeholder="选年级"
|
|
|
maxlength="20"
|
|
|
>
|
|
|
<el-option
|
|
@@ -47,7 +47,7 @@
|
|
|
v-model="filters.gradesValue"
|
|
|
@change="InfoWatch"
|
|
|
slot="prepend"
|
|
|
- placeholder="全部"
|
|
|
+ placeholder="选科目"
|
|
|
maxlength="20"
|
|
|
>
|
|
|
<el-option
|
|
@@ -87,7 +87,7 @@
|
|
|
<div v-if="v.status == '1'" class="tr-first">
|
|
|
<div>
|
|
|
<i
|
|
|
- :class="[isDown && isDownindex === k?'el-icon-caret-bottom':'el-icon-caret-right']"
|
|
|
+ :class="[isDown&&isDownindex === k?'el-icon-caret-bottom':'el-icon-caret-right']"
|
|
|
@click="dropDown(v,k)"
|
|
|
></i>
|
|
|
<img :src="BASE_URL + v.imgUrl" alt class="table-img" v-if="v.imgUrl" @click="isShow(v,3)">
|
|
@@ -135,7 +135,7 @@
|
|
|
<div class="tr-setNo" v-if="isDownindex === k && isDown && TeacherHomeworkList.list.length == 0">
|
|
|
暂无数据!
|
|
|
</div>
|
|
|
- <!--&& isDown-->
|
|
|
+ <!--&& isDownindex === k && isDown-->
|
|
|
<div v-if="isDownindex === k && isDown">
|
|
|
<div class="tr-second" v-for="(v, k) of TeacherHomeworkList.list" :key="k">
|
|
|
<div class="tr-seconds" style="width:16px;">{{k+1}}</div>
|
|
@@ -749,6 +749,7 @@ export default {
|
|
|
NoAllotManagerModel:false, //所有未批改可分配老师列表弹框
|
|
|
ModelStudet: false, //学生详情弹框
|
|
|
isDown: false,
|
|
|
+ teachList:[],
|
|
|
options: [
|
|
|
{
|
|
|
value: "0",
|
|
@@ -768,7 +769,7 @@ export default {
|
|
|
{
|
|
|
value: "3",
|
|
|
label: "全部",
|
|
|
- str:''
|
|
|
+ // str:'全部'
|
|
|
}
|
|
|
],
|
|
|
grades: [
|
|
@@ -785,12 +786,12 @@ export default {
|
|
|
{
|
|
|
value: "2",
|
|
|
label: "英语",
|
|
|
- str:"数学"
|
|
|
+ str:"英语"
|
|
|
},
|
|
|
{
|
|
|
value: "3",
|
|
|
label: "全部",
|
|
|
- str:""
|
|
|
+ // str:""
|
|
|
}
|
|
|
],
|
|
|
ItemList: [
|
|
@@ -909,6 +910,12 @@ export default {
|
|
|
...mapActions(["setUser"]),
|
|
|
// 点击下拉
|
|
|
dropDown(v, k) {
|
|
|
+ // this.teachList.list = (res => {
|
|
|
+ // for (let i in this.teachList) {
|
|
|
+ // this.teachList[i].isShow = false;
|
|
|
+ // }
|
|
|
+ // this.teachList[k].isShow = !this.teachList[k].isShow;
|
|
|
+ // console.log(this.teachList[k].isShow)
|
|
|
this.isDown = true;
|
|
|
this.isDownindex = k;
|
|
|
this.TeacherHomework(v);
|
|
@@ -939,6 +946,27 @@ export default {
|
|
|
pageSize: this.filters.pageSize,
|
|
|
managerId: this.managerId || ""
|
|
|
});
|
|
|
+ // this.monitorTeacherList.list = (res => {
|
|
|
+ // const d = [];
|
|
|
+ // for (let i in res) {
|
|
|
+ // d.push( {
|
|
|
+ // isShow:false,
|
|
|
+ // bannedTime:res[i].bannedTime,
|
|
|
+ // imgUrl:res[i].imgUrl,
|
|
|
+ // maxWaitTime:res[i].maxWaitTime,
|
|
|
+ // name:res[i].name,
|
|
|
+ // role:res[i].role,
|
|
|
+ // status:res[i].status,
|
|
|
+ // respSpeed:res[i].respSpeed,
|
|
|
+ // teacherId:res[i].teacherId,
|
|
|
+ // totalCorrectTime:res[i].totalCorrectTime,
|
|
|
+ // waitCount:res[i].waitCount,
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // return d
|
|
|
+ // })(this.monitorTeacherList.list)
|
|
|
+ // this.teachList = this.monitorTeacherList.list;
|
|
|
+ // console.log(this.teachList)
|
|
|
},
|
|
|
// 获取校区管理员当天数据
|
|
|
async InfoWatchDay() {
|