You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
666 B
33 lines
666 B
![]()
3 years ago
|
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'
|
||
|
})
|
||
|
}
|