We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef14018 commit 58fc28eCopy full SHA for 58fc28e
3 files changed
src/api/sms/index.ts
@@ -3,7 +3,7 @@ import request from '../_request';
3
4
export default async function sendSms(data: SmsRequest): Promise<SmsResponse> {
5
const res: SmsResponse = await request({
6
- url: '/sms/',
+ url: '/sms/raw',
7
method: 'POST',
8
data,
9
});
src/constants/httpMsg/sms/sendSmsMsg.ts
@@ -1,15 +1,8 @@
1
-import { Step } from '@/constants/team';
2
import { HttpRes } from '../_httpResTemplate';
export interface SmsRequest {
- type: 'Accept' | 'Reject';
- current: Step;
- next: Step;
- time: string; // 笔试/面试/熬测时间
- place: string; // 地点
10
- meeting_id: string; // 在线面试的会议id
11
- rest: string; // 补充信息
12
- aids: string[]; // 简历id
+ aid: string;
+ content: string;
13
}
14
15
export type SmsResponse = HttpRes<object>;
0 commit comments