1030bug修改

This commit is contained in:
fz
2023-10-31 09:25:02 +08:00
parent 1e0d9f07b0
commit ec2afd10a5
9 changed files with 258 additions and 187 deletions
+3 -2
View File
@@ -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
})
}
+27
View File
@@ -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
})
}