diff --git a/src/forge/Main/tag/Index.jsx b/src/forge/Main/tag/Index.jsx index 20e74451e..4a0ce00a3 100644 --- a/src/forge/Main/tag/Index.jsx +++ b/src/forge/Main/tag/Index.jsx @@ -34,10 +34,11 @@ function Tags(props) { dataIndex:"name", key:1, ellipsis:true, + render:(txt,item)=>{ return(
- {item.name} + {item.name}
) } @@ -49,7 +50,7 @@ function Tags(props) { ellipsis:true, render:(txt,item)=>{ return ( - + {item.tagger && item.tagger.name} 创建于{txt} diff --git a/src/forge/Main/tag/Index.scss b/src/forge/Main/tag/Index.scss index 89f473f54..bff4c97b4 100644 --- a/src/forge/Main/tag/Index.scss +++ b/src/forge/Main/tag/Index.scss @@ -21,10 +21,10 @@ padding:0px; height: 69px; line-height: 69px; + color:#333333; div{ padding-left: 69px; font-weight: 500; - color:#333333; } } &:last-child{ @@ -47,4 +47,10 @@ margin-left: -67px; text-overflow: ellipsis; overflow: hidden; + .tagClass{ + color:#333333; + } +} +.tagModel{ + font-weight: 400; } \ No newline at end of file