Newer
Older
casic-smartcity-well-front / src / api / configResponse.js
[wangxitong] on 8 Jul 2021 378 bytes mars3d总览
/**
 * 联系人配置接口
 */
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
  })
}