You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.5 KiB
79 lines
1.5 KiB
import http from '../common/axios.js'
|
|
|
|
//销售相关接口
|
|
export default {
|
|
//获取销售人员详情
|
|
member(data = {}) {
|
|
let url = '/member/member'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
//客户详情
|
|
clientInfo(data={}) {
|
|
let url = '/member/client_info'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
//数据页面
|
|
performance(data = {}) {
|
|
let url = '/member/performance'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
|
|
//已签客户列表
|
|
signClient(data = {}) {
|
|
let url = '/member/sign_client'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
//添加拨打电话记录
|
|
setCallUp(data = {}) {
|
|
let url = '/member/set_call_up'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
//销售端首页
|
|
xsIndex(data = {}) {
|
|
let url = '/member/xs_index'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
//销售端首页
|
|
selectCourseList(data = {}) {
|
|
let url = '/member/select_course_list'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
//合同列表
|
|
contractsList(data = {}) {
|
|
let url = '/member/contracts_list'
|
|
return http.get(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|