diff --git a/public/react/config/webpack.config.prod.js b/public/react/config/webpack.config.prod.js
index 0d5ef2747..0abd707af 100644
--- a/public/react/config/webpack.config.prod.js
+++ b/public/react/config/webpack.config.prod.js
@@ -58,8 +58,8 @@ module.exports = {
bail: true,
// We generate sourcemaps in production. This is slow but gives good results.
// You can exclude the *.map files from the build during deployment.
- devtool: shouldUseSourceMap ? 'nosources-source-map' : false, //正式版
- //devtool: shouldUseSourceMap ? 'source-map' : false,//测试版
+ // devtool: shouldUseSourceMap ? 'nosources-source-map' : false, //正式版
+ devtool: shouldUseSourceMap ? 'source-map' : false,//测试版
// In production, we only want to load the polyfills and the app code.
entry: [require.resolve('./polyfills'), paths.appIndexJs],
output: {
diff --git a/public/react/src/modules/courses/Resource/Fileslistitem.js b/public/react/src/modules/courses/Resource/Fileslistitem.js
index a2f57a8e1..404214dfc 100644
--- a/public/react/src/modules/courses/Resource/Fileslistitem.js
+++ b/public/react/src/modules/courses/Resource/Fileslistitem.js
@@ -215,13 +215,9 @@ class Fileslistitem extends Component{
}
{
- this.props.isNotMember ? discussMessage.is_lock === true ?
+ this.props.isNotMember ?
{discussMessage.title}
- :
- {discussMessage.title} :""
+ :""
}
diff --git a/public/react/src/modules/courses/exercise/ExerciseListItem.js b/public/react/src/modules/courses/exercise/ExerciseListItem.js
index f11509fc8..8ffd16937 100644
--- a/public/react/src/modules/courses/exercise/ExerciseListItem.js
+++ b/public/react/src/modules/courses/exercise/ExerciseListItem.js
@@ -107,11 +107,9 @@ class ExerciseListItem extends Component{
}
{
- this.props.isNotMember()? item.lock_status === 0 ?
+ this.props.isNotMember()?
{item.exercise_name}
- :
-
- {item.exercise_name}:""
+ :""
}
{
diff --git a/public/react/src/modules/courses/graduation/tasks/GraduateTaskItem.js b/public/react/src/modules/courses/graduation/tasks/GraduateTaskItem.js
index f66874330..10ce65436 100644
--- a/public/react/src/modules/courses/graduation/tasks/GraduateTaskItem.js
+++ b/public/react/src/modules/courses/graduation/tasks/GraduateTaskItem.js
@@ -229,12 +229,9 @@ class GraduateTaskItem extends Component{
}
{
- this.props.isNotMember?this.props.discussMessage.private_icon===true?
+ this.props.isNotMember?
{discussMessage.name}
- :
- {discussMessage.name}:""
+ :""
}
diff --git a/public/react/src/modules/courses/graduation/topics/GraduateTopicItem.js b/public/react/src/modules/courses/graduation/topics/GraduateTopicItem.js
index c5130d299..9f61e69d4 100644
--- a/public/react/src/modules/courses/graduation/topics/GraduateTopicItem.js
+++ b/public/react/src/modules/courses/graduation/topics/GraduateTopicItem.js
@@ -70,15 +70,17 @@ class GraduateTopicItem extends Component{
`}
{
- isNotMember && discussMessage.private_icon===true ?
- {discussMessage.name}:
- this.toDetailPage(`${discussMessage.id}`)} className="fl mt3 font-16 font-bd color-dark maxwidth580">{discussMessage.name}
+ isNotMember?
+ {discussMessage.name}:""
+
}
{
isStudent? this.toDetailPage(`${discussMessage.id}`)}
className="fl mt3 font-16 font-bd color-dark maxwidth580">{discussMessage.name}:""
}
-
+ {
+ isAdmin? this.toDetailPage(`${discussMessage.id}`)} className="fl mt3 font-16 font-bd color-dark maxwidth580">{discussMessage.name}:""
+ }
{
discussMessage.private_icon===true?
diff --git a/public/react/src/modules/courses/shixunHomework/Listofworks.js b/public/react/src/modules/courses/shixunHomework/Listofworks.js
index 09516a5f9..37ad51216 100644
--- a/public/react/src/modules/courses/shixunHomework/Listofworks.js
+++ b/public/react/src/modules/courses/shixunHomework/Listofworks.js
@@ -1515,7 +1515,7 @@ class Listofworks extends Component {
typelist={teacherdata === undefined ? [""] : teacherdata.homework_status}
/>
返回
+ href={`/courses/${this.state.props.match.params.coursesId}/${this.state.shixuntypes}/${jobsettingsdata === undefined ? "" : jobsettingsdata.data.category.category_id===undefined?"": jobsettingsdata.data.category.category_id}`}>返回
实训详情
diff --git a/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js b/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js
index ed87ecc0d..4e9cb3e00 100644
--- a/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js
+++ b/public/react/src/modules/courses/shixunHomework/Listofworksstudentone.js
@@ -1005,7 +1005,7 @@ class Listofworksstudentone extends Component {
>
{jobsettingsdata === undefined ? "" : jobsettingsdata.data.category.category_name}
+ to={`/courses/${this.props.match.params.coursesId}/${this.state.shixuntypes}/${jobsettingsdata === undefined ? "" : jobsettingsdata.data.category.category_id === undefined ? "" : jobsettingsdata.data.category.category_id}`}>{jobsettingsdata === undefined ? "" : jobsettingsdata.data.category.category_name}
>
作业详情
diff --git a/public/react/src/modules/login/LoginDialog.js b/public/react/src/modules/login/LoginDialog.js
index 9bcd35a1d..36a9530b9 100644
--- a/public/react/src/modules/login/LoginDialog.js
+++ b/public/react/src/modules/login/LoginDialog.js
@@ -317,10 +317,13 @@ class LoginDialog extends Component {
});
}
handleDialogClose() {
- this.setState({
- isRender: false
- })
- // window.location.href="/";
+ if(this.props.match.path==="/"){
+ this.setState({
+ isRender: false
+ })
+ }else{
+ window.location.href="/";
+ }
}
loginEDU=()=>{
diff --git a/public/react/src/modules/tpm/NewHeader.js b/public/react/src/modules/tpm/NewHeader.js
index 251f608ca..e31603f3c 100644
--- a/public/react/src/modules/tpm/NewHeader.js
+++ b/public/react/src/modules/tpm/NewHeader.js
@@ -613,6 +613,7 @@ submittojoinclass=(value)=>{
{/* isRender&& isRender === true?*/}
{/* :""*/}
{/*}*/}