You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import http from '../CommonHttp'
|
|
import axios from 'axios'
|
|
//招募令
|
|
export function getDetail(params, call) {
|
|
return http.get('/fission/detail', params).then(call)
|
|
}
|
|
//招募令保存
|
|
export function dosave(params, call) {
|
|
return http.post('/fission/save', params).then(call)
|
|
}
|
|
//招募审核列表
|
|
export function getRecruitList(params, call) {
|
|
return http.get('/fission/recruit/list', params).then(call)
|
|
}
|
|
// 招募审核保存
|
|
export function recruitSave(params, call) {
|
|
return http.post('/fission/recruit/save', params).then(call)
|
|
}
|
|
//推广员管理 列表
|
|
export function promoterList(params, call) {
|
|
return http.get('/fission/promoter/list', params).then(call)
|
|
}
|
|
//推广员管理 查看看上下级
|
|
export function promoterDetail(params, call) {
|
|
return http.post('/fission/promoter/detail', params).then(call)
|
|
}
|
|
//推广员管理 升级
|
|
export function promoterUpgrade(params, call) {
|
|
return http.post('/fission/promoter/upgrade', params).then(call)
|
|
}
|
|
|
|
|
|
export default {
|
|
getDetail,
|
|
dosave,
|
|
getRecruitList,
|
|
recruitSave,
|
|
promoterList,
|
|
promoterDetail,
|
|
promoterUpgrade
|
|
}
|