|
@@ -56,14 +56,14 @@ const H5Card = props => {
|
56
|
56
|
padding: '0.1rem'
|
57
|
57
|
}}
|
58
|
58
|
// style={{ width: 480,height: 450,marginTop: 50,position: "relative" }}
|
59
|
|
- cover={<img width="100%" style={{height:'1.3rem'}} alt="example" onClick={toEdit} src={h5Data.coverImg} />}
|
|
59
|
+ cover={<img width="100%" style={{ height: '1.3rem' }} alt="example" onClick={toEdit} src={h5Data.coverImg} />}
|
60
|
60
|
extra={<a onClick={deleteSample}>删除</a>}
|
61
|
61
|
title={h5Data.status == 1 ? '已发布' : h5Data.status == 0 ? '未发布' : ''}
|
62
|
62
|
>
|
63
|
63
|
<Meta onClick={toEdit} title={h5Data.sampleName} />
|
64
|
|
- <div style={{ position: "absolute", bottom: "50px", right: "20px", margin: '20px 0' }}>
|
|
64
|
+ <div style={{ position: "absolute", bottom: "50px", right: "0px", margin: '20px', }}>
|
65
|
65
|
{(h5Data.tags || []).map((x, i) => {
|
66
|
|
- return <Tag color={colerArr[i]}>{x}</Tag>
|
|
66
|
+ return <Tag style={{marginTop:'10px'}} color={colerArr[i]}>{x}</Tag>
|
67
|
67
|
})}
|
68
|
68
|
</div>
|
69
|
69
|
</Card>
|