1030bug修改
This commit is contained in:
@@ -10,10 +10,11 @@ export function emailList(data) {
|
||||
}
|
||||
|
||||
// 查询短信列表
|
||||
export function smsList(data) {
|
||||
export function smsList(data,params) {
|
||||
return request({
|
||||
url: '/caseApplication/smsRecord',
|
||||
method: 'post',
|
||||
data: data
|
||||
data: data,
|
||||
params:params
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询邮件列表
|
||||
export function deptIdentifyList(data) {
|
||||
return request({
|
||||
url: '/deptIdentify/list',
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
// 是否启用
|
||||
export function enableDept(data) {
|
||||
return request({
|
||||
url: '/deptIdentify/enableDept',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 认证
|
||||
export function selectDeptIndefiUrl(data) {
|
||||
return request({
|
||||
url: 'deptIdentify/selectDeptIndefiUrl',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user