import request from '@/utils/request' import qs from 'qs' //获取单位级别 export function getDwJb(data) { return request({ url: '/system/dictCommon/getDwJb', method: 'GET', }) } // 获取机构单位类别 export function getDwType(data) { return request({ url: '/system/dictCommon/getDwType', method: 'get', params: data }) } //获取机构人员类别 export function getRylb(data) { return request({ url: '/system/dictCommon/getRylb', method: 'get' }) } // 根据Type值获取数据对象 export function getDicts(typeCode) { return request({ url: '/system/dictCommon/dicts/'+typeCode, method: 'get' }) }