feat: 添加手动设置短信验证码功能及相关前端支持
Some checks failed
build quyun / Build (push) Failing after 1m26s

This commit is contained in:
2025-12-23 23:59:01 +08:00
parent d9737d4ee3
commit 6c9063a2c3
6 changed files with 154 additions and 18 deletions

View File

@@ -9,6 +9,11 @@ export const smsCodeSendService = {
phone: phone.trim()
}
});
},
manualSet({ phone = '', code = '' } = {}) {
return httpClient.post('/sms-code-sends/manual-set', {
phone: phone.trim(),
code: code.trim()
});
}
};