diff --git a/public/react/src/modules/courses/Resource/index.js b/public/react/src/modules/courses/Resource/index.js
index 8ce285ae1..f26d97ad3 100644
--- a/public/react/src/modules/courses/Resource/index.js
+++ b/public/react/src/modules/courses/Resource/index.js
@@ -176,8 +176,8 @@ class Fileslists extends Component{
let list=result.data.data;
this.setState({
total_count:list.total_count,
- public_count:list.public_count,
- private_count:list.private_count,
+ publish_count:list.publish_count,
+ unpublish_count:list.unpublish_count,
files:list.files,
filesId:list.id,
name:list.name,
@@ -625,13 +625,12 @@ class Fileslists extends Component{
})
}
render(){
-
let { searchValue,
checkBoxValues,
checkAllValue,
total_count,
- public_count,
- private_count,
+ publish_count,
+ unpublish_count,
files,
sorttype,
Modalstype,
@@ -766,8 +765,8 @@ class Fileslists extends Component{
secondRowLeft={
共 {total_count} 个资源
- 已发布:{public_count}个
- 未发布:{private_count}个
+ 已发布:{publish_count}个
+ 未发布:{unpublish_count}个
}
onPressEnter={this.onPressEnter}
diff --git a/public/react/src/modules/tpm/shixunchild/Challenges/Challenges.js b/public/react/src/modules/tpm/shixunchild/Challenges/Challenges.js
index 5554e0370..4ef6abfa3 100644
--- a/public/react/src/modules/tpm/shixunchild/Challenges/Challenges.js
+++ b/public/react/src/modules/tpm/shixunchild/Challenges/Challenges.js
@@ -479,48 +479,43 @@ class Challenges extends Component {
{/*判断比较复杂 有排第一不能是灰色按钮*/}
{item.status === 2 ?
- this.startshixunCombat(false,undefined, item.challenge_id)}
+ this.startshixunCombat(false,undefined, item.challenge_id)}
// onClick={() => this.startshixunCombat(false)}
+ title={"查看挑战关卡"}
>已完成 : ""
}
{
ChallengesDataList.allow_skip === true && item.status === 1?
- this.startshixunCombat(false,undefined, item.challenge_id)}
+ onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}
// onClick={() => this.startshixunCombat(false)}
>直接挑战 : ""
}
+ {
+ ChallengesDataList.allow_skip === false ? item.status === 1?
+
+ this.startshixunCombat(false,undefined, item.challenge_id)}
+ style={{marginTop: '-2px'}}>直接挑战
+ :"":""
- {
- ChallengesDataList.allow_skip === false ? item.status === 1 && newstatus === 2 ?
-
- this.startshixunCombat(false,undefined, item.challenge_id):""}
- style={{marginTop: '-2px'}}>直接挑战
-
-
- : item.status === 1 && newstatus === 1 ?
-
- this.startshixunCombat(false,undefined, item.challenge_id):""}
- style={{marginTop: '-2px'}}>直接挑战
- : "" : ""
+ }
- }
{
item.status === 0 ?
-
- this.startshixunCombat(false,undefined, item.challenge_id):""}
+
+ this.startshixunCombat(false,undefined, item.challenge_id):""}
style={{marginTop: '-2px'}}>直接挑战
- : ""
+ :""
}
@@ -598,3 +593,19 @@ class Challenges extends Component {
}
export default Challenges;
+ // {
+ // ChallengesDataList.allow_skip === false ? item.status === 1 && newstatus === 2 ?
+ //
+ // this.startshixunCombat(false,undefined, item.challenge_id)}
+ // style={{marginTop: '-2px'}}>直接挑战
+ //
+ //
+ // : item.status === 1 && newstatus === 1 ?
+ //
+ // this.startshixunCombat(false,undefined, item.challenge_id)}
+ // style={{marginTop: '-2px'}}>直接挑战
+ // : "" : ""
+ //
+ // }
\ No newline at end of file