“拆镜状态修改”
This commit is contained in:
+3
-3
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user