观看条件 - 验证码观看
Last updated
Last updated
// 执行验证码授权
async function toDoAuthCode(code) {
const result = await watchCore.auth.verifyCodeAuth({
code,
});
if (result.success) {
await handleAuthVerifySuccess(result);
} else {
await handleAuthVerifyFail(result);
}
}
// 传入验证码
toDoAuthCode('1234');