Commit 1fef2ed5 authored by zhengke's avatar zhengke

修改

parent 2adc706f
......@@ -352,6 +352,11 @@
if (this.$route.query.Dept_Id) {
this.msg.DeptId = parseInt(this.$route.query.Dept_Id)
}
if(this.$route.query.YearStr&&this.$route.query.MonthStr){
this.msg.YearStr = this.$route.query.YearStr;
this.msg.MonthStr = this.$route.query.MonthStr
this.myDate = this.msg.YearStr + '-' + this.msg.MonthStr
}
}
this.GetTeacherList();
if (this.$route.query.TeacherId) {
......
......@@ -162,6 +162,79 @@
<span v-else>{{props.row.DateStr}}</span>
</q-td>
</template>
<template v-slot:bottom-row>
<q-tr>
<q-td>
{{lastRow.DateStr}}
</q-td>
<q-td>
{{lastRow.StudentCount}}
</q-td>
<q-td>
{{lastRow.AttendClassHourScore}}
</q-td>
<q-td>
{{lastRow.OnLineInteractiveScore}}
</q-td>
<q-td>
{{lastRow.RenewScore}}
</q-td>
<q-td>
{{lastRow.UpgradeScore}}
</q-td>
<q-td>
{{lastRow.TransScore}}
</q-td>
<q-td>
{{lastRow.TrialSpeakScore}}
</q-td>
<q-td>
{{lastRow.TruancyScore}}
</q-td>
<q-td>
{{lastRow.WithdrawsScore}}
</q-td>
<q-td>
{{lastRow.ComplaintScore}}
</q-td>
<q-td>
{{lastRow.TeacherBeLateScore}}
</q-td>
<q-td>
{{lastRow.N5ClassHoursScore}}
</q-td>
<q-td>
{{lastRow.N4ClassHoursScore}}
</q-td>
<q-td>
{{lastRow.N3ClassHoursScore}}
</q-td>
<q-td>
{{lastRow.N2ClassHoursScore}}
</q-td>
<q-td>
{{lastRow.N1ClassHoursScore}}
</q-td>
<q-td>
{{lastRow.MiniAppPractiseScore}}
</q-td>
<q-td>
{{lastRow.MiniAppTimeScore}}
</q-td>
<q-td>
{{lastRow.ActivityNum}}
</q-td>
<q-td>
{{lastRow.TotalScore}}
</q-td>
<q-td>
{{lastRow.AvgScore}}
</q-td>
<q-td>
{{lastRow.ScoreGap}}
</q-td>
</q-tr>
</template>
<template v-slot:bottom>
</template>
......@@ -366,6 +439,7 @@
Name: "韩语"
},
],
lastRow:{}
}
},
created() {
......@@ -408,6 +482,7 @@
this.loading = false;
if (res.Code == 1) {
this.dataList = res.Data;
this.lastRow = this.dataList.pop();
}
})
},
......@@ -415,7 +490,9 @@
goTotal(obj){
this.OpenNewUrl('/teacher/dayStatic', {
TeacherId: obj.TeacherId,
Dept_Id: obj.Dept_Id
Dept_Id: obj.Dept_Id,
YearStr: this.msg.YearStr,
MonthStr: this.msg.MonthStr
});
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment