feat: update

This commit is contained in:
landaiqing
2024-07-10 15:54:41 +08:00
parent bc90bae744
commit 32dff4adbb
19 changed files with 1086 additions and 422 deletions

View File

@@ -14,23 +14,14 @@ const Bucket: FunctionComponent = () => {
return (
<div className={styles.div_proCard}>
<ProCard
extra={
<Button
type="primary"
shape={"circle"}
icon={<ReloadOutlined />}
onClick={() => navigate("/main/bucket/add")}></Button>
}
extra={<Button type="primary" shape={"circle"} icon={<ReloadOutlined />}></Button>}
title="存储商"
headerBordered
className={styles.proCard}
boxShadow={true}
colSpan={"100%"}
bordered>
<CheckCard.Group
onChange={(value) => {
console.log("value", value);
}}>
<CheckCard.Group>
<div className={styles.div_checkCardArea}>
{checkList.map((item) => {
return (
@@ -42,7 +33,6 @@ const Bucket: FunctionComponent = () => {
description="点击查看"
value={item}
onChange={() => {
console.log(`/main/bucket/${item}`);
navigate(`/main/bucket/${item}`);
}}
/>