Commit e4360e35 authored by yanghao's avatar yanghao

feature: 客户管理-我的待确定列表功能实现

parent dc743a15
......@@ -5,7 +5,7 @@ ENV = 'development'
VUE_APP_TITLE = 捷道管理系统
# 捷道管理系统/开发环境
VUE_APP_BASE_API = 'http://jd.admtest.jdshangmen.com'
VUE_APP_BASE_API = 'http://127.0.0.1:48080'
# VUE_APP_BASE_API = '/api'
# 路由懒加载
......
......@@ -52,3 +52,57 @@ export function exportCustomerExcel(query) {
responseType: 'blob'
})
}
// 待确认客户
export function getWaitForConfirmList(query) {
return request({
url: '/ecw/customer/get-wait-for-confirm',
method: 'get',
params: query
})
}
// 确认
export function confirm(data) {
return request({
url: '/ecw/customer/confirm',
method: 'put',
data: data
})
}
// 待分配客户
export function getWaitForDistributionList(query) {
return request({
url: '/ecw/customer/get-wait-for-distribution',
method: 'get',
params: query
})
}
// 确认
export function handOverCustomer(data) {
return request({
url: '/ecw/customer/handOver',
method: 'put',
data: data
})
}
// 公海池客户
export function getPublicList(query) {
return request({
url: '/ecw/customer/get-public',
method: 'get',
params: query
})
}
// 公海池客户
export function getMineList(query) {
return request({
url: '/ecw/customer/get-mine',
method: 'get',
params: query
})
}
......@@ -18,6 +18,15 @@ export function listSimpleUsers() {
})
}
// 获取用户精简信息列表
export function listServiceUser() {
return request({
url: '/system/user/list-service-user',
method: 'get'
})
}
// 查询用户详细
export function getUser(userId) {
return request({
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment