This commit is contained in:
caishi 2020-11-23 10:14:29 +08:00
parent b2eca51bd8
commit ac5b50c26d
3 changed files with 13 additions and 25 deletions

View File

@ -8,18 +8,9 @@
<meta name=”Description” Content=”持续构建协同、共享、可信的软件创建生态开源创作与软件生产相结合,支持大规模群体开展软件协同创新活动”> <meta name=”Description” Content=”持续构建协同、共享、可信的软件创建生态开源创作与软件生产相结合,支持大规模群体开展软件协同创新活动”>
<meta name="theme-color" content="#000000"> <meta name="theme-color" content="#000000">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"> <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<!-- <script type="text/javascript">
window.__isR = true; <link rel="stylesheet" type="text/css" href="%PUBLIC_URL%css/iconfont.css">
if ( <link rel="stylesheet" type="text/css" href="%PUBLIC_URL%css/edu-purge.css">
(navigator.userAgent.indexOf('MSIE 9') != -1
|| navigator.userAgent.indexOf('MSIE 10') != -1)
&&
location.pathname.indexOf("/compatibility") == -1) {
location.href = '/compatibility.html'
}
</script> -->
<link rel=" stylesheet" type="text/css" href="%PUBLIC_URL%css/iconfont.css">
<link rel=" stylesheet" type="text/css" href="%PUBLIC_URL%css/edu-purge.css">
<link rel="stylesheet" type="text/css" href="%PUBLIC_URL%css/editormd.min.css"> <link rel="stylesheet" type="text/css" href="%PUBLIC_URL%css/editormd.min.css">
<link rel="stylesheet" type="text/css" href="%PUBLIC_URL%css/merge.css"> <link rel="stylesheet" type="text/css" href="%PUBLIC_URL%css/merge.css">
<%= htmlWebpackPlugin.tags.headTags %> <%= htmlWebpackPlugin.tags.headTags %>

View File

@ -551,7 +551,6 @@ class CoderRootDirectory extends Component {
{ {
!rootList && !fileDetail && <Nodata _html="暂未发现当前文件!"/> !rootList && !fileDetail && <Nodata _html="暂未发现当前文件!"/>
} }
{/* readme.txt (isManager || isDeveloper)*/}
{ rootList && this.renderReadMeContent(readMeContent, isManager || isDeveloper)} { rootList && this.renderReadMeContent(readMeContent, isManager || isDeveloper)}
</div> </div>
</Spin> </Spin>

View File

@ -329,16 +329,16 @@ class order extends Component {
id: id, id: id,
}, },
}) })
.then((result) => { .then((result) => {
if (result) { if (result) {
const { status_type } = this.state; const { status_type } = this.state;
this.getIssueList(status_type); this.getIssueList(status_type);
} }
}) })
.catch((error) => { .catch((error) => {
console.log(error); console.log(error);
}); });
}; };
islogin() { islogin() {
@ -354,9 +354,7 @@ class order extends Component {
) )
}else{ }else{
return( return(
<a className="topWrapper_btn ml10" onClick={this.islogin}> <a className="topWrapper_btn ml10" onClick={this.islogin}>+&nbsp;创建任务</a>
+&nbsp;创建任务
</a>
) )
} }
} }