mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 10:56:44 +08:00
101 lines
2.0 KiB
JavaScript
101 lines
2.0 KiB
JavaScript
import request from '@/assets/js/utils/request'
|
|
import getUrl from '@/assets/js/utils/get-url'
|
|
|
|
// 开门红业绩查询机构列表查询
|
|
export function getComList(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getComList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 开门红业绩查询机构列表查询
|
|
export function getMisComList(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getMisComList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 百宝箱菜单列表查询
|
|
export function getTreasureMenus(data) {
|
|
return request({
|
|
url: getUrl('/app/code/getCodeValue', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 业绩查询
|
|
export function getComPerformance(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getComPerformance', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 开门红方案图片查询
|
|
export function getSchemePics(data) {
|
|
return request({
|
|
url: getUrl('/app/code/getCodeValue', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 开门红方案图片查询
|
|
export function getcompany(data) {
|
|
return request({
|
|
url: getUrl('/sale/product/getcompany', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 获取开门红实时贺报和倒计时图片接口
|
|
export function makePosters(data) {
|
|
return request({
|
|
url: getUrl('/sale/makePosters/GoodStart', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 业务地图获取数据
|
|
export function getMapDataList(data) {
|
|
return request({
|
|
url: getUrl('/data/performance/getMapDataList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
//获取当前人机构
|
|
export function getBranchByUser(data) {
|
|
return request({
|
|
url: getUrl(`/data/branch/getBranchByUser`, 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
//出单榜海报列表接口
|
|
export function queryOutPosters(data) {
|
|
return request({
|
|
url: getUrl(`/sale/makePosters/queryOutPosters`, 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
//大单榜海报列表接口
|
|
export function queryOutPostersBig(data) {
|
|
return request({
|
|
url: getUrl(`/sale/makePosters/queryOutPostersBig`, 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|