This commit is contained in:
hanchaobo
2024-02-20 17:20:48 +08:00
parent 58b1d23738
commit cfcdd5c92b
10 changed files with 350 additions and 61 deletions
+20
View File
@@ -0,0 +1,20 @@
import request from '@/utils/request'
// 查询邮件列表
export function emailList(data) {
return request({
url: '/sendMailRecord/list',
method: 'get',
params: data
})
}
// 查询短信列表
export function smsList(data,params) {
return request({
url: '/caseApplication/smsRecord',
method: 'post',
data: data,
params:params
})
}
+19
View File
@@ -56,4 +56,23 @@ export function getCodeImg() {
method: 'get',
timeout: 20000
})
}
// 获取手机验证码
export function sendCode(data) {
return request({
url: '/weChatUser/sendCode',
method: 'get',
params:data
})
}
// 注册方法
export function wxregister(data) {
return request({
url: '/weChatUser/registerUser',
headers: {
isToken: false
},
method: 'post',
data: data
})
}