完成全项目响应式审核与换机交接

This commit is contained in:
2026-07-22 07:41:27 +08:00
parent a127280ce6
commit eced3d1e6e
77 changed files with 2052 additions and 378 deletions
+13 -1
View File
@@ -5,7 +5,19 @@ $review = Get-Content -LiteralPath (Join-Path $root 'pages/genealogy/g10-applica
foreach ($token in @('query.status', 'WITHDRAWN:', 'previous=withdrawn')) {
if (-not $mine.Contains($token)) { throw "G09 business state missing: $token" }
}
foreach ($token in @('rejectionReason', 'rejectionError', 'class="rejection-field"', 'current.item.rejectionReason')) {
foreach ($token in @(
'rejectionReason',
'rejectionError',
'class="rejection-field"',
'current.item.rejectionReason',
'id="g10-rejection-reason"',
':aria-invalid="!!rejectionError"',
'aria-describedby="g10-rejection-error"',
'id="g10-rejection-error"',
'role="alert"',
':focus="rejectionFocused"',
'await nextTick();'
)) {
if (-not $review.Contains($token)) { throw "G10 rejection contract missing: $token" }
}
Write-Output 'G09-G10-BUSINESS-STATE-CONTRACT PASS'