[NEW] nbs 统计及内勤

This commit is contained in:
anbbukn
2020-06-30 20:10:58 +08:00
parent 24d5c4997d
commit 8de510e14f
2 changed files with 47 additions and 2 deletions

View File

@@ -73,3 +73,48 @@ export function makeCustomerPDF(data) {
data
})
}
// 获取nbs职级筛选条件列表
export function getRankList() {
return request({
url: getUrl('/agent/branch/getGroupByAgent', 1),
method: 'post',
data: {}
})
}
// 获取当前用户信息
export function getUserRankInfo() {
return request({
url: getUrl('/agent/agent/getBaseAgentInfo', 1),
method: 'post',
data: {}
})
}
// 部组联动列表
export function getGankLevel(code) {
return request({
url: getUrl('/agent/branch/getBranchInfos', 1),
method: 'post',
data: {
code
}
})
}
// 获取个人统计列表
export function getTableList(data = {}) {
return request({
url: getUrl('/proposal/nbsStatistics/getAppNbsList', 1),
method: 'post',
data
})
}
export function exportExcel(data) {
return request({
// url: 'http://10.10.100.122:7006/proposal/nbsStatistics/exportPDF',
url: getUrl('/proposal/nbsStatistics/exportPDF', 1),
method: 'post',
data
})
}