fix:优化表述 (#96)

This commit is contained in:
xuncha
2026-01-25 18:05:15 +08:00
committed by GitHub
parent a215886015
commit 2e61902556
2 changed files with 14 additions and 6 deletions

View File

@@ -2006,6 +2006,11 @@ class ExportService {
) )
const detailedExport: any = { const detailedExport: any = {
weflow: {
version: '1.0.3',
exportedAt: Math.floor(Date.now() / 1000),
generator: 'WeFlow'
},
session: { session: {
wxid: sessionId, wxid: sessionId,
nickname: sessionNickname, nickname: sessionNickname,

View File

@@ -453,6 +453,9 @@ function WelcomePage({ standalone = false }: WelcomePageProps) {
</div> </div>
</div> </div>
<div className="field-hint" style={{ color: '#ff6b6b', fontSize: '14px', fontWeight: '500' }}>--</div>
<div className="field-hint" style={{ color: '#ff6b6b', marginTop: '4px', fontSize: '14px', fontWeight: '500' }}> --</div>
</div>
)} )}
{currentStep.id === 'cache' && ( {currentStep.id === 'cache' && (
@@ -554,11 +557,11 @@ function WelcomePage({ standalone = false }: WelcomePageProps) {
{isFetchingImageKey ? '扫描中...' : '自动获取图片密钥'} {isFetchingImageKey ? '扫描中...' : '自动获取图片密钥'}
</button> </button>
{imageKeyStatus && <div className="status-message">{imageKeyStatus}</div>} {dbKeyStatus && <div className="field-hint status-text">{dbKeyStatus}</div>}
<div className="field-hint"></div> <div className="field-hint"></div>
<div className="field-hint"><span style={{ color: 'red' }}>hook安装成功</span></div>
</div> </div>
)} )}
</div>
{error && <div className="error-message">{error}</div>} {error && <div className="error-message">{error}</div>}