Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
e4360e35
Commit
e4360e35
authored
Jun 09, 2022
by
yanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feature: 客户管理-我的待确定列表功能实现
parent
dc743a15
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
620 additions
and
1 deletion
+620
-1
.env.development
.env.development
+1
-1
customer.js
src/api/ecw/customer.js
+54
-0
user.js
src/api/system/user.js
+9
-0
index.vue
src/views/ecw/customerConfirm/index.vue
+556
-0
No files found.
.env.development
View file @
e4360e35
...
...
@@ -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'
# 路由懒加载
...
...
src/api/ecw/customer.js
View file @
e4360e35
...
...
@@ -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
})
}
src/api/system/user.js
View file @
e4360e35
...
...
@@ -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
({
...
...
src/views/ecw/customerConfirm/index.vue
0 → 100644
View file @
e4360e35
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment