修改企查查使用真实的接口

This commit is contained in:
2025-12-15 15:19:26 +08:00
parent a0ef2eae93
commit 0aa75c6ffb
3 changed files with 19 additions and 7 deletions
@@ -313,8 +313,9 @@ export function CorporateInfoModal({
color: '#ffffff',
cursor: refreshing || businessLoading || dishonestyLoading ? 'not-allowed' : 'pointer',
transition: 'all 0.2s',
display: 'flex',
display: 'inline-flex',
alignItems: 'center',
justifyContent: 'center',
gap: '6px',
opacity: refreshing || businessLoading || dishonestyLoading ? 0.6 : 1,
}}
@@ -329,8 +330,15 @@ export function CorporateInfoModal({
}
}}
>
<i className={refreshing ? 'ri-loader-4-line' : 'ri-refresh-line'} style={{ fontSize: '14px' }}></i>
{refreshing ? '查询中...' : '对接企查查重新查询'}
<i
className={refreshing ? 'ri-loader-4-line' : 'ri-refresh-line'}
style={{
fontSize: '14px',
position: 'relative',
top: '1px',
}}
></i>
<span>{refreshing ? '查询中...' : '对接企查查重新查询'}</span>
</button>
{/* 关闭按钮 */}