mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-08 08:07:46 +08:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import request from '@/utils/request'
|
|
|
|
//发送短信
|
|
export function smsSend(data: any) {
|
|
return request.post({ url: '/sms/send', data: data })
|
|
}
|
|
|
|
export function getConfig() {
|
|
return request.get({ url: '/config' })
|
|
}
|