forked from Gitlink/forgeplus-react
修改issue
This commit is contained in:
parent
b7c4cc2f9b
commit
d98c9df202
|
@ -1,8 +1,8 @@
|
|||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 2340181 */
|
||||
src: url('iconfont.woff2?t=1641524827252') format('woff2'),
|
||||
url('iconfont.woff?t=1641524827252') format('woff'),
|
||||
url('iconfont.ttf?t=1641524827252') format('truetype');
|
||||
src: url('iconfont.woff2?t=1642391410353') format('woff2'),
|
||||
url('iconfont.woff?t=1642391410353') format('woff'),
|
||||
url('iconfont.ttf?t=1642391410353') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
|
@ -13,6 +13,18 @@
|
|||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-a-2:before {
|
||||
content: "\e90f";
|
||||
}
|
||||
|
||||
.icon-a-3:before {
|
||||
content: "\e910";
|
||||
}
|
||||
|
||||
.icon-icon1:before {
|
||||
content: "\e911";
|
||||
}
|
||||
|
||||
.icon-ioon:before {
|
||||
content: "\e90e";
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,6 +5,27 @@
|
|||
"css_prefix_text": "icon-",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "27200759",
|
||||
"name": "2",
|
||||
"font_class": "a-2",
|
||||
"unicode": "e90f",
|
||||
"unicode_decimal": 59663
|
||||
},
|
||||
{
|
||||
"icon_id": "27200760",
|
||||
"name": "3",
|
||||
"font_class": "a-3",
|
||||
"unicode": "e910",
|
||||
"unicode_decimal": 59664
|
||||
},
|
||||
{
|
||||
"icon_id": "27200761",
|
||||
"name": "icon",
|
||||
"font_class": "icon1",
|
||||
"unicode": "e911",
|
||||
"unicode_decimal": 59665
|
||||
},
|
||||
{
|
||||
"icon_id": "27041503",
|
||||
"name": "ioon",
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -35,7 +35,7 @@ const ExpertUser = (propsF) => {
|
|||
<div className='center_flex'>
|
||||
<div className='register_left'>
|
||||
<Link to="/expert/user/register" className={`${functional === 'register' && 'active'}`}>登记专家资料</Link>
|
||||
<Link to="/expert/user/tasks" className={`${functional === 'tasks' && 'active'}`}>我的评审任务</Link>
|
||||
{propsF.current_user.isExpert && <Link to="/expert/user/tasks" className={`${functional === 'tasks' && 'active'}`}>我的评审任务</Link>}
|
||||
</div>
|
||||
<Switch {...propsF}>
|
||||
{
|
||||
|
|
|
@ -94,7 +94,10 @@ export default Form.create()(({ match, history, showNotification, form, current_
|
|||
setHonorList(lastRegister.honorsAttachments);
|
||||
setHonorIds(lastRegister.honors);
|
||||
}
|
||||
} else {
|
||||
} else if(res && res.message=="未登录"){
|
||||
// history.push('/403');
|
||||
}
|
||||
else {
|
||||
setForbidden(false);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -158,7 +158,7 @@ export default Form.create()((props) => {
|
|||
<span className="color-grey9">{timeAgo(item.createdAt)}</span>
|
||||
{item.status === 2 ? <img alt="胜出" className="mr5" src={winpng} /> : <span className="color-blue ml10">{item.checkStatus !== 1 ? paperCheckStatus[item.checkStatus] : applyStatusAllNameArr[item.status]}</span>}
|
||||
|
||||
{[5,6,7,8].includes(detailStatus) && item &&<span className='paper-grades'>评审得分:<span className='paper-grades-num'>{item.reviewFinalGrades}</span></span>}
|
||||
{[5,6,7,8].includes(detailStatus) && item.reviewFinalGrades!==null &&<span className='paper-grades'>评审得分:<span className='paper-grades-num'>{item.reviewFinalGrades}</span></span>}
|
||||
</li>
|
||||
<li className="fr">
|
||||
{((item.needComplain && detailStatus === 3) || (detailStatus === 5 && item.publicTaskComplain && item.checkStatus === 1 && item.status !== 2)) && (current_user.login === item.user.login) &&
|
||||
|
|
Loading…
Reference in New Issue