edu/app/src/api/app.ts

7 lines
161 B
TypeScript
Raw Normal View History

2022-09-07 12:58:01 +00:00
import request from '@/utils/request'
//注册
export function smsSend(data: Record<string, any>) {
return request.post({ url: '/sms/send', data: data })
}