Newer
Older
smartwell_front_dz / src / api / base / configResponse.js
wangxitong on 11 Sep 2023 378 bytes first commit
/**
 * 联系人配置接口
 */
import request from '@/utils/request'
// 组织查询
export function getDeptResponseList(params) {
  return request({
    url: '/config/deptResponsiblePersonList',
    method: 'get',
    params
  })
}
export function setDeptResponse(params) {
  return request({
    url: '/config/responsiblePersonConfig',
    method: 'post',
    params
  })
}