}
{
- detailInfoList === undefined ? "" : detailInfoList.progress === null ? "" :
+ this.props.checkIfLogin()===false?"":detailInfoList === undefined ? "" : detailInfoList.progress === null ? "" :
我的进展
diff --git a/public/react/src/modules/paths/PathDetail/addCollaborators.js b/public/react/src/modules/paths/PathDetail/addCollaborators.js
index c828f1589..6100ab2f6 100644
--- a/public/react/src/modules/paths/PathDetail/addCollaborators.js
+++ b/public/react/src/modules/paths/PathDetail/addCollaborators.js
@@ -1,216 +1,213 @@
-import React, { Component } from 'react';
-import { Modal,Checkbox,Input } from "antd";
-import axios from 'axios';
-
-const Search = Input.Search;
-const CheckboxGroup = Checkbox.Group;
-class addCollaborators extends Component{
- constructor(props){
- super(props);
- this.state = {
- addPartner:false,
- page:1,
- partnerList:undefined,
- search:'',
- partnerListid:[],
- checkAll: false,
- optionss:[]
- }
- }
- addBox=()=>{
-
- this.setState({
- addPartner:true,
- search:"",
- page:1,
- partnerList:undefined,
- optionss:[]
- })
- this.searchList("")
-
- }
- hideAddBox=()=>{
- this.setState({
- addPartner:false,
- optionss:[],
- partnerListid:[]
- })
- }
- // 搜索框输入
- changeSearchValue=(e)=>{
- this.setState({
- search: e.target.value
- })
- }
- // 回车搜索--搜索成功后page为1
- searchList=()=>{
- let id=this.props.match.params.pathId;
- let {search,page}=this.state;
- let url='/paths/'+id+'/search_members.json?search='+search+"&page="+page;
- axios.post(url).then((result)=>{
- if(result.status==200){
- let list=result.data.users;
- let optionss=[]
- for(var i=0; i{
- console.log(error);
- })
- }
-
-
- SaveAddBox=()=>{
- let {partnerListid} =this.state;
- let id=this.props.match.params.pathId;
- let url="/paths/"+id+"/add_subject_members.json"
- axios.post(url,{
- user_ids:partnerListid
- }).then((response) => {
- if(response.status==200){
- this.setState({
- addPartner:false,
- optionss:[],
- partnerListid:[]
- })
- this.props.updatadetailInfoLists();
- }
- }).catch((error) => {
- console.log(error)
- });
- }
-
- addCollaboratorsid=(id)=>{
- this.setState({
- partnerListid:id
- })
- }
-
- onCheckAllChange = (e) => {
- let {optionss} =this.state;
-
- if(e.target.checked===true){
- this.setState({
- checkAll: e.target.checked,
- partnerListid:optionss
- });
- }else{
- this.setState({
- checkAll: e.target.checked,
- partnerListid:[]
- });
- }
-
- }
-
- contentViewScroll=(e)=>{
- //滑动到底判断
- if(e.currentTarget.scrollHeight-e.currentTarget.scrollTop===e.currentTarget.clientHeight){
- // console.log("到达底部");
-
- let id=this.props.match.params.pathId;
- let {search,page,partnerList,optionss}=this.state;
- let newpage=page+1;
- let url='/paths/'+id+'/search_members.json?search='+search+"&page="+newpage;
-
- axios.post(url).then((result)=>{
- if(result.status==200){
- let list=result.data.users;
- let newlist=partnerList;
- for(var j=0; j{
- console.log(error);
- })
-
- }
-
- }
-
- render(){
- let {addPartner,search,partnerList,optionss,checkAll,partnerListid} = this.state;
-
- return(
-
- {
- this.props.detailInfoList===undefined?"":this.props.detailInfoList.allow_add_member===true?
-
+ 添加合作者
- :""
- }
-
-
-
-
- this.searchList(search)} />
-
-
-
- 姓名
- 昵称
- 职位
- 单位
-
-
-
- {
- partnerList && partnerList.map((item,key)=>{
- return(
- -
-
- {item.user_name}
- {item.nickname}
- {item.identity}
- {item.school_name}
-
- )
- })
- }
-
-
-
-
-
-
- )
- }
-}
+import React, { Component } from 'react';
+import { Modal,Checkbox,Input } from "antd";
+import axios from 'axios';
+
+const Search = Input.Search;
+const CheckboxGroup = Checkbox.Group;
+class addCollaborators extends Component{
+ constructor(props){
+ super(props);
+ this.state = {
+ addPartner:false,
+ page:1,
+ partnerList:undefined,
+ search:'',
+ partnerListid:[],
+ checkAll: false,
+ optionss:[]
+ }
+ }
+ addBox=()=>{
+
+ this.setState({
+ addPartner:true,
+ search:"",
+ page:1,
+ partnerList:undefined,
+ optionss:[]
+ })
+ this.searchList("")
+
+ }
+ hideAddBox=()=>{
+ this.setState({
+ addPartner:false,
+ optionss:[],
+ partnerListid:[]
+ })
+ }
+ // 搜索框输入
+ changeSearchValue=(e)=>{
+ this.setState({
+ search: e.target.value
+ })
+ }
+ // 回车搜索--搜索成功后page为1
+ searchList=()=>{
+ let id=this.props.match.params.pathId;
+ let {search,page}=this.state;
+ let url='/paths/'+id+'/search_members.json?search='+search+"&page="+page;
+ axios.post(url).then((result)=>{
+ if(result.status==200){
+ let list=result.data.users;
+ let optionss=[]
+ for(var i=0; i{
+ console.log(error);
+ })
+ }
+
+
+ SaveAddBox=()=>{
+ let {partnerListid} =this.state;
+ let id=this.props.match.params.pathId;
+ let url="/paths/"+id+"/add_subject_members.json"
+ axios.post(url,{
+ user_ids:partnerListid
+ }).then((response) => {
+ if(response.status==200){
+ this.setState({
+ addPartner:false,
+ optionss:[],
+ partnerListid:[]
+ })
+ this.props.updatadetailInfoLists();
+ }
+ }).catch((error) => {
+ console.log(error)
+ });
+ }
+
+ addCollaboratorsid=(id)=>{
+ this.setState({
+ partnerListid:id
+ })
+ }
+
+ onCheckAllChange = (e) => {
+ let {optionss} =this.state;
+
+ if(e.target.checked===true){
+ this.setState({
+ checkAll: e.target.checked,
+ partnerListid:optionss
+ });
+ }else{
+ this.setState({
+ checkAll: e.target.checked,
+ partnerListid:[]
+ });
+ }
+
+ }
+
+ contentViewScroll=(e)=>{
+ //滑动到底判断
+ if(e.currentTarget.scrollHeight-e.currentTarget.scrollTop===e.currentTarget.clientHeight){
+ // console.log("到达底部");
+
+ let id=this.props.match.params.pathId;
+ let {search,page,partnerList,optionss}=this.state;
+ let newpage=page+1;
+ let url='/paths/'+id+'/search_members.json?search='+search+"&page="+newpage;
+
+ axios.post(url).then((result)=>{
+ if(result.status==200){
+ let list=result.data.users;
+ let newlist=partnerList;
+ for(var j=0; j{
+ console.log(error);
+ })
+
+ }
+
+ }
+
+ render(){
+ let {addPartner,search,partnerList,optionss,checkAll,partnerListid} = this.state;
+
+ return(
+ this.props.detailInfoList===undefined?"":this.props.detailInfoList.allow_add_member===true?
+
+
+ 添加合作者
+
+
+
+ this.searchList(search)} />
+
+
+
+ 姓名
+ 昵称
+ 职位
+ 单位
+
+
+
+ {
+ partnerList && partnerList.map((item,key)=>{
+ return(
+ -
+
+ {item.user_name}
+ {item.nickname}
+ {item.identity}
+ {item.school_name}
+
+ )
+ })
+ }
+
+
+
+
+
+
:""
+
+ )
+ }
+}
export default addCollaborators;
\ No newline at end of file
diff --git a/public/react/src/modules/tpm/NewHeader.js b/public/react/src/modules/tpm/NewHeader.js
index 7e40b9edd..799109b9f 100644
--- a/public/react/src/modules/tpm/NewHeader.js
+++ b/public/react/src/modules/tpm/NewHeader.js
@@ -8,7 +8,7 @@ import PropTypes from 'prop-types';
// /images/educoder/icon/search.svg
-import { getImageUrl, toPath } from 'educoder'
+import { getImageUrl, toPath ,trigger,broadcastChannelPostMessage} from 'educoder'
import axios from 'axios';
@@ -30,8 +30,6 @@ import 'antd/lib/input/style/index.css';
import './TPMIndex.css';
-import { trigger, broadcastChannelPostMessage } from 'educoder';
-
const $ = window.$
// TODO 这部分脚本从公共脚本中直接调用
@@ -316,6 +314,7 @@ class NewHeader extends Component {
// this.setState({
// isRender:true
// })
+ broadcastChannelPostMessage('refreshPage')
window.location.href = "/";
}
}).catch((error) => {
From 12388a1f7b98fd9d9b9cbed167183cdf375edfe1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com>
Date: Sat, 10 Aug 2019 14:50:02 +0800
Subject: [PATCH 17/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../TraineetraininginformationModal.js | 98 +++++++++++++------
1 file changed, 67 insertions(+), 31 deletions(-)
diff --git a/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js b/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
index 53f960872..c7acf23a4 100644
--- a/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
+++ b/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
@@ -79,14 +79,14 @@ class TraineetraininginformationModal extends Component {
return str;
}
render() {
- console.log(83);
- console.log(this.props.boolgalist);
+ // console.log(83);
+ // console.log(this.props.boolgalist);
const columns = [
{
title: '关卡',
dataIndex: 'number',
key: 'number',
- width: 92,
+ width:"91px",
align: "center",
render: (text, record) => (
@@ -98,7 +98,7 @@ class TraineetraininginformationModal extends Component {
title: '完成时间',
dataIndex: 'name',
key: 'name',
- width: 130,
+ width:"150px",
align: "center",
render: (text, record) => (
@@ -113,7 +113,7 @@ class TraineetraininginformationModal extends Component {
title: '',
dataIndex: 'complete_status',
key: 'complete_status',
- width: 100,
+ width:"87px",
align: "center",
render: (text, record) => (
@@ -127,7 +127,7 @@ class TraineetraininginformationModal extends Component {
title: '耗时',
dataIndex: 'stduynumber',
key: 'stduynumber',
- width: 92,
+ width:"150px",
align: "center",
render: (text, record) => (
@@ -138,7 +138,7 @@ class TraineetraininginformationModal extends Component {
{
title: '经验值',
key: 'classroom',
- width: 92,
+
dataIndex: 'classroom',
align: "center",
render: (text, record) => (
@@ -147,7 +147,7 @@ class TraineetraininginformationModal extends Component {
),
}
- ]
+ ];
const columnss = [
{
@@ -155,7 +155,7 @@ class TraineetraininginformationModal extends Component {
dataIndex: 'number',
key: 'number',
align: "center",
- width: "117px",
+ width:"119px",
render: (text, record) => (
{record.number}
@@ -166,7 +166,7 @@ class TraineetraininginformationModal extends Component {
title: '完成时间',
dataIndex: 'name',
key: 'name',
- width: "203px",
+ width:"174px",
align: "center",
render: (text, record) => (
@@ -179,7 +179,7 @@ class TraineetraininginformationModal extends Component {
dataIndex: 'stduynumber',
key: 'stduynumber',
align: "center",
- width: "117px",
+ width:"119px",
render: (text, record) => (
{record.stduynumber}
@@ -191,14 +191,14 @@ class TraineetraininginformationModal extends Component {
key: 'classroom',
dataIndex: 'classroom',
align: "center",
- width: "117px",
+
render: (text, record) => (
{record.classroom}
),
}
- ]
+ ];
return (
@@ -246,13 +246,24 @@ class TraineetraininginformationModal extends Component {
{this.props.boolgalist === false?
{
- this.props.game_list === undefined?"" : this.props.game_list.length<5?
+ this.props.game_list === undefined?"" : this.props.game_list.length<4?
@@ -263,24 +274,33 @@ class TraineetraininginformationModal extends Component {
columns={columns}
loading={false}
pagination={false}
- onChange={this.TablePagination}
/>}
:
+
{this.props.game_list === undefined ? "" :
}
@@ -296,13 +316,21 @@ class TraineetraininginformationModal extends Component {
{
- this.props.game_list === undefined?"" : this.props.game_list.length<5?
+ this.props.game_list === undefined?"" : this.props.game_list.length<4?
@@ -313,24 +341,32 @@ class TraineetraininginformationModal extends Component {
columns={columnss}
loading={false}
pagination={false}
- onChange={this.TablePagination}
/>}
:
+
{this.props.game_list === undefined ? "" :
}
From 673fb3f0bd8b8740c98a21e79b1b8eb6ea06b822 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com>
Date: Sat, 10 Aug 2019 14:59:29 +0800
Subject: [PATCH 18/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/modules/paths/PathDetail/sendPanel.js | 46 +++++++++++++------
1 file changed, 32 insertions(+), 14 deletions(-)
diff --git a/public/react/src/modules/paths/PathDetail/sendPanel.js b/public/react/src/modules/paths/PathDetail/sendPanel.js
index 2f9059a18..ae7dd5b00 100644
--- a/public/react/src/modules/paths/PathDetail/sendPanel.js
+++ b/public/react/src/modules/paths/PathDetail/sendPanel.js
@@ -27,9 +27,27 @@ class sendPanel extends Component{
//发送至
SentToLesson =() =>{
- this.setState({
- sentShixunPath:true
- })
+ let id=this.props.detailInfoList.id;
+ let url="/paths/"+id+"/choose_course.json";
+ axios.get(url).then((result)=>{
+ if(result.status==200){
+
+ if (result.data.status === 403||result.data.status === 402||result.data.status === 407||result.data.status === 408) {
+
+ }else{
+ this.setState({
+ sendToCourseList:result.data,
+ sentShixunPath:true
+ })
+ }
+
+ }
+ }).catch((error)=>{
+ console.log(error);
+ })
+ // this.setState({
+ // sentShixunPath:true
+ // })
}
//隐藏发送至弹框
hideSenttothevalue =()=>{
@@ -99,17 +117,17 @@ class sendPanel extends Component{
}
componentDidMount(){
- let id=this.props.detailInfoList.id;
- let url="/paths/"+id+"/choose_course.json";
- axios.get(url).then((result)=>{
- if(result.status==200){
- this.setState({
- sendToCourseList:result.data
- })
- }
- }).catch((error)=>{
- console.log(error);
- })
+ // let id=this.props.detailInfoList.id;
+ // let url="/paths/"+id+"/choose_course.json";
+ // axios.get(url).then((result)=>{
+ // if(result.status==200){
+ // this.setState({
+ // sendToCourseList:result.data
+ // })
+ // }
+ // }).catch((error)=>{
+ // console.log(error);
+ // })
}
cardsModalcancel=()=>{
From d997704ed4054e288bdca2d45b012fcfc429a0aa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com>
Date: Sat, 10 Aug 2019 15:06:30 +0800
Subject: [PATCH 19/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/react/src/modules/message/js/MessagSub.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/public/react/src/modules/message/js/MessagSub.js b/public/react/src/modules/message/js/MessagSub.js
index ef0d35dd1..ab814aab8 100644
--- a/public/react/src/modules/message/js/MessagSub.js
+++ b/public/react/src/modules/message/js/MessagSub.js
@@ -308,7 +308,7 @@ class MessagSub extends Component{
//记得跳评阅页面
default :
// 课堂-试卷列表详情 :id = container_id
- return window.open(`/courses/${item.belong_container_id}/exercises/${item.container_id}`)
+ return window.open(`/courses/${item.belong_container_id}/exercises/${item.container_id}/student_exercise_list?tab=0`);
}
case 'StudentGraduationTopic' :
//课堂-毕业选题详情 :id = parent_container_id
From 3d20802e041a41ed19754df6c36c0027b9838bf8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com>
Date: Sat, 10 Aug 2019 15:07:15 +0800
Subject: [PATCH 20/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/react/src/modules/tpm/NewHeader.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/react/src/modules/tpm/NewHeader.js b/public/react/src/modules/tpm/NewHeader.js
index 799109b9f..b816448e0 100644
--- a/public/react/src/modules/tpm/NewHeader.js
+++ b/public/react/src/modules/tpm/NewHeader.js
@@ -880,9 +880,9 @@ submittojoinclass=(value)=>{
/>:""}
{/* /courses/join_course_multi_role */}
- {/*
*/}
+
加入项目
- {/**/}
+
{tojoinitemtype===true?
Date: Sat, 10 Aug 2019 15:20:45 +0800
Subject: [PATCH 21/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../shixunHomework/Listofworksstudentone.js | 30 +++++++++----------
.../TraineetraininginformationModal.js | 20 ++++++-------
2 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js b/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js
index fef1bec75..7f821bde4 100644
--- a/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js
+++ b/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js
@@ -2779,13 +2779,13 @@ class Listofworksstudentone extends Component {
}
.edu-table thead th,.edu-table tbody tr:last-child td{
border-bottom: none!important;
- height: 85px;
+ height: 58px;
}
.ant-tables .ant-table-tbody > tr > td {
- height: 85px;
+ height: 58px;
}
.ysltableo .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableo .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
padding: 9px;
@@ -2973,16 +2973,16 @@ class Listofworksstudentone extends Component {
top: 72%;}
}
.edu-table .ant-table-tbody > tr > td {
- height: 85px;
+ height: 58px;
}
.edu-table .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableow .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableow .ant-table-tbody > tr > td{
- height: 85px;
+ height: 58px;
}
.ysltableow .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
padding: 9px;
@@ -3064,16 +3064,16 @@ class Listofworksstudentone extends Component {
{
`
.edu-table .ant-table-tbody > tr > td {
- height: 85px;
+ height: 58px;
}
.edu-table .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableows .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableows .ant-table-tbody > tr > td{
- height: 85px;
+ height: 58px;
}
.ysltableows .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
padding: 9px;
@@ -3197,16 +3197,16 @@ class Listofworksstudentone extends Component {
top: 72%;}
}
.edu-table .ant-table-tbody > tr > td {
- height: 85px;
+ height: 58px;
}
.edu-table .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableowss .ant-table-thead > tr > th{
- height: 85px;
+ height: 58px;
}
.ysltableowss .ant-table-tbody > tr > td{
- height: 85px;
+ height: 58px;
}
.ysltableowss .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
padding: 9px;
diff --git a/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js b/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
index c7acf23a4..2c861928b 100644
--- a/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
+++ b/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
@@ -246,7 +246,7 @@ class TraineetraininginformationModal extends Component {
{this.props.boolgalist === false?
{
- this.props.game_list === undefined?"" : this.props.game_list.length<4?
+ this.props.game_list === undefined?"" : this.props.game_list.length<5?
-
+ {/*
*/}
-
+ {/**/}
{
- let{sort}=this.state;
+ let{sort,order_by}=this.state;
this.setState({
- order_by: 'publish_time',
tag_level: 1,
tag_id:'',
page: 1,
@@ -129,7 +128,7 @@ class ShixunsIndex extends Component {
})
let params={
- order_by: 'publish_time',
+ order_by:order_by,
tag_level: 1,
tag_id:'',
page: 1,
From 27e06c9ca6d520004de958b2293a9bdeb441a691 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com>
Date: Sat, 10 Aug 2019 15:50:29 +0800
Subject: [PATCH 23/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/react/src/modules/courses/poll/PollNew.js | 4 ++--
.../courses/shixunHomework/TraineetraininginformationModal.js | 2 ++
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/public/react/src/modules/courses/poll/PollNew.js b/public/react/src/modules/courses/poll/PollNew.js
index 6bebb1fcd..ce602afc3 100644
--- a/public/react/src/modules/courses/poll/PollNew.js
+++ b/public/react/src/modules/courses/poll/PollNew.js
@@ -122,8 +122,8 @@ class PollNew extends Component {
}
}
-
- // this.getPollInfo();
+ console.log("问卷返回");
+ console.log(this.props);
}
//获取权限
diff --git a/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js b/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
index 2c861928b..9b86483df 100644
--- a/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
+++ b/public/react/src/modules/courses/shixunHomework/TraineetraininginformationModal.js
@@ -209,6 +209,8 @@ class TraineetraininginformationModal extends Component {
visible={this.props.visible}
footer={null}
onCancel={this.Cancel}
+ maskClosable={false}
+ destroyOnClose={true}
>
From ac14036c7433fac22f6ffb5d03195f4e95cf0695 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com>
Date: Sat, 10 Aug 2019 15:50:49 +0800
Subject: [PATCH 24/25] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/modules/courses/shixunHomework/ShixunWorkReport.js | 6 ++++++
.../shixunHomework/shixunreport/Coursesshixundetails.js | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js b/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js
index 66bde2d2a..3873c6c7f 100644
--- a/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js
+++ b/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js
@@ -114,6 +114,11 @@ class ShixunWorkReport extends Component {
this.props.history.push(this.props.current_user.first_category_url);
}
}
+
+ goback = () => {
+
+ this.props.history.goBack()
+ }
render() {
let{data} =this.state;
console.log(data)
@@ -154,6 +159,7 @@ class ShixunWorkReport extends Component {
{/*className="fr color-blue font-16"*/}
{/*onClick={()=>this.confirmysl(`/student_works/${homeworkid}/export_shixun_work_report.pdf`)}*/}
{/*>导出实训报告数据 : ""}*/}
+
返回
diff --git a/public/react/src/modules/courses/shixunHomework/shixunreport/Coursesshixundetails.js b/public/react/src/modules/courses/shixunHomework/shixunreport/Coursesshixundetails.js
index 529a4646b..23f6d1e48 100644
--- a/public/react/src/modules/courses/shixunHomework/shixunreport/Coursesshixundetails.js
+++ b/public/react/src/modules/courses/shixunHomework/shixunreport/Coursesshixundetails.js
@@ -44,7 +44,7 @@ class Coursesshixundetails extends Component {
data&&data.forEach((item,key)=>{
datas.push({
number: item.position,
- name: item.output_detail
+ name: item.output_detail=== ""||item.output_detail===null?"暂无数据":item.output_detail
})
})
From 864161022b7f84aa506299550fb222d01d0d408d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com>
Date: Sat, 10 Aug 2019 15:58:15 +0800
Subject: [PATCH 25/25] b
---
.../src/modules/courses/shixunHomework/ShixunWorkReport.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js b/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js
index 3873c6c7f..5a98a974d 100644
--- a/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js
+++ b/public/react/src/modules/courses/shixunHomework/ShixunWorkReport.js
@@ -159,7 +159,7 @@ class ShixunWorkReport extends Component {
{/*className="fr color-blue font-16"*/}
{/*onClick={()=>this.confirmysl(`/student_works/${homeworkid}/export_shixun_work_report.pdf`)}*/}
{/*>导出实训报告数据 : ""}*/}
-
返回
+ {/*
返回*/}