diff --git a/app/controllers/courses_controller.rb b/app/controllers/courses_controller.rb
index 54223a155..3b6273465 100644
--- a/app/controllers/courses_controller.rb
+++ b/app/controllers/courses_controller.rb
@@ -244,6 +244,7 @@ class CoursesController < ApplicationController
@rank = user_ids.index(current_user.id).to_i + 1
@course_members = @course_members.select{|member| member.user_id == current_user.id}
else
+ @all_count = @course_members.size
@course_members = paginate @course_members
end
end
diff --git a/app/helpers/export_helper.rb b/app/helpers/export_helper.rb
index 115bdb951..31e1ecf45 100644
--- a/app/helpers/export_helper.rb
+++ b/app/helpers/export_helper.rb
@@ -78,7 +78,6 @@ module ExportHelper
end
shixun_score += shixun_score_array.sum
shixun_score_array.push(shixun_score) #shixun_score_array的最后一行为总分
- user_work_scores += user_info_array + shixun_score_array #单个用户的实训作业得分信息
#普通作业
if common_homeworks.size > 0
@@ -94,7 +93,6 @@ module ExportHelper
end
common_score += common_score_array.sum
common_score_array.push(common_score) #shixun_score_array的最后一行为总分
- user_work_scores += common_score_array #单个用户的普通作业得分信息
#分组作业
if group_homeworks.size > 0
@@ -110,7 +108,6 @@ module ExportHelper
end
group_score += group_score_array.sum
group_score_array.push(group_score) #shixun_score_array的最后一行为总分
- user_work_scores += group_score_array #单个用户的分组作业得分信息
#毕设作业
if tasks.size > 0
@@ -126,7 +123,6 @@ module ExportHelper
end
task_score += task_score_array.sum
task_score_array.push(task_score)
- user_work_scores += task_score_array #单个用户的分组作业得分信息
#试卷
if exercises.size > 0
@@ -143,9 +139,9 @@ module ExportHelper
exercise_score += exercise_score_array.sum
exercise_score_array.push(exercise_score)
- user_work_scores += exercise_score_array #单个用户的分组作业得分信息
total_user_scores = shixun_score + common_score + group_score + task_score + exercise_score
- user_work_scores.push(total_user_scores) #个人的行内容添加总成绩
+ user_info_array.push(total_user_scores) #个人的行内容添加总成绩
+ user_work_scores += user_info_array + shixun_score_array + common_score_array + group_score_array + task_score_array + exercise_score_array
total_user_score_array.push(user_work_scores) # 全部成员的集合
end
@@ -154,7 +150,7 @@ module ExportHelper
course_user_score_title = "学生总成绩"
score_title_cells = shixun_titles + common_titles + group_titles + task_titles + exercise_titles
score_title_counts = [shixun_titles.count,common_titles.count,group_titles.count,task_titles.count,exercise_titles.count]
- score_cell_head = %w(序号 真实姓名 登录名 邮箱 学号 学校 分班) + score_title_cells + ["个人总成绩"]
+ score_cell_head = %w(序号 真实姓名 登录名 邮箱 学号 学校 分班 个人总成绩) + score_title_cells
@course_user_scores = [course_user_score_title,score_cell_head,score_title_counts,total_user_score_array]
#作业的全部集合
diff --git a/app/models/searchable/course.rb b/app/models/searchable/course.rb
index 794dec0e2..a82496ad8 100644
--- a/app/models/searchable/course.rb
+++ b/app/models/searchable/course.rb
@@ -25,6 +25,7 @@ module Searchable::Course
author_school_name: teacher&.school_name,
visits_count: visits,
members_count: course_members_count,
+ tasks_count: homework_commons_count + exercises_count + polls_count,
is_public: is_public == 1,
first_category_url: ApplicationController.helpers.module_url(none_hidden_course_modules.first, self)
}
diff --git a/app/models/searchable/shixun.rb b/app/models/searchable/shixun.rb
index 41bc94b04..3229f278f 100644
--- a/app/models/searchable/shixun.rb
+++ b/app/models/searchable/shixun.rb
@@ -51,6 +51,8 @@ module Searchable::Shixun
visits_count: visits,
challenges_count: challenges_count,
study_count: myshixuns_count,
+ star: averge_star,
+ level: shixun_level
}
end
diff --git a/app/views/courses/export_member_scores_excel.xlsx.axlsx b/app/views/courses/export_member_scores_excel.xlsx.axlsx
index a57211d44..20cd65b6f 100644
--- a/app/views/courses/export_member_scores_excel.xlsx.axlsx
+++ b/app/views/courses/export_member_scores_excel.xlsx.axlsx
@@ -22,18 +22,19 @@ wb.styles do |s|
sheet.merge_cells("E1:E2")
sheet.merge_cells("F1:F2")
sheet.merge_cells("G1:G2")
- sheet.merge_cells (Axlsx::cell_r(sheet_length-1,0) + ':' + Axlsx::cell_r(sheet_length-1,1)) #最后一行的合并
+ sheet.merge_cells("H1:H2")
+ # sheet.merge_cells (Axlsx::cell_r(sheet_length-1,0) + ':' + Axlsx::cell_r(sheet_length-1,1)) #最后一行的合并
sheet_first = sheet.rows.first #第一行
sheet_second = sheet.rows.second #第二行
work_head_title = %w(实训作业 普通作业 分组作业 毕设任务 试卷)
(0..(sheet_length-1)).each do |i|
- if i <= 6 || i == sheet_length-1
+ if i <= 7
sheet_first.cells[i].value = sheet_title[i]
else
sheet_second.cells[i].value = sheet_title[i]
end
end
- st_col = 7
+ st_col = 8
sheet_title_counts.each_with_index do |c,index|
end_col = (st_col + c - 1)
sheet.merge_cells sheet_first.cells[(st_col..end_col)]
diff --git a/app/views/courses/work_score.json.jbuilder b/app/views/courses/work_score.json.jbuilder
index e845b647a..2d7e30bb3 100644
--- a/app/views/courses/work_score.json.jbuilder
+++ b/app/views/courses/work_score.json.jbuilder
@@ -10,4 +10,5 @@ json.course_members @course_members.each do |member|
json.graduation_score member.graduation_score
json.total_score member.score
json.rank @rank if @user_course_identity == Course::STUDENT
-end
\ No newline at end of file
+end
+json.all_count @all_count
\ No newline at end of file
diff --git a/app/views/weapps/searchs/index.json.jbuilder b/app/views/weapps/searchs/index.json.jbuilder
index 25a1a6a34..11855fb77 100644
--- a/app/views/weapps/searchs/index.json.jbuilder
+++ b/app/views/weapps/searchs/index.json.jbuilder
@@ -5,5 +5,10 @@ json.results do
json.type obj.class.name.downcase
json.title highlights.delete(:name)&.join('...') || obj.searchable_title
+ json.cover url_to_avatar(obj)
+
+ if obj.is_a?(Course)
+ json.author_avatar_url url_to_avatar(obj.teacher)
+ end
end
end
\ No newline at end of file
diff --git a/public/react/config/webpack.config.dev.js b/public/react/config/webpack.config.dev.js
index e96f22663..63324c35f 100644
--- a/public/react/config/webpack.config.dev.js
+++ b/public/react/config/webpack.config.dev.js
@@ -32,7 +32,7 @@ module.exports = {
// See the discussion in https://github.com/facebookincubator/create-react-app/issues/343.s
// devtool: "cheap-module-eval-source-map",
// 开启调试
- devtool: "source-map", // 开启调试
+ //devtool: "source-map", // 开启调试
// These are the "entry points" to our application.
// This means they will be the "root" imports that are included in JS bundle.
// The first two entry points enable "hot" CSS and auto-refreshes for JS.
diff --git a/public/react/package.json b/public/react/package.json
index ac239dd0f..5bc10f627 100644
--- a/public/react/package.json
+++ b/public/react/package.json
@@ -16,6 +16,7 @@
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-react-app": "^3.1.1",
"babel-runtime": "6.26.0",
+ "bizcharts": "^3.5.5",
"bundle-loader": "^0.5.6",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
diff --git a/public/react/src/modules/courses/exercise/Exercisestatisticalresult.js b/public/react/src/modules/courses/exercise/Exercisestatisticalresult.js
index e6bd595c5..1dcab1476 100644
--- a/public/react/src/modules/courses/exercise/Exercisestatisticalresult.js
+++ b/public/react/src/modules/courses/exercise/Exercisestatisticalresult.js
@@ -96,10 +96,16 @@ class Exercisestatisticalresult extends Component {
exercise_group_id:checkedValues
})
}
-
-
this.updatefun(sort,checkedValues,page,limit)
}
+
+ alldatalist=()=>{
+ let{sort,page,limit}=this.state;
+ this.setState({
+ exercise_group_id:[]
+ })
+ this.updatefun(sort,[],page,limit)
+ }
PaginationCourse=(pageNumber)=>{
let{sort,exercise_group_id,limit}=this.state;
@@ -136,7 +142,7 @@ class Exercisestatisticalresult extends Component {
分班情况:
-
+
this.funtaskstatustwo(e,data&&data.course_groups)} value={this.state.exercise_group_id} style={{width:'87%',paddingTop: '4px'}}>
{ data&&data.course_groups.map((item, key) => {
diff --git a/public/react/src/modules/courses/shixunHomework/ShixunStudentWork.js b/public/react/src/modules/courses/shixunHomework/ShixunStudentWork.js
index 0c0591acf..a89022ee6 100644
--- a/public/react/src/modules/courses/shixunHomework/ShixunStudentWork.js
+++ b/public/react/src/modules/courses/shixunHomework/ShixunStudentWork.js
@@ -704,6 +704,7 @@ class ShixunStudentWork extends Component {
title: '序号',
dataIndex: 'number',
key: 'number',
+ width: '176px',
render: (text, record) => (
{record.number}
@@ -714,6 +715,7 @@ class ShixunStudentWork extends Component {
title: '姓名',
dataIndex: 'name',
key: 'name',
+ width: '218px',
render: (text, record) => (
{record.name}
@@ -726,6 +728,7 @@ class ShixunStudentWork extends Component {
key: 'stduynumber',
sorter: true,
sortDirections: sortDirections,
+ width: '351px',
render: (text, record) => (
{record.stduynumber}
@@ -739,6 +742,7 @@ class ShixunStudentWork extends Component {
sorter: true,
defaultSortOrder: 'descend',
sortDirections: sortDirections,
+ width: '277',
render: (text, record) => (
=90?'#FF6800':"#747A7F", "text-align": "center"}}>{isNaN(record.classroom)?"--":record.classroom}%
@@ -749,6 +753,7 @@ class ShixunStudentWork extends Component {
title: '操作',
dataIndex: 'operating',
key: 'operating',
+ width: '178px',
render: (text, record) => (
this.Viewstudenttraininginformation("/courses/"+this.props.match.params.coursesId+"/"+this.state.shixuntypes+"/"+this.props.match.params.homeworkid+"/review_detail/"+record.operating)} >查看
diff --git a/public/react/src/modules/courses/statistics/Dropdownbox.js b/public/react/src/modules/courses/statistics/Dropdownbox.js
new file mode 100644
index 000000000..548715993
--- /dev/null
+++ b/public/react/src/modules/courses/statistics/Dropdownbox.js
@@ -0,0 +1,123 @@
+import React,{ Component } from "react";
+import {Menu, Dropdown, Icon,Input,Checkbox} from "antd";
+import {getImageUrl} from 'educoder';
+const { Search } = Input;
+class Dropdownbox extends Component{
+ constructor(props){
+ super(props);
+ this.state={
+ activeKey:'1',
+ visible: false,
+ onSearchvalue:undefined,
+ checkedValues:[]
+ }
+ }
+
+ componentDidMount() {
+ let {group_ids}=this.props;
+ if(group_ids){
+ this.setState({
+ checkedValues:group_ids
+ })
+ }
+ }
+ componentDidUpdate=(prevProps)=>{
+ if(prevProps!=this.props){
+ let {group_ids}=this.props;
+ if(group_ids){
+ this.setState({
+ checkedValues:group_ids
+ })
+ }
+ }
+ }
+ SaveChange=()=>{
+ this.props.postwork_scoredata(this.state.checkedValues)
+ }
+
+
+ handleVisibleChange=flag=>{
+ this.setState({ visible: flag });
+ };
+
+ CheckboxonChange=(checkedValues)=>{
+ this.setState({
+ checkedValues:checkedValues
+ })
+ }
+
+ unCheckboxonChange=()=>{
+ this.setState({
+ checkedValues:[],
+ onSearchvalue:undefined
+ })
+ }
+
+ onSearch=(value)=>{
+ this.setState({
+ onSearchvalue:value
+ })
+ }
+
+ onSearchonChange=(e)=>{
+ this.setState({
+ onSearchvalue:e.target.value
+ })
+ }
+
+ render(){
+ let {course_groups}=this.props;
+
+ const menu = (
+ this.CheckboxonChange(checkedValues)}>
+
+
+ );
+
+ return(
+
+
+
+ 分班
+
+
+
+ )
+ }
+}
+export default Dropdownbox;
diff --git a/public/react/src/modules/courses/statistics/Dynamiclist.js b/public/react/src/modules/courses/statistics/Dynamiclist.js
new file mode 100644
index 000000000..0ea6eac1b
--- /dev/null
+++ b/public/react/src/modules/courses/statistics/Dynamiclist.js
@@ -0,0 +1,90 @@
+import React,{ Component } from "react";
+import {Row, Col,Popover,Button,Icon} from "antd";
+import {
+ G2,
+ Chart,
+ Geom,
+ Axis,
+ Tooltip,
+ Coord,
+ Label,
+ Legend,
+ View,
+ Guide,
+ Shape,
+ Facet,
+ Util
+} from "bizcharts";
+
+class Dynamiclist extends Component{
+ constructor(props){
+ super(props);
+ this.state={
+
+ }
+ }
+
+
+ render(){
+ const data = []
+ let {course_members}=this.props;
+ if(course_members){
+ if(course_members.length>0){
+ course_members.map((item,key)=>{
+ data.push({'name':item.user_name,'活跃度':item.total_score})
+ })
+ }
+ }
+
+ const content = (
+
+
+ 作业完成数(*10)
+
+
+ 试卷完成数(*10)
+
+
+ 问卷完成数(*7)
+
+
+ 资源发布数(*5)
+
+
+ 帖子发布数(*2)
+
+
+ 帖子回复数(*1)
+
+
+ 作业回复数(*1)
+
+
+ );
+ return(
+
+
+ Top 10
+
+ 计算规则
+
+
+
+
+
+ {/*scale={cols}*/}
+
+
+
+
+
+
+
+ )
+ }
+}
+export default Dynamiclist;
diff --git a/public/react/src/modules/courses/statistics/Statistics.css b/public/react/src/modules/courses/statistics/Statistics.css
index 686abd52e..cfae65597 100644
--- a/public/react/src/modules/courses/statistics/Statistics.css
+++ b/public/react/src/modules/courses/statistics/Statistics.css
@@ -63,5 +63,65 @@
text-align: center;
line-height: 61px;
font-size: 16px;
- color: rgba(80,145,255,1);
+}
+
+.Statisticsli{
+ clear: both;
+ margin: 0;
+ padding: 5px 12px;
+ color: rgba(0, 0, 0, 0.65);
+ font-weight: normal;
+ font-size: 14px;
+ line-height: 22px;
+ white-space: nowrap;
+ cursor: pointer;
+ -webkit-transition: all 0.3s;
+ -o-transition: all 0.3s;
+ transition: all 0.3s;
+}
+
+.StatisticsMenubox{
+ position: relative;
+ margin: 0;
+ padding: 4px 0;
+ text-align: left;
+ list-style-type: none;
+ background-color: #fff;
+ background-clip: padding-box;
+ border-radius: 4px;
+ outline: none;
+ -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.15);
+ box-shadow: 0 2px 8px rgba(0,0,0,0.15);
+ -webkit-transform: translate3d(0, 0, 0);
+}
+
+.Statisticslibox li label{
+ width: 200px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+.Statisticslibox .ant-menu-item{
+ height: 20px;
+ line-height: 20px;
+ text-overflow: clip;
+}
+
+.top10s{
+ font-size: 16px;
+ font-weight: bold;
+ color: rgba(51,51,51,1);
+}
+
+.Statisticsliboxjsgz{
+ font-size:12px;
+ color:rgba(51,51,51,1);
+ text-align: right;
+}
+
+.Statisticscircle p{
+ height: 30px;
+ font-size: 12px;
+ color: rgba(153,153,153,1);
+ line-height: 30px;
}
\ No newline at end of file
diff --git a/public/react/src/modules/courses/statistics/Statistics.js b/public/react/src/modules/courses/statistics/Statistics.js
index c4d5ddfa6..86feed447 100644
--- a/public/react/src/modules/courses/statistics/Statistics.js
+++ b/public/react/src/modules/courses/statistics/Statistics.js
@@ -1,8 +1,9 @@
import React,{ Component } from "react";
-import {Table, Pagination,Tooltip,Spin, Row, Col ,Tabs} from "antd";
-import { WordsBtn,on, off, trigger ,getImageUrl} from 'educoder';
-import {BrowserRouter as Router,Route,Switch,Link} from 'react-router-dom';
+import {Table, Pagination,Tooltip,Spin, Row, Col ,Checkbox,Tabs,Menu, Dropdown, Icon,Input} from "antd";
+import { WordsBtn,on, off, trigger ,getImageUrl,sortDirections} from 'educoder';
import axios from'axios';
+import Dropdownbox from './Dropdownbox';
+import Dynamiclist from './Dynamiclist';
import './Statistics.css';
const { TabPane } = Tabs;
class Statistics extends Component{
@@ -18,20 +19,29 @@ class Statistics extends Component{
bomisSpin:true,
sort:'desc',
course_groups:[],
- page:1
+ page:1,
+ all_count:null,
+ activeKey:'1',
+ visible: false,
+ group_ids:[],
+ course_members:[]
}
}
componentDidMount() {
- let {page,group_ids,sort}=this.state;
+ this.getdatas()
+ }
+
+ getdatas=()=>{
+ let {page,group_ids,sort}=this.state;
let courseId=this.props.match.params.coursesId;
let url=`/courses/${courseId}/statistics.json`;
axios.get(url).then((result) => {
if (result) {
- this.setState({
- data:result.data.top_scores,
- topisSpin:false
- })
+ this.setState({
+ data:result.data.top_scores,
+ topisSpin:false
+ })
}
}).catch((error) => {
console.log(error);
@@ -39,8 +49,6 @@ class Statistics extends Component{
topisSpin:false,
})
})
-
-
let courseurl=`/courses/${courseId}/all_course_groups.json`;
axios.get(courseurl).then((result) => {
if (result) {
@@ -57,11 +65,43 @@ class Statistics extends Component{
}
}).catch((error) => {
console.log(error);
+ })
+ }
+
+ getDynamiclistdatas=(group_ids)=>{
+ let courseId=this.props.match.params.coursesId;
+ let url=`/courses/${courseId}/act_score.json`;
+ let data={
+ group_ids:group_ids,
+ }
+ axios.get(url,{params:
+ data
+ }).then((result) => {
+ if (result) {
+ this.setState({
+ course_members:result.data.course_members,
+ bomisSpin:false
+ })
+ }
+ }).catch((error) => {
+ console.log(error);
+ this.setState({
+ bomisSpin:false,
+ })
})
}
getwork_scoredata=(page,group_ids,sort)=>{
+ let {activeKey}=this.state;
+ this.setState({
+ page:page,
+ sort:sort,
+ group_ids:group_ids,
+ bomisSpin:true,
+ })
+
+ if(activeKey==='1'){
let courseId=this.props.match.params.coursesId;
let url=`/courses/${courseId}/work_score.json`;
let data={
@@ -76,6 +116,7 @@ class Statistics extends Component{
if (result) {
this.setState({
bomdata:result.data.course_members,
+ all_count:result.data.all_count,
bomisSpin:false
})
}
@@ -85,63 +126,198 @@ class Statistics extends Component{
bomisSpin:false,
})
})
+ }else{
+ this.getDynamiclistdatas(group_ids)
+ }
+
}
- callback=(key)=>{
- console.log(key);
+ activeKey=(key)=>{
+ if(key==="1"){
+ let {page,group_ids,sort}=this.state;
+ // this.getdatas()
+ this.getwork_scoredata(page,group_ids,sort)
+ }else{
+ let{group_ids}=this.state;
+ this.getDynamiclistdatas(group_ids)
+ }
+ this.setState({
+ activeKey:key
+ })
}
+
+ PaginationCourse=(pageNumber)=>{
+ let {group_ids,sort}=this.state;
+
+ this.getwork_scoredata(pageNumber,group_ids,sort);
+ }
+
+ derivefun=(url)=>{
+ let{group_ids}=this.state;
+ let data={
+ group_id:group_ids
+ }
+ axios.get(url,{params:
+ data
+ }).then((response)=>{
+ if(response === undefined){
+ return
+ }
+ if(response.data.status&&response.data.status===-1){
+ this.props.showNotification(response.data.message);
+ }else if(response.data.status&&response.data.status===-2){
+ // if(response.data.message === "100"){
+ // // 已超出文件导出的上限数量(100 ),建议:
+ //
+ // this.setState({
+ // DownloadType:true,
+ // DownloadMessageval:100
+ // })
+ // }else {
+ // //因附件资料超过500M
+ // this.setState({
+ // DownloadType:true,
+ // DownloadMessageval:500
+ // })
+ // }
+ this.props.showNotification(response.data.message);
+ }else {
+ // this.props.showNotification(`正在下载中`);
+ // window.open("/api"+url, '_blank');
+ this.props.slowDownload(url);
+ }
+ }).catch((error) => {
+ console.log(error)
+ });
+ }
+
+
+ // 筛选
+ handleTableChange =(pagination, filters, data)=>{
+ let order=data.order;
+ let {page,group_ids}=this.state;
+ if(order==="descend"){
+ this.getwork_scoredata(page,group_ids,'desc')
+ }else{
+ this.getwork_scoredata(page,group_ids,'asc')
+ }
+
+ }
+
render(){
- let {nd1,nd2,nd3,data,bomdata,course_groups}=this.state;
- let course_grouptype=false
- if(this.props&&this.props.course_modules!=undefined){
+ let {nd1,nd2,nd3,data,bomdata}=this.state;
+
+ const columns = [
+ {
+ title: this.props.isAdmin()===true?'序号':'排名',
+ dataIndex: 'index',
+ render: (text, record,index) => {
+ return this.props.isAdmin()===true?(this.state.page - 1) * 20 + index + 1:record.rank
+ }
+ },
+ {
+ title: '姓名',
+ dataIndex:'user_name',
+ render: (text, record) => (
+ {record.user_name}
+ )
+ },
+ {
+ title: '分班',
+ dataIndex: 'course_group',
+ render: (text, record) => (
+ {record.course_group}
+ )
+ },
+ {
+ title: '实训作业',
+ dataIndex: 'practice_score',
+ render: (text, record) => (
+ {record.practice_score.toFixed(2)}
+ )
+ },
+ {
+ title: '普通作业',
+ dataIndex: 'common_score',
+ render: (text, record) => (
+ {record.common_score.toFixed(2)}
+ )
+ },
+ {
+ title: '分组作业',
+ dataIndex: 'group_score',
+ render: (text, record) => (
+ {record.group_score.toFixed(2)}
+ )
+ },
+ {
+ title: '毕设任务',
+ dataIndex: 'graduation_score',
+ render: (text, record) => (
+ {record.graduation_score.toFixed(2)}
+ )
+ },
+ {
+ title: '试卷',
+ dataIndex: 'exercise_score',
+ render: (text, record) => (
+ {record.exercise_score}
+ )
+ },
+ {
+ title: '总成绩',
+ dataIndex: 'total_score',
+ sorter: this.props.isAdmin()===true?true:false,
+ defaultSortOrder: 'descend',
+ sortDirections: sortDirections,
+ render: (text, record) => (
+ {record.total_score.toFixed(2)}
+ )
+ },
+ ];
+
+ let course_grouptype=false;
+ if(this.props&&this.props.course_modules!=undefined){
{this.props&&this.props.course_modules.map((item,key)=>{
if(item.type==="course_group"){
course_grouptype=true
}
})}
}
-
- // const columns = [
- // {
- // title: 'Name',
- // dataIndex: 'name',
- // sorter: true,
- // render: name => `${name.first} ${name.last}`,
- // width: '20%',
- // },
- // {
- // title: 'Gender',
- // dataIndex: 'gender',
- // filters: course_groups,
- // width: '20%',
- // },
- // {
- // title: 'Email',
- // dataIndex: 'email',
- // },
- // ];
-
-
- // console.log(bomdata)
-
-
- //common_score: 0
- // course_group: "威风威风急急急"
- // exercise_score: "0.0"
- // graduation_score: 0
- // group_score: 0
- // practice_score: 3232
- // total_score: 3232
- // user_login: "p40793521"
- // user_name: "李明霞"
-
-
+ if(course_grouptype===false){
+ columns.some((item,key)=> {
+ if (item.title === "分班") {
+ columns.splice(key, 1)
+ return true
+ }
+ }
+ )
+ }
+ // console.log(this.props.isAdmin)
+
+
+ // "user_login": "p94602358",
+ // "user_name": "卿前程",
+ // "course_group": "电气工程1805", // 分班
+ // "common_score": 0.0, // 普通作业
+ // "group_score": 0.0, // 分组作业
+ // "practice_score": 747.1000061035156, // 实训作业
+ // "exercise_score": 0.0, // 试卷成绩
+ // "graduation_score": 0.0, // 毕设成绩
+ // "total_score": 747.1000061035156, // 总成绩
+ // "rank": 1 // 排名,学生身份才传
+ const operations =
+ this.getwork_scoredata(1,group_idss,'desc')}
+ />
+ this.derivefun(`/courses/${this.props.match.params.coursesId}/export_member_scores_excel.xlsx`)}>导出
+ ;
return(
-
-
-
+
@@ -301,22 +477,53 @@ class Statistics extends Component{
-
-
- {/**/}
+
+
+
+
- Content of Tab Pane 2
+
-
+ {this.state.all_count===undefined||this.state.all_count===null||this.state.activeKey==="2"?'':this.state.all_count >20&&this.props.isAdmin()===true?:""}
+
)
}