mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 16:16:45 +08:00
65 lines
1.3 KiB
JavaScript
65 lines
1.3 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 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
|
|
})
|
|
}
|