feat: 添加短信验证码发送记录功能

This commit is contained in:
2025-12-23 23:47:39 +08:00
parent a125f15f58
commit 5709255e39
19 changed files with 668 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
import httpClient from './httpClient';
export const smsCodeSendService = {
get({ page = 1, limit = 10, phone = '' } = {}) {
return httpClient.get('/sms-code-sends', {
params: {
page,
limit,
phone: phone.trim()
}
});
}
};