mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-21 03:06:43 +08:00
[NEW] nbs 统计及内勤
This commit is contained in:
@@ -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
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user