diff --git a/src/military/task/components/itemListPaper/index.jsx b/src/military/task/components/itemListPaper/index.jsx
index 70c1f949..20351d8c 100644
--- a/src/military/task/components/itemListPaper/index.jsx
+++ b/src/military/task/components/itemListPaper/index.jsx
@@ -157,6 +157,8 @@ export default Form.create()((props) => {
{timeAgo(item.createdAt)}
{item.status === 2 ?
: {item.checkStatus !== 1 ? paperCheckStatus[item.checkStatus] : applyStatusAllNameArr[item.status]}}
+
+ {[5,6,7,8].includes(detailStatus) && item &&评审得分:{item.reviewFinalGrades}}
{((item.needComplain && detailStatus === 3) || (detailStatus === 5 && item.publicTaskComplain && item.checkStatus === 1 && item.status !== 2)) && (current_user.login === item.user.login) &&
diff --git a/src/military/task/components/itemListPaper/index.scss b/src/military/task/components/itemListPaper/index.scss
index 4458d140..4e38d474 100644
--- a/src/military/task/components/itemListPaper/index.scss
+++ b/src/military/task/components/itemListPaper/index.scss
@@ -20,11 +20,11 @@
.fileCommentsList {
background: #fafafa;
- padding-top: .25rem;
+ padding-top: 0.25rem;
}
-.comments-item{
- margin-top:1rem;
+.comments-item {
+ margin-top: 1rem;
}
.comments-content {
text-align: left;
@@ -36,11 +36,21 @@
background-color: #fff;
}
-.small-head{
+.small-head {
max-width: 2rem;
}
-.clickable:hover{
+.clickable:hover {
color: #4cacff;
cursor: pointer;
-}
\ No newline at end of file
+}
+
+.paper-grades {
+ margin-left:4rem;
+ font-size: 1rem;
+ color: #333333;
+
+ .paper-grades-num{
+ color: #FF0000;
+ }
+}