mirror of https://github.com/fantasticit/think.git
client: update DocumentCardPlaceholder
This commit is contained in:
parent
2d010794da
commit
df7757a0b7
|
@ -82,33 +82,35 @@ export const DocumentCard: React.FC<{ document: IDocument }> = ({ document }) =>
|
||||||
export const DocumentCardPlaceholder = () => {
|
export const DocumentCardPlaceholder = () => {
|
||||||
return (
|
return (
|
||||||
<div className={styles.cardWrap}>
|
<div className={styles.cardWrap}>
|
||||||
<header>
|
<a>
|
||||||
<IconDocument />
|
<header>
|
||||||
</header>
|
<IconDocument />
|
||||||
<main>
|
</header>
|
||||||
<div style={{ marginBottom: 12 }}>
|
<main>
|
||||||
<Skeleton.Title style={{ width: 160 }} />
|
<div style={{ marginBottom: 12 }}>
|
||||||
</div>
|
<Skeleton.Title style={{ width: 160 }} />
|
||||||
<div>
|
|
||||||
<Text type="tertiary" size="small">
|
|
||||||
<Space>
|
|
||||||
<Avatar size="extra-extra-small">
|
|
||||||
<IconUser />
|
|
||||||
</Avatar>
|
|
||||||
创建者:
|
|
||||||
<Skeleton.Paragraph rows={1} style={{ width: 100 }} />
|
|
||||||
</Space>
|
|
||||||
</Text>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
<footer>
|
|
||||||
<Text type="tertiary" size="small">
|
|
||||||
<div style={{ display: 'flex' }}>
|
|
||||||
更新时间:
|
|
||||||
<Skeleton.Paragraph rows={1} style={{ width: 100 }} />
|
|
||||||
</div>
|
</div>
|
||||||
</Text>
|
<div>
|
||||||
</footer>
|
<Text type="tertiary" size="small">
|
||||||
|
<Space>
|
||||||
|
<Avatar size="extra-extra-small">
|
||||||
|
<IconUser />
|
||||||
|
</Avatar>
|
||||||
|
创建者:
|
||||||
|
<Skeleton.Paragraph rows={1} style={{ width: 100 }} />
|
||||||
|
</Space>
|
||||||
|
</Text>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<Text type="tertiary" size="small">
|
||||||
|
<div style={{ display: 'flex' }}>
|
||||||
|
更新时间:
|
||||||
|
<Skeleton.Paragraph rows={1} style={{ width: 100 }} />
|
||||||
|
</div>
|
||||||
|
</Text>
|
||||||
|
</footer>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue