diff --git a/frontend/admin-web/src/app/(dashboard)/pending-actions/page.tsx b/frontend/admin-web/src/app/(dashboard)/pending-actions/page.tsx index fc726807..73f46101 100644 --- a/frontend/admin-web/src/app/(dashboard)/pending-actions/page.tsx +++ b/frontend/admin-web/src/app/(dashboard)/pending-actions/page.tsx @@ -123,7 +123,7 @@ export default function PendingActionsPage() { const [specialDeductionForm, setSpecialDeductionForm] = useState({ amount: '', reason: '', - isOfflineSettlement: false, // 是否为全额线下结算模式 + isOfflineSettlement: true, // 默认为全额线下结算模式 }); // 单个操作编辑时使用的表单 @@ -175,7 +175,7 @@ export default function PendingActionsPage() { actionParamsMap: {}, expiresAt: '', }); - setSpecialDeductionForm({ amount: '', reason: '', isOfflineSettlement: false }); + setSpecialDeductionForm({ amount: '', reason: '', isOfflineSettlement: true }); setShowCreateModal(true); };