Commit 660395a9 authored by 前端-许佳敏's avatar 前端-许佳敏

fix: 去掉首页查看

parent 1c9be452
......@@ -45,11 +45,11 @@ const MemberStatisticsContainer = () => {
</div>
</div>
<div>
{
{/* {
item?.link && (
<Link to={item.link}>查看&nbsp;<RightOutlined /></Link>
) || <a>查看 <RightOutlined /></a>
}
} */}
</div>
</div>
</Col>
......
......@@ -49,7 +49,7 @@ const OrderContainer = () => {
return (
<List.Item
key={row.name}
actions={[<Link to={row?.link}>查看&nbsp;<RightOutlined /></Link>]}
// actions={[<Link to={row?.link}>查看&nbsp;<RightOutlined /></Link>]}
>
<List.Item.Meta
title={row.count.toString()}
......
......@@ -35,7 +35,7 @@ const PurchaseCenter = () => {
return (
<List.Item
key={row.name}
actions={[<Link to={row?.link}>查看&nbsp;<RightOutlined /></Link>]}
// actions={[<Link to={row?.link}>查看&nbsp;<RightOutlined /></Link>]}
>
<List.Item.Meta
title={row.count.toString()}
......
......@@ -91,13 +91,14 @@ const Settlement: React.FC = () => {
<div className={styles.noteGap}></div>
<div className={styles.noteBody}>
<span className={styles.value}>{_row.count}</span>
{
<div></div>
{/* {
_row.link && (
<Link to={_row.link}>查看 <RightOutlined /></Link>
) || (
<div>查看 <RightOutlined /></div>
)
}
} */}
</div>
</div>
</div>
......@@ -122,13 +123,14 @@ const Settlement: React.FC = () => {
<p className={styles.lineDescTip}>{_item?.title}</p>
</div>
</div>
{
<div></div>
{/* {
_item.link && (
<Link to={_item.link}>查看 <RightOutlined /></Link>
) || (
<div>查看 <RightOutlined /></div>
)
}
} */}
</div>
</Col>
)
......
......@@ -88,11 +88,12 @@ const StatisticsColumn = (props) => {
<p className={styles.lineDescTip}>{_row.name}</p>
</div>
</div>
{
<div></div>
{/* {
_row.link
&& (<Link to={_row.link}>查看&nbsp;<RightOutlined /></Link>)
|| (<a>查看</a>)
}
} */}
</div>
</Col>
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment