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.
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
export function typeValues(data) {
|
|
|
|
return request({
|
|
|
|
url: '/portal/v1/dictcommons/typeValues',
|
|
|
|
method: 'get',
|
|
|
|
params: data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// 根据当前登录人orgSidPath(全路径sid)查询分公司
|
|
|
|
export function getOrgSidByPath(data) {
|
|
|
|
return request({
|
|
|
|
url: '/portal/v1/sysstafforg/getOrgSidByPath',
|
|
|
|
method: 'get',
|
|
|
|
params: data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// 根据分公司sid查询分公司名称
|
|
|
|
export function fetchBySid(sid) {
|
|
|
|
return request({
|
|
|
|
url: 'portal/v1/sysorganization/fetchBySid/' + sid,
|
|
|
|
method: 'get'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// 根据当前登录用户sid获取本分公司下的销售部门和销售专员
|
|
|
|
export function selectOrgList(data) {
|
|
|
|
return request({
|
|
|
|
url: '/portal/v1/sysorganization/selectOrgList',
|
|
|
|
method: 'get',
|
|
|
|
params: data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// 根据当前登录用户全路径sidPath获取本分公司下的资方信息
|
|
|
|
export function selectListByOrgPath(data) {
|
|
|
|
return request({
|
|
|
|
url: '/riskcenter/v1/loanfinbank/selectListByOrgPath',
|
|
|
|
method: 'get',
|
|
|
|
params: data
|
|
|
|
})
|
|
|
|
}
|