18mg统计

This commit is contained in:
cll 2025-07-26 11:29:31 +08:00
parent cc3ec13156
commit e1c8255878
1 changed files with 2 additions and 0 deletions

View File

@ -134,6 +134,7 @@ const ListPage: React.FC = () => {
yoone9Quantity: data?.yoone9Quantity || 0,
yoone12Quantity: data?.yoone12Quantity || 0,
yoone15Quantity: data?.yoone15Quantity || 0,
yoone18Quantity: data?.yoone18Quantity || 0,
});
return {
total: data?.total || 0,
@ -219,6 +220,7 @@ const ListPage: React.FC = () => {
<div>YOONE 9MG: {yooneTotal.yoone9Quantity || 0}</div>
<div>YOONE 12MG: {yooneTotal.yoone12Quantity || 0}</div>
<div>YOONE 15MG: {yooneTotal.yoone15Quantity || 0}</div>
<div>YOONE 18MG: {yooneTotal.yoone18Quantity || 0}</div>
</div>
</PageContainer>
);