chore: initialize insar management system v2

This commit is contained in:
2026-04-14 13:16:01 +08:00
commit ecc72ec9cd
361 changed files with 2142522 additions and 0 deletions
@@ -0,0 +1,44 @@
export function PanelLoadingBody({ message = '正在加载面板...' }) {
return (
<div style={{ padding: '16px' }}>
<p className="empty-state">{message}</p>
</div>
);
}
export function PanelLoadingPanel({ message = '正在加载面板...' }) {
return (
<div className="panel-content" style={{ flex: '1 1 auto', padding: 0, overflow: 'auto' }}>
<PanelLoadingBody message={message} />
</div>
);
}
export function ModalLoadingFallback({ message = '正在加载内容...' }) {
return (
<div
style={{
position: 'fixed',
inset: 0,
background: 'rgba(15, 23, 42, 0.4)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
zIndex: 2000,
}}
>
<div
style={{
background: '#fff',
borderRadius: '12px',
border: '1px solid #e2e8f0',
padding: '24px 28px',
minWidth: '280px',
boxShadow: '0 20px 45px rgba(15, 23, 42, 0.18)',
}}
>
<p className="empty-state" style={{ margin: 0 }}>{message}</p>
</div>
</div>
);
}