feat: 添加短信验证码发送记录功能
This commit is contained in:
14
frontend/admin/src/api/smsCodeSendService.js
Normal file
14
frontend/admin/src/api/smsCodeSendService.js
Normal 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()
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user