mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 14:26:43 +08:00
166 lines
3.4 KiB
JavaScript
166 lines
3.4 KiB
JavaScript
import request from '@/assets/js/utils/request'
|
|
import getUrl from '@/assets/js/utils/get-url'
|
|
|
|
export function homeConfigYB(data) {
|
|
return request({
|
|
url: getUrl('/customer/agent/homeConfigYB', 1,3),
|
|
method: 'get',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function mineConfigYB(data) {
|
|
return request({
|
|
url: getUrl('/app/mineConfigYB', 1,3),
|
|
method: 'get',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getPremRankList(data) {
|
|
return request({
|
|
url: getUrl('/sale/premRank/getPremRankList ', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function timelyContYB(data) {
|
|
return request({
|
|
url: getUrl('/sale/timelyCont/timelyContYB ', 1,3),
|
|
method: 'get',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getPersonPremYB(data) {
|
|
return request({
|
|
url: getUrl('/data/congratulationTopYB/getPersonPremYB', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getDeptPremYB(data) {
|
|
return request({
|
|
url: getUrl('/data/congratulationTopYB/getDeptPremYB', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 保单查询接口
|
|
export function YBpolicyListAgent(data) {
|
|
return request({
|
|
url: getUrl('/sale/policy/YBpolicyListAgent', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 保单详情接口
|
|
export function YBpolicyDetail(data) {
|
|
return request({
|
|
url: getUrl('/sale/policy/YBpolicyDetail', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getPremByAgentCode(data) {
|
|
return request({
|
|
url: getUrl('/data/performanceYB/getPremByAgentCode', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getIndexByAgentCode(data) {
|
|
return request({
|
|
url: getUrl('/data/performanceYB/getIndexByAgentCode', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getBankNetDataYB(data) {
|
|
return request({
|
|
url: getUrl('/data/performanceYB/getBankNetDataYB', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getChannelPerformanceYB(data) {
|
|
return request({
|
|
url: getUrl('/data/performanceYB/getChannelPerformanceYB', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function getBankNetPerformanceYB(data) {
|
|
return request({
|
|
url: getUrl('/data/performanceYB/getBankNetPerformanceYB', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 暂时数据接口
|
|
export function getAgentInfoByAgentCode(data) {
|
|
return request({
|
|
url: getUrl('/agent/agent/getAgentInfoByAgentCode', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 查询续期列表
|
|
export function getYBRenewalsList(data) {
|
|
return request({
|
|
url: getUrl('/renewal/renewal/getYBRenewalsList', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 查询续期详情
|
|
export function getYBRenewalInfo(data) {
|
|
return request({
|
|
url: getUrl('/renewal/renewal/getYBRenewalInfo', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 保全申请进度列表
|
|
export function getSaveAllList(data) {
|
|
return request({
|
|
url: getUrl('/renewal/preservation/getSaveAllList', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 保全申请进度详情
|
|
export function ybSaveAllDetail(data) {
|
|
return request({
|
|
url: getUrl('/renewal/preservation/ybSaveAllDetail', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 保全现金价值列表
|
|
export function ybSaveManyList(data) {
|
|
return request({
|
|
url: getUrl('/renewal/preservation/ybSaveManyList', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 保全现金价值详情
|
|
export function ybSaveManyDetail(data) {
|
|
return request({
|
|
url: getUrl('/renewal/preservation/ybSaveManyDetail', 1,3),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|