|
|
@ -92,8 +92,16 @@ class CommonWorkPost extends Component{
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
axios.get(url).then((response)=>{
|
|
|
|
axios.get(url).then((response)=>{
|
|
|
|
if(response.data.course_id){
|
|
|
|
if(response.data.course_id){
|
|
|
|
|
|
|
|
const mine = {
|
|
|
|
|
|
|
|
user_id: response.data.user_id,
|
|
|
|
|
|
|
|
user_name: response.data.user_name,
|
|
|
|
|
|
|
|
student_id: response.data.user_student_id,
|
|
|
|
|
|
|
|
group_name: response.data.group_name,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
this.setState({
|
|
|
|
...response.data,
|
|
|
|
...response.data,
|
|
|
|
|
|
|
|
selectmemberslist: [mine],
|
|
|
|
memberNumMin: response.data.min_num,
|
|
|
|
memberNumMin: response.data.min_num,
|
|
|
|
memberNumMax: response.data.max_num,
|
|
|
|
memberNumMax: response.data.max_num,
|
|
|
|
})
|
|
|
|
})
|
|
|
@ -102,30 +110,6 @@ class CommonWorkPost extends Component{
|
|
|
|
console.log(error)
|
|
|
|
console.log(error)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const responseData = {
|
|
|
|
|
|
|
|
"course_id": 1309,
|
|
|
|
|
|
|
|
"course_name": "计算机开发实战课-示例",
|
|
|
|
|
|
|
|
"category": {
|
|
|
|
|
|
|
|
"category_id": 11551,
|
|
|
|
|
|
|
|
"category_name": "分组作业"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
"homework_status": [
|
|
|
|
|
|
|
|
"申诉中"
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
"homework_name": "小米便签的功能改进",
|
|
|
|
|
|
|
|
"homework_id": 7013,
|
|
|
|
|
|
|
|
"homework_type": "group",
|
|
|
|
|
|
|
|
"user_id": 15582,
|
|
|
|
|
|
|
|
"user_name": "胡莎莎",
|
|
|
|
|
|
|
|
"user_student_id": null,
|
|
|
|
|
|
|
|
"group_name": "示例A班"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
|
|
|
|
...responseData
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|