修改我发布的任务页面上传评审作证材料按钮显隐问题以及导入用户失败弹框样式问题

This commit is contained in:
unknown 2022-01-14 17:45:16 +08:00
parent 03ae09b6ef
commit b7c4cc2f9b
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@
.mess{
padding-left: 20px;
&.fail{
height: 300px;
max-height: 300px;
overflow-y: auto;
}
}

View File

@ -251,7 +251,7 @@ function ReviewTasks({ showNotification, match, history, current_user }) {
containerType == 1 ? setTaskId(containerId) : setCompetitionId(containerId);
}
});
}, [curPage, reload, pageSize, current_user.expertId, reload]);
}, [curPage, reload, pageSize, current_user.expertId]);
function cancel() {

View File

@ -226,7 +226,7 @@ export default Form.create()((props) => {
}
{
item.status === 4 && item.papersCount > 0 && (!item.isProofBoolean) && (!item.expertReview) &&
!item.expertReview && item.status === 4 && item.papersCount > 0 && (!item.isProofBoolean) && (!item.expertReview) &&
<a onClick={() => { uploadProofs(item) }} className="line_1 color-blue">上传佐证材料</a>
}