()
| 5907 | } |
| 5908 | |
| 5909 | async function skipLoginVerificationStepsForCpaCallback() { |
| 5910 | await setState({ |
| 5911 | lastLoginCode: null, |
| 5912 | loginVerificationRequestedAt: null, |
| 5913 | }); |
| 5914 | await setStepStatus(6, 'skipped'); |
| 5915 | await addLog('步骤 6:当前已选择“第六步回调”,直接跳过步骤 6、7。', 'warn'); |
| 5916 | const latestState = await getState(); |
| 5917 | if (!isStepDoneStatus(latestState.stepStatuses?.[7])) { |
| 5918 | await setStepStatus(7, 'skipped'); |
| 5919 | await addLog('步骤 7:当前已选择“第六步回调”,本轮无需获取登录验证码。', 'warn'); |
| 5920 | } |
| 5921 | } |
| 5922 | |
| 5923 | async function executeStep6(state, options = {}) { |
| 5924 | return step6Executor.executeStep6(state, options); |
no test coverage detected