“拆镜状态修改”

This commit is contained in:
sjy
2026-07-11 13:18:33 +08:00
parent a7cd5a634c
commit 778da67b34
3 changed files with 20 additions and 7 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -28,7 +28,7 @@
} }
})(); })();
</script> </script>
<script type="module" crossorigin src="/assets/index-mGpmDG8h.js"></script> <script type="module" crossorigin src="/assets/index-OcL9GWjl.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-JhRVnnL-.css"> <link rel="stylesheet" crossorigin href="/assets/index-JhRVnnL-.css">
</head> </head>
<body> <body>
+16 -3
View File
@@ -472,8 +472,20 @@ function RemoveInfo() {
</div> </div>
</> </>
) : ( ) : (
<div style={{ width: '100%', height: '100%', display: 'flex', alignItems: 'center', justifyContent: 'center', color: '#94a3b8', fontSize: 12 }}> <div style={{ width: '100%', height: '100%', display: 'flex', alignItems: 'center', justifyContent: 'center', gap: 6, fontSize: 12 }}>
{record.splitStatus === 'failed' ? '切割失败' : record.splitStatus === 'pending' ? '等待切割' : '切割中'} {record.splitStatus === 'failed' ? (
<span style={{ color: '#94a3b8' }}></span>
) : record.splitStatus === 'pending' ? (
<>
<Spin size="small" style={{ color: '#f59e0b' }} />
<span style={{ color: '#f59e0b' }}></span>
</>
) : (
<>
<Spin size="small" style={{ color: '#f59e0b' }} />
<span style={{ color: '#f59e0b' }}></span>
</>
)}
</div> </div>
)} )}
</div> </div>
@@ -489,7 +501,8 @@ function RemoveInfo() {
if (splitStatus === 'pending') { if (splitStatus === 'pending') {
return ( return (
<div style={{ display: 'flex', alignItems: 'center', gap: 6 }}> <div style={{ display: 'flex', alignItems: 'center', gap: 6 }}>
<span style={{ fontSize: 14, color: '#64748b' }}></span> <Spin size="small" style={{ color: '#f59e0b' }} />
<span style={{ fontSize: 14, color: '#f59e0b' }}></span>
</div> </div>
); );
} }